/* ===========================
   COMPANY PAGE
=========================== */

/* ---- Hero ---- */
.co-hero {
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #2A2F4A 0%, var(--navy-dark) 60%);
  padding: calc(var(--nav-h) + 48px) 40px 56px;
  position: relative;
  overflow: hidden;
}

.co-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(201, 149, 108, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.co-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
  z-index: 0;
}

.co-hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: heroFadeUp 0.8s ease both;
}

.co-hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  letter-spacing: 0.35em;
  color: var(--pink-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.co-hero-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
}

/* ---- Container ---- */
.co-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Profile row (PC: grid) ---- */
.co-profile-row {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 56px;
  align-items: start;
}

.co-profile-photo {
  grid-column: 1;
  grid-row: 1 / 3;
}

.co-profile-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.co-profile-name-col {
  grid-column: 2;
  grid-row: 1;
}

.co-profile-body {
  grid-column: 2;
  grid-row: 2;
}

/* ---- Name styles (PC & mobile) ---- */
.co-name-en {
  /* font-family: 'Cormorant Garamond', Georgia, serif; */
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #C9956C;
  margin: 0 0 6px;
}

.co-name-ja {
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  margin: 0;
}

.co-profile-divider {
  border: none;
  border-top: 1px solid rgba(201, 149, 108, 0.3);
  margin-top: 16px;
  margin-bottom: 2rem;
}

/* ---- Body text ---- */
.co-profile-body-p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 2;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
}

.co-profile-body-last {
  margin-bottom: 0;
}

/* ---- Section header spacing ---- */
.co-section-header {
  margin-bottom: 56px;
}

/* ---- Profile section ---- */
.co-profile-section {
  padding: 120px 40px;
  background: linear-gradient(to bottom, var(--navy) 0px, var(--navy-dark) 80px);
}

/* ---- Company overview section ---- */
.co-company-section {
  padding: 96px 40px;
  background: linear-gradient(to bottom, var(--navy-dark) 0px, var(--navy) 80px);
}

/* Reuses .company-table and .company-list defined in style.css */

/* ---- CTA section ---- */
.co-cta-section {
  padding: 96px 40px;
  text-align: center;
  background: linear-gradient(to bottom, var(--navy) 0px, transparent 80px),
              linear-gradient(160deg, #1A1E32 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.co-cta-section .section-label {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}



.co-cta-inner {
  position: relative;
  z-index: 1;
}

.co-cta-desc {
  font-size: 0.9375rem;
  color: var(--white-dim);
  line-height: 2;
  margin: 20px 0 40px;
}

/* ---- Mobile only ---- */
@media (max-width: 768px) {
  .co-hero { padding: calc(var(--nav-h) + 36px) 24px 48px; }
  .co-profile-section { padding: 80px 20px; overflow-x: hidden; }
  .co-company-section { padding: 64px 24px; }
  .co-cta-section { padding: 72px 24px; }
  .co-cta-desc { font-size: 11px !important; padding: 0 16px !important; }
  .co-cta-section .btn-primary {
    width: 180px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
  }
  .co-section-header { margin-bottom: 36px; }
  .co-company-section .co-section-header { margin-bottom: 24px; }

  /* Profile row: photo left, name right, body below */
  .co-profile-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 12px;
  }

  .co-profile-photo {
    flex-shrink: 0;
  }

  .co-profile-img {
    width: 120px !important;
    height: 150px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 0;
  }

  /* Name col */
  .co-profile-name-col {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .co-name-en {
    margin: 0 !important;
    padding: 0;
    letter-spacing: 0.05em !important;
    line-height: 1.2 !important;
  }

  .co-name-ja {
    margin: 0 !important;
    padding: 0;
    line-height: 1.2 !important;
  }

  .co-profile-divider {
    margin-top: 12px;
    margin-bottom: 0;
  }

  /* Body: full width below */
  .co-profile-body {
    flex-basis: 100%;
    margin-top: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .co-profile-body-p {
    font-size: 13px !important;
    line-height: 2.0 !important;
    margin-bottom: 0.8em;
    overflow-wrap: break-word;
  }

  /* Company overview table — simple flex rows */
  .company-wrapper {
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .company-table { display: block; border: none; background: none; }
  .company-table tbody { display: block; }
  .company-table tr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 149, 108, 0.3);
    border-top: none;
    background: none;
    box-shadow: none;
  }
  .company-table tr:last-child { border-bottom: none; }
  .company-table th {
    width: 90px;
    min-width: 90px;
    padding: 0;
    font-size: 12px;
    color: #C9956C;
    background: none;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
  }
  .company-table td {
    flex: 1;
    padding: 0;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.7;
  }
  .company-list { gap: 3px; }
  .company-list li { font-size: 13px; }
}
