:root {
  color-scheme: light;
  --watch-forest: #073d33;
  --watch-forest-deep: #042d26;
  --watch-forest-soft: #165748;
  --watch-leaf: #47733f;
  --watch-paper: #fffaf0;
  --watch-cream: #fbf5e9;
  --watch-gold: #c8902c;
  --watch-gold-bright: #e8b95f;
  --watch-gold-soft: #dfbc70;
  --watch-rule: #dbc7a1;
  --watch-ink: #123d32;
  --watch-copy: #3d4742;
  --watch-muted: #667069;
  --watch-alert: #703b2e;
  --watch-shadow: 0 18px 44px rgba(4, 45, 38, 0.14);
  --watch-serif: Georgia, "Times New Roman", serif;
  --watch-sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 300px;
  margin: 0;
  color: var(--watch-ink);
  background:
    radial-gradient(circle at 8% 72%, rgba(71, 115, 63, 0.07), transparent 22rem),
    var(--watch-cream);
  font-family: var(--watch-sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.watch-player-fullscreen {
  overflow: hidden;
  overscroll-behavior: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f4c35f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--watch-forest);
  border-radius: 0.45rem;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.watch-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(245px, 315px) 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 2.8vw, 3.5rem);
  min-height: 82px;
  padding: 0.7rem clamp(1.2rem, 3vw, 3.25rem);
  color: var(--watch-paper);
  background: var(--watch-forest-deep);
  border-bottom: 1px solid rgba(232, 185, 95, 0.38);
}

.watch-brand {
  display: block;
  width: min(100%, 260px);
}

.watch-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.watch-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.3rem, 2.7vw, 3rem);
  font: 400 clamp(0.98rem, 1.15vw, 1.08rem)/1 var(--watch-serif);
  white-space: nowrap;
}

.watch-nav a,
.watch-sign-in {
  position: relative;
  padding: 0.65rem 0;
}

.watch-nav a::after,
.watch-sign-in::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--watch-gold-bright);
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.watch-nav a:hover::after,
.watch-nav a[aria-current="page"]::after,
.watch-sign-in:hover::after {
  right: 0;
  left: 0;
}

.watch-account-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-family: var(--watch-serif);
  white-space: nowrap;
}

.rooted-book-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  color: var(--watch-paper);
  border: 1px solid var(--watch-gold-bright);
  border-radius: 0.4rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.rooted-book-link:hover {
  color: var(--watch-forest-deep);
  background: var(--watch-gold-bright);
  transform: translateY(-1px);
}

.watch-menu-button {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.7rem 1rem;
  color: var(--watch-paper);
  background: transparent;
  border: 1px solid var(--watch-gold-bright);
  border-radius: 0.45rem;
  cursor: pointer;
}

.watch-mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 1rem;
  left: 1rem;
  display: grid;
  padding: 0.7rem;
  color: var(--watch-ink);
  background: var(--watch-paper);
  border: 1px solid var(--watch-rule);
  border-radius: 0.65rem;
  box-shadow: var(--watch-shadow);
}

.watch-mobile-nav[hidden] {
  display: none;
}

.watch-mobile-nav a {
  padding: 0.9rem 1rem;
  border-radius: 0.4rem;
  font-weight: 700;
}

.watch-mobile-nav a:hover,
.watch-mobile-nav a[aria-current="page"] {
  color: var(--watch-forest);
  background: #f3e8d3;
}

.recovery-banner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 0.8rem 1.2rem;
  padding: 0.68rem clamp(1.2rem, 4vw, 4.8rem);
  color: #3b241d;
  background: #f1dfc6;
  border-bottom: 1px solid #d5b37b;
}

.recovery-banner__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--watch-paper);
  background: var(--watch-alert);
  border-radius: 50%;
  font-size: 1.15rem;
}

.recovery-banner__copy {
  min-width: 0;
}

