main { display: block; }

  /* Hero */
  .co-hero {
    background: var(--color-bg-alt);
    padding: 140px max(40px, 8.3vw) 110px;
    text-align: center;
  }
  .co-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-en); font-weight: 700;
    font-size: 13px; letter-spacing: 0.18em;
    color: var(--color-accent); margin-bottom: 24px;
  }
  .co-hero__eyebrow::before, .co-hero__eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--color-accent); }
  .co-hero__en {
    font-family: var(--font-en); font-weight: 900;
    font-size: clamp(56px, 7vw, 96px); line-height: 0.95;
    letter-spacing: -0.02em; color: var(--color-text); margin: 0 0 18px;
  }
  .co-hero__en .dot { color: var(--color-accent); }
  .co-hero__title {
    font-family: var(--font-jp); font-weight: 900;
    font-size: clamp(22px, 2.4vw, 30px); color: var(--color-text);
    margin: 0;
  }

  /* Profile table */
  .co-section { padding: 96px max(40px, 8.3vw); max-width: 1280px; margin: 0 auto; }
  .co-section--alt { background: var(--color-bg-alt); max-width: none; }
  .co-eyebrow { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.18em; color: var(--color-accent); margin: 0 0 16px; }
  .co-eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--color-accent); vertical-align: middle; margin-right: 10px; }
  .co-h2 { font-family: var(--font-jp); font-weight: 900; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.3; color: var(--color-text); margin: 0 0 48px; letter-spacing: 0.02em; }

  .co-table { display: grid; grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr); gap: 0; border-top: 1px solid var(--color-border); }
  .co-table__row { display: contents; }
  .co-table__th, .co-table__td { padding: 28px 28px; border-bottom: 1px solid var(--color-border); }
  .co-table__th {
    font-family: var(--font-jp); font-weight: 900;
    font-size: 14px; color: var(--color-text);
    background: transparent;
    position: relative;
  }
  .co-table__th::before {
    content: ""; display: inline-block;
    width: 18px; height: 2px; background: var(--color-accent);
    vertical-align: middle; margin-right: 12px;
  }
  .co-table__td {
    font-family: var(--font-jp); font-weight: 500;
    font-size: 14.5px; line-height: 1.85;
    color: var(--color-text);
  }
  .co-table__td small { display: block; color: var(--color-text-sub); font-size: 12.5px; margin-top: 4px; }

  /* Leaders */
  .co-leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .co-leader {
    padding: 36px 32px; background: #fff;
    border: 1px solid var(--color-border); border-radius: 24px;
    display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: start;
  }
  .co-leader__photo {
    width: 88px; height: 88px; border-radius: 50%;
    background: linear-gradient(135deg, #2a3142 0%, #0f1320 100%);
    overflow: hidden;
    flex-shrink: 0;
  }
  .co-leader__photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .co-leader__head { margin-bottom: 12px; }
  .co-leader__role { font-family: var(--font-jp); font-weight: 700; font-size: 12px; color: var(--color-text-sub); margin-bottom: 6px; }
  .co-leader__name { font-family: var(--font-jp); font-weight: 900; font-size: 22px; color: var(--color-text); margin: 0; }
  .co-leader__name-en { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; color: var(--color-text-sub); margin-top: 4px; }
  .co-leader__body { font-family: var(--font-jp); font-weight: 500; font-size: 12.5px; line-height: 1.85; color: var(--color-text-sub); margin: 0; }

  /* Map embed */
  .co-map { max-width: 1280px; margin: 0 auto; padding: 0 max(40px, 8.3vw) 96px; }
  .co-map__frame {
    width: 100%; aspect-ratio: 16 / 7;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-bg-alt);
  }
  .co-map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
  .co-map__caption {
    font-family: var(--font-jp); font-weight: 700; font-size: 13px;
    color: var(--color-text-sub); margin: 14px 0 0; letter-spacing: 0.02em;
  }

  /* Tighten gap between leaders (alt bg) and footer CTA */
  .footer-area { margin-top: 0; }

  @media (max-width: 1024px) {
    .co-section { padding: 56px 24px; }
    .co-table { grid-template-columns: 1fr; }
    .co-table__th { padding-bottom: 0; border-bottom: 0; }
    .co-table__td { padding-top: 12px; }
    .co-leaders { grid-template-columns: 1fr; }
    .co-leader { grid-template-columns: 64px 1fr; gap: 16px; padding: 24px; }
    .co-leader__photo { width: 64px; height: 64px; }
    .co-hero { padding: 80px 24px; }
    .co-map { padding: 0 24px 56px; }
    .co-map__frame { aspect-ratio: 4 / 3; }
  }
