/* =========================================================
   Company Profile
   ========================================================= */

.company-profile {
  position: relative;

  margin-top: 120px;
  padding: clamp(32px, 4vw, 72px);

  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 46, 0.72) 0%,
      rgba(2, 10, 30, 0.82) 100%
    );

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 42px rgba(0, 120, 255, 0.08),
    0 0 120px rgba(0, 0, 0, 0.42);

  overflow: hidden;

  backdrop-filter: blur(10px);
}

/* =========================================================
   Lead Title
   ========================================================= */

.page-content .company-lead__title {
  position: relative;

  display: inline-block;

  margin-bottom: 42px;
  padding-bottom: 18px;

  color: rgba(198, 176, 118, 0.88);

  text-shadow:
    0 0 10px rgba(212,175,55,0.10),
    0 0 24px rgba(212,175,55,0.04);
}

/* Gold Line */

.company-lead__title::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 96px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(212,175,55,0.95),
      rgba(212,175,55,0)
    );

  box-shadow:
    0 0 12px rgba(212,175,55,0.45),
    0 0 28px rgba(212,175,55,0.22);
}


/* =========================================================
   Gold Accent
   ========================================================= */

.company-profile::before {
  content: "";

  position: absolute;
  top: 0;
  left: 6%;

  width: 120px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(212,175,55,0),
      rgba(212,175,55,0.95),
      rgba(212,175,55,0)
    );

  box-shadow:
    0 0 12px rgba(212,175,55,0.65),
    0 0 32px rgba(212,175,55,0.28);
}

/* =========================================================
   DL Layout
   ========================================================= */

.company-profile__list {
  display: flex;
  flex-direction: column;
  gap: 0;

  margin: 0;
  padding: 0;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);

  gap: 32px;

  padding: 32px 0;

  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.company-profile__row:first-child {
  padding-top: 0;
}

.company-profile__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* =========================================================
   DT
   ========================================================= */

.company-profile__row dt {
  position: relative;

  margin: 0;

  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.14em;

  color: rgba(212, 175, 55, 0.96);

  text-shadow:
    0 0 12px rgba(212,175,55,0.18);
}

/* =========================================================
   DD
   ========================================================= */

.company-profile__row dd {
  margin: 0;

  font-size: 1rem;
  line-height: 2;

  color: rgba(255,255,255,0.88);
}

.company-profile__row dd strong {
  font-weight: 600;
}

/* =========================================================
   List
   ========================================================= */

.company-profile__items {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin: 0;
  padding-left: 1.2em;
}

.company-profile__items li::marker {
  color: rgba(212,175,55,0.8);
}

.company-profile__officers {
  margin: 0;
  padding: 0;
}

.company-profile__officer {
  margin: 0;
  padding: 0;
}

/* =========================================================
   Map
   ========================================================= */

.company-map {
  margin-top: 72px;
}

.company-map__embed {
  position: relative;

  overflow: hidden;

  padding: 14px;

  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(4, 18, 46, 0.76) 0%,
      rgba(2, 10, 30, 0.9) 100%
    );

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025) inset,
    0 0 32px rgba(0,0,0,0.34),
    0 0 72px rgba(0,90,255,0.08);
}

.company-map__embed::before {
  content: "";

  position: absolute;
  top: 0;
  left: 8%;

  width: 120px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(212,175,55,0),
      rgba(212,175,55,0.95),
      rgba(212,175,55,0)
    );

  box-shadow:
    0 0 12px rgba(212,175,55,0.45),
    0 0 24px rgba(212,175,55,0.2);

  z-index: 2;
}

.company-map__embed iframe {
  display: block;

  width: 100%;
  min-height: 420px;

  border: 0;
  border-radius: 18px;

  filter:
    grayscale(1)
    sepia(0.22)
    hue-rotate(175deg)
    saturate(1.6)
    brightness(0.72)
    contrast(1.08);
}

/* =========================================================
   SP
   ========================================================= */

@media (max-width: 768px) {

  .company-profile {
    margin-top: 72px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .company-profile__row {
    grid-template-columns: 1fr;

    gap: 14px;

    padding: 24px 0;
  }

  .company-profile__row:first-child {
    padding-top: 0;
  }

  .company-profile__row:last-child {
    padding-bottom: 0;
  }

  .company-profile__row dt {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .company-profile__row dd {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .company-map {
    margin-top: 48px;
  }

  .company-map__embed {
    padding: 10px;
    border-radius: 22px;
  }

  .company-map__embed iframe {
    min-height: 320px;
    border-radius: 14px;
  }

}