.recovery-banner__eyebrow,
.watch-eyebrow,
.watch-rail__heading p {
  margin: 0 0 0.35rem;
  color: var(--watch-gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.recovery-banner__copy h2 {
  margin: 0;
  color: #44281f;
  font: 400 clamp(1.05rem, 1.4vw, 1.3rem)/1.12 var(--watch-serif);
}

.recovery-banner__copy p:last-child {
  margin: 0.22rem 0 0;
  color: #6c4b3d;
  font-size: 0.84rem;
}

.recovery-banner__actions {
  display: flex;
  gap: 0.7rem;
}

.recovery-banner__actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.52rem 0.82rem;
  color: #fff9ef;
  background: var(--watch-alert);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.35rem;
  font-size: 0.84rem;
  font-weight: 760;
  transition: background 160ms ease, transform 160ms ease;
}

.recovery-banner__actions a:last-child {
  color: #44281f;
  background: transparent;
  border-color: #9d7059;
}

.recovery-banner__actions a:hover {
  background: #8b4a38;
  transform: translateY(-1px);
}

.recovery-banner__actions a:last-child:hover {
  color: #fff9ef;
}

.recovery-banner__verified {
  grid-column: 3;
  margin: -0.6rem 0 0;
  color: #77584b;
  font-size: 0.66rem;
  text-align: right;
}

.recovery-story-hero[hidden] {
  display: none;
}

.recovery-story-hero {
  position: relative;
  display: grid;
  min-height: clamp(480px, 61vh, 660px);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fffaf0;
  background-image:
    linear-gradient(90deg, rgba(3, 31, 26, 0.94) 0%, rgba(3, 31, 26, 0.78) 42%, rgba(3, 31, 26, 0.24) 76%, rgba(3, 31, 26, 0.42) 100%),
    var(--campaign-poster);
  background-position: center;
  background-size: cover;
  border-bottom: 4px solid var(--watch-gold-bright);
}

.recovery-story-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 31, 26, 0.82), transparent 52%),
    radial-gradient(circle at 72% 22%, rgba(232, 185, 95, 0.16), transparent 26rem);
}

.recovery-story-hero__content {
  width: min(100% - 2.4rem, 1340px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(2.8rem, 5vw, 5rem);
}

.recovery-story-hero__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--watch-gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.recovery-story-hero h2 {
  max-width: 800px;
  margin: 0;
  font: 400 clamp(2.8rem, 6.6vw, 6.4rem)/0.94 var(--watch-serif);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.recovery-story-hero__body {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: #edf1e9;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.recovery-story-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.recovery-story-hero__actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  padding: 0.76rem 1.05rem;
  color: #173c31;
  background: var(--watch-gold-bright);
  border: 1px solid var(--watch-gold-bright);
  border-radius: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.recovery-story-hero__actions a:last-child {
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(8px);
}

.recovery-story-hero__actions a:hover {
  color: #fffaf0;
  background: var(--watch-forest-soft);
  border-color: var(--watch-forest-soft);
  transform: translateY(-2px);
}

.recovery-story-hero__trust {
  max-width: 720px;
  margin: 1.15rem 0 0;
  color: #cdd8d1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.watch-main {
  width: min(100% - 2.4rem, 1340px);
  margin: 0 auto;
  padding: clamp(1.35rem, 2.2vw, 2.1rem) 0 5rem;
}

.watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
  margin-bottom: 0.78rem;
}

.watch-heading h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--watch-forest);
  font: 400 clamp(2.3rem, 3.1vw, 3.1rem)/0.99 var(--watch-serif);
  letter-spacing: -0.037em;
  text-wrap: balance;
}

.watch-meta {
  margin: 1rem 0 0;
  color: var(--watch-copy);
  font-size: 0.92rem;
  font-weight: 650;
}

.watch-intro {
  max-width: 940px;
  margin: 0.5rem 0 0;
  color: var(--watch-copy);
  font: 400 0.92rem/1.4 var(--watch-serif);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(330px, 1fr);
  align-items: start;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  justify-content: space-between;
}

.featured-video {
  min-width: 0;
}

.content-note {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  color: #5d463c;
  background: #f6ead9;
  border-top: 1px solid #ddc29b;
  border-bottom: 1px solid #ddc29b;
  font-size: 0.81rem;
}

.content-note i {
  color: var(--watch-gold);
  font-size: 1.05rem;
}

.content-note a {
  margin-left: auto;
  color: var(--watch-forest);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.content-note a[hidden] {
  display: none;
}

.video-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #10241f;
  border-radius: 0.45rem;
  box-shadow: var(--watch-shadow);
  isolation: isolate;
}

.video-stage::before {
  position: absolute;
  inset: -1.25rem;
  z-index: -1;
  background:
    linear-gradient(rgba(3, 31, 26, 0.3), rgba(3, 31, 26, 0.3)),
    var(--stage-poster) center / cover no-repeat;
  content: "";
  filter: blur(18px) saturate(0.85);
  transform: scale(1.08);
}

