/* our-firm.html — page-specific overrides */
.hero-bg-image {
  background-image: url("../assets/images/hero-our-firm.avif");
}

/* PRINCIPLES (3-col with numbers) */
.section-principles {
  background: var(--navy);
  padding: 120px 0;
}

.principles-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  max-width: 600px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.principle-card {
  border: 1px solid rgba(200, 167, 90, 0.15);
  padding: 56px 36px;
  background: var(--navy-dark);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover {
  background: #111630;
  border-color: rgba(200, 167, 90, 0.4);
}

.principle-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
  line-height: 1;
}

.principle-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  margin-bottom: 16px;
  line-height: 1.2;
}

.principle-body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.8;
}

/* OFFICES (light section) */
.section-offices {
  background: var(--ivory);
  padding: 120px 0;
  color: var(--navy);
}

.section-offices .section-label {
  color: var(--gold);
}

.section-offices .gold-rule {
  background: var(--gold);
}

.offices-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  max-width: 600px;
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.office-card {
  border: 1px solid rgba(12, 16, 50, 0.12);
  padding: 40px 36px;
  background: #FAFAF8;
  transition: border-color 0.3s ease;
}

.office-card:hover {
  border-color: rgba(200, 167, 90, 0.5);
}

.office-city {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.office-address-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.85;
}

.office-contact {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 20px;
  display: block;
  line-height: 1.8;
}

/* DIVISIONS */
.section-divisions {
  position: relative;
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}

.divisions-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
}

.divisions-left {
  padding-right: 80px;
}

.divisions-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.1;
  margin-top: 12px;
}

.divisions-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.6);
  line-height: 1.85;
  max-width: 440px;
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.division-card {
  background: transparent;
  border: 1px solid rgba(200, 167, 90, 0.2);
  padding: 28px 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.division-card:hover {
  border-color: rgba(200, 167, 90, 0.6);
  background: rgba(200, 167, 90, 0.04);
}

.div-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.div-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  margin-bottom: 12px;
}

.div-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.5);
  line-height: 1.8;
}

.divisions-image-panel {
  position: absolute;
  right: -64px;
  top: 0;
  height: 100%;
  width: calc(45% + 64px);
  background-image: url("../assets/images/divisions-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.divisions-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 16, 50, 1) 0%, rgba(12, 16, 50, 0.3) 100%);
}


@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .divisions-inner {
    grid-template-columns: 1fr;
  }

  .divisions-left {
    padding-right: 0;
  }

  .divisions-image-panel {
    display: none;
  }

}

@media (max-width: 768px) {
  .divisions-grid {
    grid-template-columns: 1fr;
  }

  .divisions-image-panel {
    display: none;
  }

}
