/* Care Manager: Week One — Sample
   Alexandria's Design — Healthcare Trainings */

:root {
  --bg: #0f0f1a;
  --bg-soft: #15152a;
  --surface: #1c1d35;
  --surface-2: #25274a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --text-soft: rgba(244, 241, 234, 0.72);
  --text-mute: rgba(244, 241, 234, 0.45);
  --gold: #c4a35f;
  --gold-bright: #e0bc73;
  --teal: #5b9fa6;
  --warn: #d97757;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55), 0 8px 30px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --radius-lg: 10px;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  overflow-y: auto; /* page-level scroll fallback for short viewports */
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img { display: block; max-width: 100%; }

.hidden { display: none !important; }

/* Stage */
.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible; /* allow scene content to push page taller on short viewports */
}

/* Password gate — fixed overlay; internal scroll only if truly needed */
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: radial-gradient(ellipse at center top, #1c1d35 0%, #0f0f1a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 6vw;
  animation: fadeIn 380ms var(--easing) both;
  overflow-y: auto;
}
@media (max-height: 820px) {
  .gate { align-items: flex-start; padding-top: 4vh; }
  .gate__head { font-size: clamp(2rem, 4.5vw, 3.2rem) !important; }
  .gate__sub { margin-bottom: 1.6rem; }
  .gate__eyebrow { margin-bottom: 1.2rem; }
}
.gate.is-unlocked { display: none; }
.gate__panel {
  max-width: 540px;
  width: 100%;
  text-align: left;
}
.gate__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.gate__head {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.gate__head em { color: var(--gold-bright); font-style: italic; }
.gate__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
  max-width: 460px;
}
.gate__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
  max-width: 380px;
}
.gate__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.gate__input {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.95em 1em;
  outline: none;
  transition: border-color 200ms var(--easing), background 200ms var(--easing);
}
.gate__input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
.gate__submit { align-self: flex-start; margin-top: 0.4rem; }
.gate__error {
  font-size: 0.88rem;
  color: var(--warn);
  background: rgba(217, 119, 87, 0.1);
  border-left: 2px solid var(--warn);
  padding: 0.6rem 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.gate__foot {
  font-size: 0.85rem;
  color: var(--text-mute);
  max-width: 380px;
}
.gate__foot a { color: var(--gold); text-decoration: none; }
.gate__foot a:hover { color: var(--gold-bright); }


/* Scene */
.scene {
  position: absolute;
  inset: 0;
  display: none;
  opacity: 0;
  transition: opacity 600ms var(--easing);
}
/* Active scene leaves the stacked absolute context and joins normal flow
   so its content can push the page taller (body scrolls). */
.scene.is-active {
  position: relative;
  display: block;
  opacity: 1;
  width: 100%;
  min-height: 100vh;
}

.scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
}

.scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,26,0) 40%, rgba(15,15,26,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Title screen */
.scene--title {
  background: radial-gradient(ellipse at center top, #1c1d35 0%, #0f0f1a 60%);
}
.scene--title::before { display: none; }

.title-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 6vh 6vw 5vh;
  text-align: left;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
/* Shrink headline on short viewports so content fits comfortably */
@media (max-height: 820px) {
  .title-head { font-size: clamp(2.4rem, 6vw, 4.4rem) !important; }
  .title-sub { font-size: 1.05rem; }
  .title-content { padding-top: 4vh; padding-bottom: 3vh; }
}
.title-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.title-head {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.title-head em { color: var(--gold-bright); font-style: italic; }
.title-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 1rem;
}
.title-mod {
  font-size: 0.95rem;
  color: var(--text-mute);
  margin-bottom: 3rem;
}
.title-foot {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1.6em;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: var(--radius);
  transition: all 220ms var(--easing);
  border: 0.5px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: #1a1410;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

/* Hotspots */
.scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  cursor: pointer;
  z-index: 3;
}
.hotspot.is-disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.hotspot-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow:
    0 0 0 4px rgba(196, 163, 95, 0.55),
    0 0 0 14px rgba(196, 163, 95, 0.22),
    0 4px 14px rgba(0, 0, 0, 0.4);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(196, 163, 95, 0.55),
      0 0 0 14px rgba(196, 163, 95, 0.22),
      0 4px 14px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(196, 163, 95, 0.7),
      0 0 0 22px rgba(196, 163, 95, 0.28),
      0 6px 18px rgba(0, 0, 0, 0.5);
  }
}
.hotspot-label {
  background: rgba(15, 15, 26, 0.95);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 0.5px solid var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  /* Always visible so players know what to click */
}
.hotspot:hover .hotspot-dot {
  transform: scale(1.15);
  transition: transform 220ms var(--easing);
}
.hotspot.is-completed .hotspot-dot {
  background: var(--teal);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 4px rgba(91, 159, 166, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.4);
  animation: none;
}
.hotspot.is-completed .hotspot-label {
  border-color: var(--teal);
  color: var(--teal);
  opacity: 0.85;
}

/* Caption bar */
.caption-bar {
  position: absolute;
  left: 50%;
  bottom: 7rem;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  padding: 1rem 1.6rem;
  border-radius: var(--radius);
  border: 0.5px solid var(--line);
  max-width: 580px;
  text-align: center;
}
.caption-bar p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  font-family: 'Newsreader', serif;
}

/* Action tray */
.action-tray {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(28, 29, 53, 0.96);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--line);
  max-width: 760px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
  animation: slideUp 480ms var(--easing) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.action-tray__prompt {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}
