.company-section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.company-section h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  color: var(--site-ink);
  background: none;
  font-size: var(--site-text-xl);
  font-weight: 700;
  line-height: 1.35;
}

.company-section h2::before {
  content: "";
  flex: 0 0 2.75rem;
  height: 2px;
  background: var(--site-accent);
}

.company-profile__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.company-profile__image {
  margin: 0;
}

.company-profile__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-lg);
}

.company-profile__list {
  margin: 0;
  overflow: hidden;
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-lg);
}

.company-profile__row {
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) minmax(0, 1fr);
  border-bottom: 1px solid var(--site-border);
}

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

.company-profile__row dt {
  padding: 0.9rem 1.25rem;
  color: var(--site-ink);
  background: var(--site-surface-soft);
  font-weight: 700;
}

.company-profile__row dd {
  margin: 0;
  padding: 0.9rem 1.25rem;
}

.company-access__map {
  overflow: hidden;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-lg);
  background: var(--site-surface);
}

.company-access__map iframe {
  display: block;
  width: 100%;
  height: clamp(16rem, 45vw, 28rem);
  border: 0;
}

.company-access__address {
  margin: 1.5rem 0 0;
  color: var(--site-muted);
  font-size: var(--site-text-lg);
  line-height: 1.8;
}

.company-cta {
  padding: 0 0 clamp(4.5rem, 9vw, 7rem);
}

.company-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--site-surface-soft);
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-lg);
}

.company-cta__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--site-accent-dark);
  font-size: var(--site-text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.company-cta h2 {
  margin: 0;
  color: var(--site-ink);
  background: none;
  font-size: var(--site-text-xl);
  line-height: 1.35;
}

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

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

  .company-profile__row dt {
    padding-bottom: 0.25rem;
  }

  .company-profile__row dd {
    padding-top: 0.25rem;
  }
}

@media (max-width: 767.98px) {
  .company-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .company-cta .site-button {
    width: 100%;
  }
}
