/* =========================================================
   DramaHit — Cinematic Stage Landing
   Palette: pure black · hit red · VIP gold
   Layout: floating capsule nav · stage-frame hero · chapter panels
   ========================================================= */

:root {
  --dh-bg: #000000;
  --dh-bg-elev: #121212;
  --dh-bg-soft: #1a1a1a;
  --dh-hit: #ff2e4d;
  --dh-hit-deep: #e93354;
  --dh-gold: #c9a227;
  --dh-gold-soft: rgba(201, 162, 39, 0.35);
  --dh-text: #ffffff;
  --dh-muted: #9a9a9a;
  --dh-line: rgba(255, 255, 255, 0.08);
  --dh-radius-lg: 28px;
  --dh-radius-md: 16px;
  --dh-radius-sm: 10px;
  --dh-font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --dh-font-body: "Manrope", system-ui, sans-serif;
  --dh-header-h: 72px;
  --dh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dh-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--dh-font-body);
  background: var(--dh-bg);
  color: var(--dh-text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

.dh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--dh-hit);
  color: #fff;
}

.dh-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Ambient ---------- */
.dh-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.dh-glow--red {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: var(--dh-hit);
  top: -8%;
  right: -6%;
  animation: dh-drift 14s var(--dh-ease) infinite alternate;
}

.dh-glow--gold {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: var(--dh-gold);
  bottom: 12%;
  left: -10%;
  opacity: 0.22;
  animation: dh-drift 18s var(--dh-ease) infinite alternate-reverse;
}

.dh-filmstrip {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 140px;
  height: 280px;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 18px,
      rgba(201, 162, 39, 0.12) 18px 28px
    );
  border-left: 2px solid rgba(201, 162, 39, 0.2);
  border-right: 2px solid rgba(201, 162, 39, 0.2);
  opacity: 0.35;
  transform: rotate(12deg);
  filter: blur(0.5px);
}

@keyframes dh-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 40px) scale(1.08); }
}

/* ---------- Header / Nav ---------- */
.dh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1rem;
  transition: padding 0.25s var(--dh-ease);
}

.dh-header.is-scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.dh-nav {
  max-width: var(--dh-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--dh-gold-soft);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.25s var(--dh-ease), border-color 0.25s var(--dh-ease);
}

.dh-header.is-scrolled .dh-nav {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 46, 77, 0.28);
}

.dh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  cursor: pointer;
}