.action-tray__buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 280ms var(--easing) both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUpModal 380ms var(--easing) both;
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  z-index: 2;
}
.modal__close:hover { color: var(--text); background: rgba(255, 255, 255, 0.1); }

/* Case file */
.casefile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}
.casefile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.casefile__body { padding: 1.8rem 2rem 1.8rem 1.6rem; }
.casefile__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.casefile__pof {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.casefile h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.casefile__demo {
  font-size: 0.95rem;
  color: var(--text-mute);
  margin-bottom: 1.4rem;
}
.casefile__facts {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.casefile__facts dt {
  color: var(--text-mute);
  font-weight: 500;
}
.casefile__facts dd { color: var(--text); }
.casefile__note {
  background: rgba(196, 163, 95, 0.08);
  border-left: 2px solid var(--gold);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.casefile__note em { color: var(--text); font-style: italic; }

/* Voicemail */
.modal__panel--voicemail { max-width: 540px; padding: 2.2rem 2rem 1.8rem; }
.voicemail__from {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.voicemail__caller {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.voicemail__transcript {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 1.2rem 0 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

audio { width: 100%; margin-bottom: 0.5rem; }
audio::-webkit-media-controls-panel { background: var(--surface-2); }

/* Outcome screens */
.scene--outcome { background: var(--bg); }
.scene--outcome::before { display: none; }
.outcome-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  padding: 12vh 6vw 8vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.outcome-time {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.outcome-content h2 {
  font-family: 'Newsreader', serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.outcome-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

/* Motel video moment */
.video-moment {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(15, 15, 26, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  gap: 1.5rem;
  animation: fadeIn 480ms var(--easing) both;
}
.video-moment__frame {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 920px;
  box-shadow: var(--shadow-lg);
}
#kathy-media-slot {
  width: 320px;
  height: 400px;
  background: #000;
  position: relative;
  overflow: hidden;
}
#kathy-media-slot img,
#kathy-media-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#kathy-media-slot img.has-kenburns {
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, -1.5%); }
}
.video-moment__caption {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.speaker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.quote {
  font-family: 'Newsreader', serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.quote::before { content: '“'; color: var(--gold); margin-right: 0.1em; }
.quote::after { content: '”'; color: var(--gold); margin-left: 0.05em; }

/* Debrief dialogue card */
.dialogue-card {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(28, 29, 53, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.8rem 2rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--line);
  max-width: 720px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
  animation: slideUp 600ms var(--easing) both;
}
.dialogue-card__header { margin-bottom: 1rem; }
.speaker-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.speaker-tag__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6a3a);
  color: #1a1410;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.speaker-tag__name {
  font-weight: 600;
  font-size: 0.98rem;
}
.speaker-tag__role {
  font-size: 0.82rem;
  color: var(--text-mute);
}
.dialogue-card__text {
  font-family: 'Newsreader', serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
  min-height: 4em;
}
.dialogue-card__audio { margin-bottom: 1.2rem; }

/* Chart panel */
.chart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 380px;
  background: rgba(28, 29, 53, 0.97);
  backdrop-filter: blur(12px);
  border-left: 0.5px solid var(--line);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 400ms var(--easing);
  display: flex;
  flex-direction: column;
}
.chart-panel.is-open { transform: translateX(0); }
.chart-panel__toggle {
  position: absolute;
  left: -56px;
  top: 1.5rem;
  width: 56px;
  background: rgba(28, 29, 53, 0.97);
  border: 0.5px solid var(--line);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 1rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  cursor: pointer;
}
.chart-panel.is-open .chart-panel__toggle {
  /* When panel is open, toggle stays at its same -56px left so it remains the click handle */
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.chart-panel__count {
  background: var(--gold);
  color: #1a1410;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.chart-panel__body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}
.chart-panel__header { margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 0.5px solid var(--line); }
.chart-panel__name {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.chart-panel__meta {
  font-size: 0.78rem;
  color: var(--text-mute);
}
.chart-panel__entries {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.chart-entry {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--teal);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: slideIn 360ms var(--easing) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.chart-entry__time {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.chart-entry__text { color: var(--text); margin-bottom: 0.4rem; }
.chart-entry__cite {
  font-size: 0.74rem;
  color: var(--gold);
  font-style: italic;
}

/* Chart review (end screen) */
.scene--chart-review { background: var(--bg); display: none; }
.scene--chart-review.is-active { display: block; min-height: 100vh; }
.scene--chart-review::before { display: none; }
.chart-review-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 6vh 6vw 6vh;
}
.chart-review__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.chart-review-content h2 {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.chart-review__hint {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.chart-review__entries {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.chart-review__entries .chart-entry {
  background: var(--surface);
  border-left-width: 3px;
  padding: 1.2rem 1.4rem;
  font-size: 0.96rem;
}
.chart-review__entries .chart-entry__time { font-size: 0.8rem; }
.chart-review__entries .chart-entry__cite { font-size: 0.82rem; }
.chart-review__footer {
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.chart-review__footer p { font-size: 1rem; line-height: 1.6; color: var(--text-soft); margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 760px) {
  .casefile { grid-template-columns: 1fr; }
  .casefile__photo { height: 240px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .video-moment__frame { grid-template-columns: 1fr; }
  #kathy-media-slot { width: 100%; height: 280px; }
  .chart-panel { width: 100%; }
  .title-head { font-size: 3rem; }
}
