/*
 * hhs-doctors.css
 * jimthompsoncreative.com/work/hhs-doctors.html
 * HHS - International Women's Month case study.
 * Final: Variant B copy locked. Body copy silver-bright weight 300.
 * Hero headline "stunning" lock. Localized vignette behind copy.
 * Last updated: 2026-05-16
 * Requires: design-system.css v2 loaded first.
 */


/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hhs-hero {
  width: 100%;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 7vw 7vh;
  background-image: url('../assets/hhs_doctors/hhs-doctors-hero.webp');
  background-size: cover;
  background-position: center center;
  background-color: #1a1e26;
}

.hhs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 15% 85%,
      rgba(37,40,47,0.85) 0%,
      rgba(37,40,47,0.50) 45%,
      rgba(37,40,47,0) 80%
    ),
    linear-gradient(
      to right,
      rgba(37,40,47,0.78) 0%,
      rgba(37,40,47,0.50) 40%,
      rgba(37,40,47,0.15) 65%,
      rgba(37,40,47,0) 80%
    );
  z-index: 1;
  pointer-events: none;
}

.hhs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* Localized vignette — softens busy areas of photo behind copy */
.hhs-hero__content::before {
  content: '';
  position: absolute;
  inset: -60px -80px -60px -80px;
  background: radial-gradient(
    ellipse at center,
    rgba(37,40,47,0.78) 0%,
    rgba(37,40,47,0.55) 50%,
    rgba(37,40,47,0) 85%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(24px);
}

.hhs-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--chart);
  text-transform: uppercase;
  letter-spacing: .28em;
  margin-bottom: 14px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
  opacity: 0;
  animation: riseIn 0.7s ease 0.3s forwards;
}

.hhs-hero__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
  text-wrap: balance;
  opacity: 0;
  animation: riseIn 0.8s ease 0.5s forwards;
}

.hhs-hero__copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: var(--white);
  line-height: 1.7;
  max-width: 540px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
  opacity: 0;
  animation: riseIn 0.7s ease 0.75s forwards;
}


/* ============================================================
   SECTION 2: DOCTOR ROWS
   ============================================================ */
.hhs-doctors {
  width: 100%;
  padding: 100px 7vw 80px;
}

.hhs-row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: 60px 0;
}

.hhs-row--reverse .hhs-row__copy   { order: 2; }
.hhs-row--reverse .hhs-row__video  { order: 1; }

.hhs-row__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}

.hhs-row--reverse .hhs-row__copy {
  justify-self: start;
}

.hhs-row__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--chart);
  text-transform: uppercase;
  letter-spacing: .28em;
  margin-bottom: 20px;
}

.hhs-row__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hhs-row__body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--silver-bright);
  line-height: 1.7;
}

.hhs-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--chart);
  text-transform: uppercase;
  letter-spacing: .2em;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  min-height: 44px;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.hhs-row__cta:hover {
  color: var(--chart-hot);
}

.hhs-row__cta:focus-visible {
  outline: 2px solid var(--chart);
  outline-offset: 4px;
  border-radius: 2px;
}

.hhs-row__cta .play-ring {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(184,212,0,0.7);
  background: rgba(184,212,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hhs-row__cta:hover .play-ring {
  background: rgba(184,212,0,0.14);
  border-color: rgba(184,212,0,1);
}

.hhs-row__cta .play-ring::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--chart);
  margin-left: 2px;
}


.hhs-row__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--mid);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
}

.hhs-row__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hhs-row__video:hover .hhs-row__thumb {
  transform: scale(1.025);
}

.hhs-row__video:focus-visible {
  outline: 2px solid var(--chart);
  outline-offset: 6px;
}


/* ============================================================
   SECTION 3: NEXT BAR
   ============================================================ */
.hhs-next {
  width: 100%;
  padding: 48px 7vw 80px;
}

.hhs-next__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hhs-next__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .18em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 4px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.hhs-next__link:hover,
.hhs-next__link:focus-visible {
  color: var(--white);
}
.hhs-next__link--next { color: var(--chart); }
.hhs-next__link--next:hover { color: var(--chart-hot); }

.hhs-next__arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
}

.hhs-next__link--prev:hover .hhs-next__arrow {
  transform: translateX(-4px);
}

.hhs-next__link--next:hover .hhs-next__arrow {
  transform: translateX(4px);
}

.hhs-next__prefix {
  color: var(--silver);
  opacity: 0.7;
  margin-right: 4px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hhs-row {
    gap: 5vw;
    padding: 50px 0;
  }
  .hhs-row__copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hhs-hero {
    height: 80vh;
    padding: 0 6vw 8vh;
  }
  .hhs-doctors {
    padding: 24px 6vw 60px;
  }
  .hhs-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .hhs-row__video,
  .hhs-row--reverse .hhs-row__video {
    order: 1;
  }
  .hhs-row__copy,
  .hhs-row--reverse .hhs-row__copy {
    order: 2;
  }
  .hhs-next__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .hhs-hero {
    height: 75vh;
    padding: 0 6vw 8vh;
  }
}
