.seo-page-shell {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.seo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.seo-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.seo-breadcrumbs a:hover,
.seo-breadcrumbs a:focus-visible {
  color: var(--gold-light);
}

/* Hero */

.detail-hero {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(199, 161, 86, 0.16),
      transparent 30%
    ),
    linear-gradient(115deg, #050505 0%, #090909 62%, #15110b 100%);
  color: var(--white);
}

.detail-hero-injury {
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(199, 161, 86, 0.18),
      transparent 30%
    ),
    linear-gradient(115deg, #070706 0%, #0c0c0a 62%, #17130d 100%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.detail-hero .section-label {
  color: var(--gold-light);
}

.detail-hero h1 {
  max-width: 970px;
  margin-bottom: 2rem;
}

.detail-hero h1 span {
  display: block;
  color: var(--gold-light);
}

.detail-hero-copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.detail-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.detail-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.detail-outline-button:hover,
.detail-outline-button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.detail-hero-note {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.detail-urgent-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(199, 161, 86, 0.35);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
}

.detail-urgent-card h2 {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.detail-urgent-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.66);
}

.detail-urgent-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Intro */

.detail-introduction {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream);
}

.detail-introduction-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.detail-introduction h2 {
  max-width: 1050px;
}

.detail-large-copy {
  max-width: 880px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.55;
}

.detail-introduction-grid > div:last-child > p:not(.detail-large-copy) {
  max-width: 840px;
  color: var(--muted);
}

/* Shared headings */

.detail-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.detail-section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.detail-section-heading > p {
  margin: 0;
  color: var(--muted);
}

/* Issues */

.detail-issues {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream-light);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.detail-card-grid article {
  min-height: 355px;
  padding: 2.25rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}

.detail-card-grid article > span {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.detail-card-grid h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
}

.detail-card-grid p {
  margin: 0;
  color: var(--muted);
}

/* Two-track section */

.detail-two-track {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--white);
}

.detail-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-track-grid article {
  min-height: 620px;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.detail-track-dark {
  background: var(--black);
  color: var(--white);
}

.detail-track-light {
  border: 1px solid var(--border-light);
  background: var(--cream);
}

.detail-track-dark .section-label {
  color: var(--gold-light);
}

.detail-track-grid h3 {
  max-width: 600px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.detail-track-dark h3 {
  color: var(--white);
}

.detail-track-grid p:not(.section-label),
.detail-track-grid li {
  color: var(--muted);
}

.detail-track-dark p:not(.section-label),
.detail-track-dark li {
  color: rgba(255, 255, 255, 0.66);
}

.detail-track-grid ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-track-grid li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.detail-track-dark li {
  border-color: var(--border-dark);
}

/* Process */

.detail-process {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream);
}

.detail-process-list {
  border-top: 1px solid var(--border-light);
}

.detail-process-list article {
  display: grid;
  grid-template-columns: minmax(90px, 0.2fr) minmax(0, 1.8fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.detail-process-list article > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.detail-process-list h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.detail-process-list p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

/* FAQ */

.detail-faq {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream-light);
}

.detail-faq-list {
  border-top: 1px solid var(--border-light);
}

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

.detail-faq-list summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--black);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  list-style: none;
}

.detail-faq-list summary::-webkit-details-marker {
  display: none;
}

.detail-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--gold-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.detail-faq-list details[open] summary::after {
  content: "–";
}

.detail-faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 0 1.75rem;
  color: var(--muted);
}

/* Related links */

.detail-related {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--white);
}

.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.detail-related-grid a {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  color: var(--black);
  text-decoration: none;
  transition: background 160ms ease;
}

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

.detail-related-grid span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-related-grid h3 {
  max-width: 360px;
  margin-top: 2rem;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

.detail-related-grid strong {
  position: absolute;
  right: 2rem;
  bottom: 1.75rem;
  color: var(--gold-dark);
  font-size: 1.5rem;
}

/* Sources */

.detail-sources {
  padding: 2.5rem 0;
  background: var(--cream);
}

.detail-sources p:not(.section-label) {
  max-width: 1000px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.detail-sources a {
  color: var(--black);
  font-weight: 700;
}

/* Contact */

.seo-contact-band {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 72% 30%,
      rgba(199, 161, 86, 0.12),
      transparent 30%
    ),
    var(--black);
  color: var(--white);
}

.seo-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.seo-contact-band .section-label {
  color: var(--gold-light);
}

.seo-contact-band h2 {
  max-width: 760px;
}

.seo-contact-band p:not(.section-label) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.65);
}

.seo-contact-actions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-dark);
}

.seo-contact-actions .button {
  margin-bottom: 1.5rem;
}

.seo-contact-actions > a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--white);
  text-decoration: none;
}

.seo-contact-actions span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-contact-actions strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: right;
  transition: color 160ms ease;
}

.seo-contact-actions > a:not(.button):hover strong,
.seo-contact-actions > a:not(.button):focus-visible strong {
  color: var(--gold-light);
}

@media (max-width: 1050px) {
  .detail-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .detail-hero-grid,
  .detail-introduction-grid,
  .detail-section-heading,
  .seo-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .seo-page-shell {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .detail-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-hero-actions .button,
  .detail-outline-button {
    width: 100%;
  }

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

  .detail-card-grid article {
    min-height: 300px;
    padding: 1.75rem;
  }

  .detail-track-grid article {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .detail-process-list article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .seo-contact-actions > a:not(.button) {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .seo-contact-actions strong {
    text-align: left;
  }
}