.video-stage > video {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  object-fit: contain;
}

.video-stage.is-playing::before {
  filter: blur(22px) saturate(0.9);
}

.video-stage.is-browser-fullscreen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  aspect-ratio: auto;
  background: #020706;
  border-radius: 0;
}

.video-stage.is-browser-fullscreen .video-preview-label {
  top: max(0.8rem, env(safe-area-inset-top));
  left: max(0.8rem, env(safe-area-inset-left));
}

.video-stage.is-browser-fullscreen .video-controls {
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
}

.video-stage__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 26%),
    linear-gradient(to top, rgba(2, 25, 21, 0.92), transparent 34%);
  pointer-events: none;
}

.video-preview-label {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.48rem 0.65rem;
  color: #fffaf0;
  background: rgba(4, 45, 38, 0.84);
  border: 1px solid rgba(232, 185, 95, 0.5);
  border-radius: 0.3rem;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.video-play-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(62px, 7vw, 88px);
  height: clamp(62px, 7vw, 88px);
  place-items: center;
  color: var(--watch-paper);
  background: rgba(4, 45, 38, 0.9);
  border: 1px solid rgba(232, 185, 95, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.video-play-button:hover {
  background: var(--watch-forest);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play-button:disabled {
  cursor: default;
  opacity: 0.72;
}

.video-stage.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 0.75rem;
  left: 1rem;
  color: var(--watch-paper);
}

.video-progress {
  width: 100%;
  height: 4px;
  margin: 0;
  accent-color: var(--watch-gold-bright);
  cursor: pointer;
}

.video-controls__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
}

.video-controls button {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 0.45rem;
  color: var(--watch-paper);
  background: transparent;
  border: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 750;
}

.video-controls button:hover,
.video-controls button[aria-pressed="true"] {
  color: var(--watch-forest-deep);
  background: var(--watch-gold-bright);
}

.video-controls button:disabled,
.video-controls input:disabled,
.video-controls button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

.video-controls button[aria-disabled="true"]:hover {
  color: var(--watch-paper);
  background: transparent;
}

.video-time {
  min-width: 92px;
  margin-right: auto;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.player-status {
  margin: 0.6rem 0 0;
  color: var(--watch-muted);
  font-size: 0.74rem;
}

.reflection-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--watch-gold-soft);
  border-radius: 0.65rem;
  box-shadow: 0 10px 25px rgba(4, 45, 38, 0.07);
}

.reflection-strip__mark {
  color: var(--watch-gold);
  font-size: 1.7rem;
}

.reflection-strip__body label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--watch-forest);
  font: 400 1.25rem/1.2 var(--watch-serif);
}

.reflection-strip textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  resize: vertical;
  padding: 0.7rem 0.8rem;
  color: var(--watch-ink);
  background: #fffdf8;
  border: 1px solid #baa98b;
  border-radius: 0.35rem;
  line-height: 1.4;
}

.reflection-strip textarea::placeholder {
  color: #7b817d;
}

.reflection-privacy,
.reflection-error {
  margin: 0.45rem 0 0;
  color: var(--watch-muted);
  font-size: 0.71rem;
  line-height: 1.35;
}

.reflection-error {
  color: #9a3027;
  font-weight: 760;
}

.reflection-save {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  padding: 0.8rem 1rem;
  color: var(--watch-paper);
  background: var(--watch-forest);
  border: 1px solid var(--watch-forest-deep);
  border-radius: 0.4rem;
  box-shadow: 0 8px 18px rgba(4, 45, 38, 0.16);
  cursor: pointer;
  font: 700 0.88rem/1.1 var(--watch-serif);
  transition: background 160ms ease, transform 160ms ease;
}

.reflection-save:hover {
  background: var(--watch-forest-soft);
  transform: translateY(-1px);
}

.watch-rail {
  padding-top: 0.1rem;
}

.watch-rail__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--watch-gold);
}

.watch-rail__heading h2 {
  margin: 0;
  color: var(--watch-forest);
  font: 400 2rem/1 var(--watch-serif);
}

.watch-rail__heading > span {
  color: var(--watch-muted);
  font-size: 0.7rem;
}

.watch-list {
  display: grid;
  max-height: 720px;
  padding-right: 0.35rem;
  overflow-y: auto;
  scrollbar-color: rgba(186, 139, 51, 0.58) transparent;
  scrollbar-width: thin;
}