.dh-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.dh-brand__text {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.dh-brand__drama { color: #fff; }
.dh-brand__hit { color: var(--dh-hit); }

.dh-nav__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.dh-nav__links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dh-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.dh-nav__links a:hover,
.dh-nav__links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.dh-nav__end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.dh-nav__links + .dh-nav__end {
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s var(--dh-ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.dh-btn:hover {
  transform: translateY(-1px);
}

.dh-btn:focus-visible {
  outline: 2px solid var(--dh-hit);
  outline-offset: 3px;
}

.dh-btn svg,
.dh-btn .fa-brands {
  width: 18px;
  height: 18px;
  font-size: 1.05rem;
  line-height: 1;
}

.dh-btn--hit {
  background: var(--dh-hit);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 46, 77, 0.35);
}

.dh-btn--hit:hover {
  background: var(--dh-hit-deep);
}

.dh-btn--vip {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--dh-gold);
  color: var(--dh-gold);
  padding-inline: 1rem;
}

.dh-btn--vip:hover {
  background: rgba(201, 162, 39, 0.22);
  color: #f0d56a;
}

.dh-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.dh-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.dh-btn--apple {
  background: #fff;
  color: #111;
  width: 100%;
  max-width: 320px;
}

.dh-btn--apple:hover {
  background: #f2f2f2;
}

.dh-btn--block {
  width: 100%;
}

/* Burger */
.dh-burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.dh-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.dh-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dh-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.dh-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dh-drawer {
  position: fixed;
  top: calc(var(--dh-header-h) + 0.5rem);
  left: 1rem;
  right: 1rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid var(--dh-gold-soft);
  border-radius: var(--dh-radius-md);
  backdrop-filter: blur(16px);
}

.dh-drawer[hidden] {
  display: none !important;
}

.dh-drawer a {
  padding: 0.85rem 1rem;
  border-radius: var(--dh-radius-sm);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.dh-drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Hero ---------- */
.dh-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: calc(var(--dh-header-h) + 1.5rem) 1.25rem 3rem;
  max-width: var(--dh-max);
  margin: 0 auto;
}

.dh-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.dh-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(233, 51, 84, 0.18);
  border: 1px solid rgba(255, 46, 77, 0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dh-eyebrow__tag {
  color: var(--dh-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.dh-hero__title {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.dh-hero__line {
  display: block;
}

.dh-hero__title em {
  font-style: normal;
  color: var(--dh-hit);
}

.dh-hero__line--soft {
  color: rgba(255, 255, 255, 0.92);
}

.dh-hero__sub {
  max-width: 34rem;
  color: var(--dh-muted);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.dh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dh-hero__stage {
  display: flex;
  justify-content: center;
}

.dh-stage-frame {
  position: relative;
  padding: 0.85rem;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 46, 77, 0.35), rgba(201, 162, 39, 0.15) 55%, rgba(255, 255, 255, 0.05));
  box-shadow:
    0 0 0 1px rgba(255, 46, 77, 0.35),
    0 30px 80px rgba(255, 46, 77, 0.18),
    0 0 60px rgba(255, 46, 77, 0.12);
  animation: dh-pulse-glow 5s var(--dh-ease) infinite alternate;
}

@keyframes dh-pulse-glow {
  from { box-shadow: 0 0 0 1px rgba(255, 46, 77, 0.3), 0 24px 60px rgba(255, 46, 77, 0.12); }
  to { box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.45), 0 32px 90px rgba(255, 46, 77, 0.22); }
}

.dh-phone {
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 331 / 720;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dh-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dh-phone--sm {
  width: min(200px, 58vw);
  border-radius: 22px;
}

.dh-stage-meta {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.dh-stage-meta__play {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--dh-hit);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 46, 77, 0.4);
}

.dh-stage-meta__play svg {
  width: 14px;
  height: 14px;
}

/* ---------- Category rail ---------- */
.dh-rail {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 2.5rem;
}

.dh-rail__inner {
  max-width: var(--dh-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.dh-section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-gold);
  margin-bottom: 0.85rem;
}

.dh-pills {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dh-pills::-webkit-scrollbar { display: none; }

.dh-pill-btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--dh-bg-soft);
  color: var(--dh-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.dh-pill-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.dh-pill-btn.is-active {
  background: #fff;
  color: #111;
}

/* ---------- Features / Chapters ---------- */
.dh-features {
  position: relative;
  z-index: 1;
  max-width: var(--dh-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.dh-section-head {
  margin-bottom: 2.5rem;
}

.dh-section-title {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.dh-section-title em {
  font-style: normal;
  color: var(--dh-hit);
}

.dh-section-sub {
  margin-top: 0.65rem;
  color: var(--dh-muted);
  font-size: 1.05rem;
}

.dh-chapter {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  background: var(--dh-bg-elev);
  border: 1px solid var(--dh-line);
  border-radius: var(--dh-radius-lg);
  overflow: hidden;
}

.dh-chapter--gold {
  border-color: var(--dh-gold-soft);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.08);
}

.dh-chapter__index {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--dh-font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.dh-chapter__body h3 {
  font-family: var(--dh-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.dh-chapter__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dh-chapter__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--dh-muted);
  font-size: 0.98rem;
}

.dh-chapter__list i,
.dh-chapter__list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--dh-hit);
  margin-top: 0.1rem;
}

.dh-chapter--gold .dh-chapter__list i,
.dh-chapter--gold .dh-chapter__list svg {
  color: var(--dh-gold);
}

.dh-chapter__shot {
  display: flex;
  justify-content: center;
}

/* ---------- Stage deck ---------- */
.dh-stage {
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem;
}

.dh-stage .dh-section-head {
  max-width: var(--dh-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.dh-stage-deck {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 1.25rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: 1280px;
  margin: 0 auto;
}

.dh-stage-deck::-webkit-scrollbar { display: none; }

.dh-stage-card {
  flex: 0 0 auto;
  width: min(220px, 62vw);
  scroll-snap-align: center;
  text-align: center;
}

.dh-stage-card .dh-phone {
  width: 100%;
  border-radius: 26px;
  border: 1px solid var(--dh-gold-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s var(--dh-ease), border-color 0.3s;
}

.dh-stage-card:hover .dh-phone {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 77, 0.45);
}

.dh-stage-card--lift {
  margin-top: 1.75rem;
}

.dh-stage-card figcaption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dh-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Download ticket ---------- */
.dh-download {
  position: relative;
  z-index: 1;
  padding: 1rem 1.25rem 5rem;
}

.dh-ticket {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: var(--dh-bg-elev);
  border: 1px solid var(--dh-gold);
  border-radius: var(--dh-radius-lg);
  box-shadow:
    0 0 40px rgba(201, 162, 39, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.dh-ticket__notch {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  background: var(--dh-bg);
  border-radius: 50%;
  transform: translateY(-50%);
}

.dh-ticket__notch--l {
  left: -14px;
  box-shadow: inset -1px 0 0 var(--dh-gold);
}

.dh-ticket__notch--r {
  right: -14px;
  box-shadow: inset 1px 0 0 var(--dh-gold);
}

.dh-ticket__title {
  font-family: var(--dh-font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.dh-ticket__sub {
  color: var(--dh-muted);
  margin-bottom: 1.75rem;
  max-width: 36ch;
  margin-inline: auto;
}

.dh-ticket__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.dh-ticket__actions .dh-btn--hit {
  width: 100%;
  max-width: 320px;
}

.dh-ticket__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(201, 162, 39, 0.35);
}

.dh-ticket__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dh-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.dh-ticket__perks svg {
  width: 16px;
  height: 16px;
}

/* ---------- Footer ---------- */
.dh-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dh-line);
  padding: 2.5rem 1.25rem 3rem;
  background: #050505;
}

.dh-footer__inner {
  max-width: var(--dh-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.dh-brand--footer img {
  width: 32px;
  height: 32px;
}

.dh-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.dh-footer__links a {
  color: var(--dh-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
}

.dh-footer__links a:hover,
.dh-footer__links a:focus-visible {
  color: var(--dh-hit);
}

.dh-footer__copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* ---------- Modal ---------- */
.dh-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.dh-modal[hidden] {
  display: none !important;
}

.dh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.dh-modal__panel {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  padding: 2rem 1.5rem 1.5rem;
  background: var(--dh-bg-elev);
  border: 1px solid rgba(255, 46, 77, 0.35);
  border-radius: var(--dh-radius-lg);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: dh-modal-in 0.28s var(--dh-ease);
}

@keyframes dh-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.dh-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dh-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.dh-modal__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dh-modal__close svg {
  width: 18px;
  height: 18px;
}

.dh-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 46, 77, 0.15);
  color: var(--dh-hit);
}

.dh-modal__icon svg {
  width: 24px;
  height: 24px;
}

.dh-modal__panel h2 {
  font-family: var(--dh-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.dh-modal__panel p {
  color: var(--dh-muted);
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
}

.dh-modal__panel .dh-btn {
  width: 100%;
}

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  .dh-nav__links {
    display: flex;
  }

  .dh-burger {
    display: none;
  }

  .dh-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding-top: calc(var(--dh-header-h) + 2rem);
    padding-bottom: 4rem;
  }

  .dh-hero__stage {
    justify-content: flex-end;
  }

  .dh-phone {
    width: 280px;
  }

  .dh-chapter {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.25rem 2rem;
    gap: 2rem;
  }

  .dh-chapter--rtl {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .dh-chapter--rtl .dh-chapter__shot {
    order: -1;
  }

  .dh-chapter--rtl .dh-chapter__index {
    left: 1.25rem;
    right: auto;
  }

  .dh-chapter__index {
    font-size: 5rem;
    top: 1.25rem;
    right: 1.75rem;
  }

  .dh-stage-deck {
    justify-content: center;
    overflow: visible;
    padding-inline: 1.25rem;
  }

  .dh-stage-card {
    width: 200px;
  }

  .dh-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .dh-footer__copy {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .dh-hero__title {
    font-size: 4.75rem;
  }

  .dh-phone {
    width: 300px;
  }

  .dh-stage-card {
    width: 220px;
  }

  .dh-stage-card--lift {
    margin-top: 2.5rem;
  }
}
