.detail-hero {
  background: var(--navy-950);
  color: white;
}

.detail-hero-inner,
.detail-section,
.detail-band-inner {
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 590px;
}

.detail-hero-copy {
  align-self: center;
  padding: 4.5rem 3.5rem 4.5rem 0;
}

.detail-back {
  display: inline-block;
  margin-bottom: 3.6rem;
  color: #a9c1ce;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.detail-back:hover,
.detail-back:focus-visible {
  color: white;
  text-decoration: underline;
}

.detail-eyebrow {
  margin-bottom: 0.9rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-hero h1,
.detail-intro h2,
.detail-band h2 {
  margin-bottom: 1.4rem;
  font-family: var(--heading);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.detail-hero h1 {
  max-width: 700px;
  font-size: clamp(3.6rem, 6vw, 6rem);
}

.detail-lead {
  max-width: 630px;
  color: #d2dee3;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.detail-actions .btn-outline {
  color: white;
}

.detail-hero-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.detail-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.22), transparent 48%);
  content: "";
}

.detail-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section {
  padding-block: 6.2rem;
}

.detail-intro {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.detail-intro h2,
.detail-band h2 {
  color: var(--navy-950);
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.detail-intro > p:last-child,
.detail-band p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  min-height: 250px;
  padding: 2rem;
  background: var(--paper);
  border-top: 4px solid var(--orange);
  box-shadow: 0 12px 30px rgba(7, 24, 39, 0.06);
}

.detail-number {
  color: var(--orange-dark);
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.detail-card h3 {
  margin: 1.2rem 0 0.6rem;
  font-family: var(--heading);
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-band {
  background: #e2e9e8;
}

.detail-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 4rem;
}

.detail-band-inner > div {
  max-width: 660px;
}

.detail-band .btn {
  flex-shrink: 0;
}

.detail-last {
  padding-bottom: 6rem;
}

.detail-faqs {
  max-width: 780px;
  border-top: 1px solid var(--line);
}

.detail-faq {
  border-bottom: 1px solid var(--line);
}

.detail-faq summary {
  padding: 1.25rem 0;
  font-weight: 700;
  cursor: pointer;
}

.detail-faq p {
  max-width: 680px;
  padding-bottom: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
}

.detail-area {
  max-width: 780px;
  margin: 2.7rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.detail-related a {
  padding: 0.75rem 1rem;
  background: var(--navy-900);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.detail-related a:hover,
.detail-related a:focus-visible {
  background: var(--orange-dark);
}

@media (max-width: 900px) {
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .detail-hero-copy {
    padding: 3.2rem 0 3rem;
  }

  .detail-back {
    margin-bottom: 2.3rem;
  }

  .detail-hero-photo {
    height: 330px;
  }

  .detail-cards {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 0;
  }

  .detail-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .detail-hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
  }

  .detail-hero-photo {
    height: 250px;
  }

  .detail-actions {
    display: grid;
  }

  .detail-section {
    padding-block: 4.5rem;
  }
}