.watch-list-item {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  color: var(--watch-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ddceb3;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.watch-list-item[aria-current="true"] {
  padding-right: 0.65rem;
  padding-left: 0.65rem;
  background: rgba(235, 215, 174, 0.23);
  border-radius: 0.35rem;
  box-shadow: inset 3px 0 0 var(--watch-gold);
}

.watch-list-item:hover .watch-list-item__title,
.watch-list-item[aria-current="true"] .watch-list-item__title {
  color: var(--watch-gold);
}

.watch-list-item__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 0.3rem;
}

.watch-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.watch-list-item:hover .watch-list-item__image img {
  transform: scale(1.035);
}

.watch-list-item__duration {
  position: absolute;
  right: 0.28rem;
  bottom: 0.28rem;
  padding: 0.22rem 0.34rem;
  color: #fff;
  background: rgba(4, 45, 38, 0.9);
  border-radius: 0.2rem;
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
}

.watch-list-item__duration.is-coming-soon {
  background: var(--watch-brick);
}

.watch-list-item__kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--watch-gold);
  font-size: 0.6rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.watch-list-item__title {
  display: block;
  color: var(--watch-forest);
  font: 400 1.05rem/1.18 var(--watch-serif);
  transition: color 160ms ease;
}

.watch-list-item__meta {
  display: block;
  margin-top: 0.42rem;
  color: var(--watch-muted);
  font-size: 0.71rem;
}

.recovery-resources {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 4.8rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--watch-paper);
  background: var(--watch-forest-deep);
  border-top: 3px solid var(--watch-gold);
}

.recovery-resources h2 {
  margin: 0;
  font: 400 clamp(2.1rem, 3.5vw, 3.25rem)/1.02 var(--watch-serif);
  letter-spacing: -0.025em;
}

.recovery-resources p:not(.watch-eyebrow) {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #dbe1da;
  line-height: 1.65;
}

.recovery-resource-links {
  display: grid;
  align-content: center;
}

.recovery-resource-links a {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 185, 95, 0.36);
  transition: padding-left 160ms ease, color 160ms ease;
}

.recovery-resource-links a:hover {
  padding-left: 0.55rem;
  color: var(--watch-gold-bright);
}

.recovery-resource-links span {
  color: var(--watch-gold-bright);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recovery-resource-links strong {
  font: 400 1.38rem/1.2 var(--watch-serif);
}

.recovery-resource-links small {
  color: #bac7c0;
  line-height: 1.4;
}

.recovery-resources .recovery-resources__disclosure {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0.4rem 0 0;
  padding-top: 1rem;
  color: #dbe1da;
  border-top: 1px solid rgba(232, 185, 95, 0.36);
  font-size: 0.8rem;
  line-height: 1.5;
}

.watch-footer {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  padding: 1.4rem clamp(1.3rem, 4vw, 4.8rem);
  color: var(--watch-forest);
  background: #f2e7d4;
  border-top: 1px solid var(--watch-rule);
}

.watch-footer img {
  width: min(340px, 42vw);
  height: auto;
}

.watch-footer p {
  margin: 0;
  font: italic 1rem/1.4 var(--watch-serif);
}

.sign-in-dialog {
  width: min(92vw, 540px);
  padding: 0;
  color: var(--watch-ink);
  background: var(--watch-paper);
  border: 1px solid var(--watch-gold-soft);
  border-radius: 0.7rem;
  box-shadow: 0 24px 70px rgba(4, 32, 27, 0.35);
}

.sign-in-dialog::backdrop {
  background: rgba(2, 22, 18, 0.72);
  backdrop-filter: blur(4px);
}

.sign-in-dialog form {
  position: relative;
  padding: 2.25rem;
}

.sign-in-dialog h2 {
  margin: 0;
  color: var(--watch-forest);
  font: 400 2.2rem/1.05 var(--watch-serif);
}

.sign-in-dialog p:not(.watch-eyebrow) {
  color: var(--watch-copy);
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--watch-forest);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.dialog-close:hover {
  background: #efe3ce;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.dialog-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  color: var(--watch-paper);
  background: var(--watch-forest);
  border: 1px solid var(--watch-forest);
  border-radius: 0.35rem;
  font-weight: 760;
  text-align: center;
}

.dialog-actions a:last-child {
  color: var(--watch-forest);
  background: transparent;
}

.dialog-not-now {
  display: block;
  margin: 1.1rem auto 0;
  padding: 0.55rem;
  color: var(--watch-forest);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1280px) {
  .watch-nav,
  .watch-account-actions {
    display: none;
  }

  .watch-menu-button {
    display: inline-flex;
    justify-self: end;
  }
}

@media (max-width: 1120px) {
  .watch-header {
    grid-template-columns: minmax(220px, 280px) 1fr auto;
  }

  .watch-nav,
  .watch-account-actions {
    display: none;
  }

  .watch-menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .recovery-banner {
    grid-template-columns: auto 1fr;
  }

  .recovery-banner__actions {
    grid-column: 2;
  }

  .recovery-banner__verified {
    grid-column: 2;
    margin-top: -0.5rem;
    text-align: left;
  }

  .watch-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .watch-intro {
    max-width: 720px;
  }

  .watch-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .reflection-strip {
    grid-template-columns: auto 1fr;
  }

  .reflection-save {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .watch-header {
    min-height: 78px;
  }

  .watch-brand {
    width: 235px;
  }

  .recovery-banner {
    grid-template-columns: auto 1fr;
    padding-block: 0.9rem;
  }

  .recovery-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .recovery-story-hero {
    min-height: 560px;
    background-image:
      linear-gradient(90deg, rgba(3, 31, 26, 0.92), rgba(3, 31, 26, 0.48)),
      var(--campaign-poster);
  }

  .recovery-story-hero__content {
    width: min(100% - 1.5rem, 740px);
  }

  .watch-main {
    width: min(100% - 1.5rem, 740px);
    padding-top: 2.4rem;
  }

  .watch-heading h1 {
    font-size: clamp(2.25rem, 9vw, 3.6rem);
  }

  .watch-layout {
    grid-template-columns: 1fr;
  }

  .watch-rail {
    margin-top: 1.4rem;
  }

  .watch-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .watch-list-item {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.65rem;
    border-bottom: 0;
  }

  .recovery-resources {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }
}

@media (max-width: 620px) {
  .watch-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
    padding-inline: 0.8rem;
  }

  .watch-brand {
    width: min(100%, 210px);
  }

  .watch-menu-button {
    min-height: 42px;
    padding-inline: 0.75rem;
  }

  .recovery-banner {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1rem;
  }

  .recovery-banner__mark {
    display: none;
  }

  .recovery-banner__actions,
  .recovery-banner__verified {
    grid-column: 1;
  }

  .recovery-banner__actions {
    grid-template-columns: 1fr;
  }

  .recovery-story-hero {
    min-height: 600px;
    background-position: center;
  }

  .recovery-story-hero__content {
    width: min(100% - 2rem, 560px);
    padding-block: 3.4rem 2.5rem;
  }

  .recovery-story-hero h2 {
    font-size: clamp(2.55rem, 13vw, 4.25rem);
  }

  .recovery-story-hero__actions {
    display: grid;
  }

  .recovery-story-hero__actions a {
    width: 100%;
  }

  .watch-main {
    width: min(100% - 1rem, 560px);
    padding-top: 2rem;
  }

  .watch-heading h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .content-note {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0.75rem;
  }

  .content-note a {
    grid-column: 2;
    margin-left: 0;
  }

  .video-stage {
    border-radius: 0.3rem;
  }

  .video-preview-label {
    max-width: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.62rem;
  }

  .video-controls {
    right: 0.55rem;
    bottom: 0.35rem;
    left: 0.55rem;
  }

  .video-controls__row {
    gap: 0.1rem;
  }

  .video-controls button {
    min-width: 34px;
    height: 34px;
  }

  .video-time {
    min-width: 78px;
    font-size: 0.68rem;
  }

  .reflection-strip {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .reflection-strip__mark {
    display: none;
  }

  .reflection-save {
    grid-column: 1;
    width: 100%;
  }

  .watch-list {
    grid-template-columns: 1fr;
  }

  .watch-list-item {
    grid-template-columns: 132px 1fr;
    border-bottom: 1px solid #ddceb3;
  }

  .recovery-resources {
    padding: 1.6rem 1rem;
  }

  .watch-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .watch-footer img {
    width: min(100%, 300px);
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .sign-in-dialog form {
    padding: 2rem 1.2rem 1.5rem;
  }
}

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