:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --muted: #6f6f6f;
  --body: #3d3d3d;
  --line: #e4e4e4;
  --soft: #f2f2f2;
  --accent: #e10600;
  --accent-hover: #c10500;
  --max: 1320px;
  --content: 1040px;
  --pad: 40px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Dancing Script", "Segoe Script", cursive;
  --sans: Archivo, "Helvetica Neue", Helvetica, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--muted); }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap.nt-col {
  max-width: calc(var(--content) + 2 * var(--pad));
}

/* Header */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nt-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.nt-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.nt-brand:hover { color: inherit; }
.nt-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  object-position: center;
}
.nt-tagline {
  font-family: var(--script);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}
.nt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nt-nav a:hover { color: var(--accent); }
.nt-nav a.is-active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.nt-header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.nt-cta {
  background: var(--accent);
  color: var(--paper) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nt-cta:hover { background: var(--accent-hover); color: var(--paper) !important; }
.nt-menu-btn {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nt-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

/* Ticker */
.nt-ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 11px 0;
}
.nt-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nt-ticker-track span { padding-right: 40px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Type */
.kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.section-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* Media placeholders */
.media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #000;
  container-type: inline-size;
}
.media.light {
  border-color: var(--line);
  background: #111;
}
.media.portrait {
  aspect-ratio: 9 / 16;
  width: 320px;
  max-width: 100%;
}
.media.portrait.is-lg {
  width: min(100%, 540px);
}
.media.portrait.is-sm {
  width: 90px;
}
.media.wide {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: none;
}
.media.wide.is-sm {
  width: 100%;
}
.media iframe, .media video {
  position: absolute;
  border: 0;
  background: #000;
}
.media video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media iframe {
  left: 0;
  top: 0;
  transform-origin: 0 0;
}
.media-poster,
.media-poster-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
}
.media-poster img,
.media-poster-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.media.portrait .media-poster img,
.media.portrait .media-poster-img {
  object-fit: contain;
}
.media-poster .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.media.is-playing .media-poster { display: none; }
.media.wide iframe {
  width: 1920px;
  height: 1080px;
  max-width: none;
  transform: scale(calc(100cqi / 1920px));
}
.media.portrait iframe {
  width: 1080px;
  height: 1920px;
  max-width: none;
  transform: scale(calc(100cqi / 1080px));
}
.media-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.play {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play i {
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.media.light .play { border-color: rgba(10,10,10,0.35); }
.media.light .play i { border-left-color: var(--ink); }
a.media-goto {
  display: block;
  color: inherit;
  position: relative;
}
a.media-goto .media { pointer-events: none; }
.media-hit {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
}
.media-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.media.light .media-label { color: #a0a0a0; }
.chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--paper);
  color: var(--ink);
}
.chip.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.4);
}
.badge-dark {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 8px;
  z-index: 4;
}

/* Ads — one banner per slot, never flush against another banner */
.ad-wrap { margin: 36px auto; max-width: 970px; }
.ad-wrap + .ad-wrap { display: none; }
.ad-box {
  border: 1px dashed #c9c9c9;
  background: repeating-linear-gradient(135deg, #fafafa 0 9px, #f2f2f2 9px 18px);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 16px;
}
.ad-box span {
  font-family: var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-size: 11px;
}
.ad-box small { font-family: var(--mono); font-size: 10px; color: #b0b0b0; letter-spacing: 0; text-transform: none; }
.ad-box.dark {
  border-color: rgba(255,255,255,0.28);
  background: repeating-linear-gradient(135deg, #131313 0 9px, #0f0f0f 9px 18px);
}
.ad-box.dark span { color: rgba(255,255,255,0.55); }
.ad-box.dark small { color: rgba(255,255,255,0.35); }
.ad-box.tall { min-height: 250px; }
.ad-box.skyscraper { min-height: 600px; }

/* Main video + copy (homepage, reel, horoscope, episode) */
.feature-video {
  display: grid;
  gap: 40px 56px;
  align-items: center;
}
.feature-video-portrait { grid-template-columns: 320px minmax(0, 1fr); }
.feature-video-portrait.is-lg { grid-template-columns: min(540px, 100%) minmax(0, 1fr); }
.feature-video-wide { grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr); }
.feature-video-media {
  position: relative;
  display: block;
  min-width: 0;
  justify-self: center;
  width: 100%;
}
.feature-video-portrait .feature-video-media { width: min(100%, 320px); }
.feature-video-portrait.is-lg .feature-video-media { width: min(100%, 540px); }
.feature-video-wide .feature-video-media { width: 100%; }
.feature-video-copy { min-width: 0; }
.feature-video-kicker { display: flex; align-items: center; gap: 14px; }
.feature-video-dot { width: 7px; height: 7px; background: var(--ink); border-radius: 999px; flex-shrink: 0; }
.feature-video-rule { flex: 1; height: 1px; background: var(--line); }
.feature-video-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 0; }
.feature-video-actions { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.feature-video-copy h1, .feature-video-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.feature-video-copy .lede {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.feature-video-copy .meta-line { margin-top: 16px; }
.feature-video.is-hero { padding: 64px 0 0; }
.btn-dark {
  display: inline-block;
  background: var(--accent);
  color: var(--paper) !important;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}
.btn-dark:hover { background: var(--accent-hover); color: var(--paper) !important; }
.accent { color: var(--accent); }
.btn-line {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 15px 30px;
}
.btn-line:hover { background: var(--ink); color: var(--paper); }

/* Grids */
.reel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  margin-top: 36px;
}
.reel-grid > a,
.reel-grid > .reel-card {
  width: 320px;
  max-width: 100%;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.episode-grid .media.wide {
  width: 100%;
}
.episode-grid article h3 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.episode-grid article p,
.episode-grid article .excerpt-rich,
.episode-excerpt {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  text-align: left;
}
.podcast-feature-copy .episode-excerpt {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.62);
}
.excerpt-rich p { margin: 0 0 0.55em; }
.excerpt-rich p:last-child { margin-bottom: 0; }
.reel-card .excerpt-rich,
.reel-card .excerpt-rich * {
  color: var(--muted) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-align: left !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.reel-card .excerpt-rich {
  margin-top: 7px;
}
.reel-card .excerpt-rich p:empty { display: none; }
.excerpt-rich h1,
.excerpt-rich h2,
.excerpt-rich h3,
.excerpt-rich h4 {
  margin: 0 0 0.4em;
  font-size: 1em;
  line-height: 1.25;
  letter-spacing: inherit;
}
.reel-card h3, .post-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.reel-card h3,
.reel-title {
  color: var(--accent);
}
.reel-card:hover h3,
a:hover .reel-title {
  color: var(--accent-hover);
}
.reel-card p, .post-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.continue {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}

/* Podcast band */
.band-dark {
  background: var(--ink);
  color: var(--paper);
  margin-top: 84px;
  padding: 76px 0;
}
.band-dark .section-head { border-bottom-color: rgba(255,255,255,0.22); }
.band-dark .kicker, .band-dark .section-link { color: rgba(255,255,255,0.55); }
.band-dark .section-link { color: #fff; }
.podcast-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.episode-list { display: flex; flex-direction: column; gap: 22px; }
.episode-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 22px;
}
.podcast-feature-copy, .episode-row a { color: #fff; }
.podcast-index-grid {
  grid-template-columns: 1fr;
}
.podcast-index-grid .podcast-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 1fr);
  gap: 32px;
  align-items: center;
}
.podcast-index-grid .podcast-feature-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 700;
}
.podcast-index-grid .podcast-feature-copy .excerpt-rich {
  margin: 12px 0 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}
.episode-row:hover, .band-dark a:hover { color: #fff; }
.episode-row h4 { margin: 7px 0 0; font-size: 17px; line-height: 1.2; font-weight: 600; }
.episode-row p,
.episode-row .excerpt-rich { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.55); }

/* Horoscope grid */
.sign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.sign-grid.is-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sign-cell {
  background: var(--paper);
  padding: 24px 22px 22px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.sign-cell:hover { background: var(--ink); color: #fff; }
.sign-cell-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}
.sign-name {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
}
.sign-dates {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--muted);
  text-align: left;
}
.sign-cell p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.72;
  width: 100%;
  text-align: left;
}
.sign-cell .continue {
  align-self: flex-start;
}
.sign-cell:hover .sign-name,
.sign-cell:hover .sign-dates,
.sign-cell:hover p,
.sign-cell:hover .continue {
  color: #fff;
}
.sign-cell:hover .continue { border-bottom-color: #fff; }

/* Subscribe */
.subscribe {
  border-top: 1px solid var(--ink);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.subscribe h2 {
  margin: 0;
  font-size: 46px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.subscribe p { margin: 16px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 46ch; }
.subscribe-form { display: flex; border: 1px solid var(--ink); }
.subscribe-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 20px 22px;
  font-size: 15px;
  background: var(--paper);
  min-width: 0;
}
.subscribe-note { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* Footer */
.nt-footer {
  margin-top: 84px;
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 34px;
}
.nt-footer a { color: rgba(255,255,255,0.7); }
.nt-footer a:hover { color: #fff; }
.nt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.nt-logo-on-dark { filter: none; }
.nt-footer-tag {
  margin: 16px 0 0;
  font-family: var(--script);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
  max-width: 26ch;
}
.nt-footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.nt-footer-col .kicker { color: #fff; margin-bottom: 6px; }
.nt-footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nt-footer.compact { padding: 46px 0 30px; margin-top: 80px; }
.nt-footer.compact .nt-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Listing pages */
.page-hero { padding: 56px 0 0; }
.page-hero h1 {
  margin: 14px 0 0;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.page-hero p {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.filter-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 22px;
}
.page-hero.is-centered {
  text-align: center;
}
.page-hero.is-centered p {
  margin-left: auto;
  margin-right: auto;
}
.page-hero.is-centered .filter-row {
  justify-content: center;
}
.page-hero.is-centered .section-head {
  text-align: left;
}
.page-hero.is-centered .sign-cell {
  text-align: left;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #d8d8d8;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  white-space: nowrap;
  line-height: 1;
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill.is-on {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}
.pill.is-on:hover { background: var(--ink); color: #fff !important; }
.reels-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 40px;
  margin-top: 36px;
}
.reels-4 > a,
.reels-4 > .reel-card {
  width: 320px;
  max-width: 100%;
}
.reel-title {
  margin: 7px 0 0;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.meta-line {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a0a0a0;
}

/* Article / episode / sign */
.episode-wrap {
  max-width: var(--max);
  padding-left: 40px;
  padding-right: 40px;
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
  padding: 28px 0 0;
}
.episode-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}
.episode-hero.has-rail {
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 12px 16px;
}
.episode-hero-media {
  min-width: 0;
  max-width: none;
  width: 100%;
}
.episode-hero-media .media.wide {
  width: 100%;
  height: auto;
}
.episode-up-next {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 0;
  min-height: 0;
  margin-left: 0;
}
.up-next-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
  min-height: 0;
  height: 100%;
}
.episode-up-next .kicker {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 4;
  margin: 0;
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
}
.up-next-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  height: 100%;
  color: inherit;
  overflow: hidden;
}
.up-next-card:hover { color: inherit; }
.up-next-card .media,
.up-next-card .media.wide,
.up-next-card .media.wide.is-sm {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.up-next-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  padding: 18px 8px 7px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.up-next-card .play {
  width: 34px;
  height: 34px;
}
.up-next-card .play i {
  border-left-width: 9px;
  border-top-width: 6px;
  border-bottom-width: 6px;
}
.episode-wrap .ad-wrap,
.episode-ad .ad-wrap {
  max-width: none;
  width: 100%;
  margin: 22px 0;
}
.episode-stage-copy {
  min-width: 0;
}
/* Reel detail: 9:16 player left, title + article sharing one left edge */
.reel-stage {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px 48px;
  align-items: start;
  margin-top: 28px;
}
.reel-stage-media {
  position: sticky;
  top: 92px;
  width: 320px;
  max-width: 100%;
  justify-self: center;
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
}
.reel-stage-media .media.portrait {
  width: 320px;
  max-width: 100%;
}
.reel-stage-copy {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.reel-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.reel-stage-copy h1 {
  margin: 16px 0 0;
  max-width: 18ch;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--accent);
  text-wrap: balance;
}
.reel-stage-copy .chip {
  background: var(--soft);
  border: 1px solid var(--line);
}
.reel-stage-copy .lede {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 22px;
}
.reel-stage-copy .article-body {
  margin-top: 28px;
  max-width: 66ch;
}
.reel-stage-copy .article-body p:last-child {
  margin-bottom: 0;
}
.episode-stage {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.episode-stage-media {
  width: 100%;
}
.episode-stage-copy h1 {
  margin: 16px 0 0;
  max-width: none;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--accent);
  text-wrap: balance;
}
.episode-stage-copy .lede {
  margin: 18px 0 0;
  max-width: none;
  font-size: 22px;
}
.episode-stage-copy .article-body {
  margin-top: 28px;
  max-width: none;
}
.episode-chapters {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reel-more {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}
.sticky-aside .reel-more {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.reel-more-list {
  margin-top: 8px;
}
.reel-more-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.article-body {
  max-width: 66ch;
  font-size: 18px;
  line-height: 1.75;
  color: #1c1c1c;
}
.article-body p { margin: 0 0 22px; }
.article-body h1 {
  margin: 28px 0 14px;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.article-body h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 1.3em;
}
.article-body a { text-decoration: underline; }
.horoscope-mark {
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
}
.sign-cell .horoscope-mark,
.sign-cell:hover .horoscope-mark,
.day-cell .horoscope-mark,
.day-cell.is-on .horoscope-mark,
a.day-cell:hover .horoscope-mark {
  color: var(--accent);
}
.article-body h2 {
  margin: 38px 0 16px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.pullquote {
  margin: 32px 0;
  padding: 0 0 0 26px;
  border-left: 2px solid var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.35;
  font-style: italic;
}
.lede {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
  color: var(--body);
  max-width: 42ch;
}
.crumb {
  display: inline-block;
  padding: 22px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-grid div { background: var(--paper); padding: 16px 18px; }
.stat-grid .kicker { color: #a0a0a0; }
.stat-grid strong { display: block; margin-top: 6px; font-size: 17px; font-weight: 600; }
.sticky-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; }
.sign-page {
  padding: 0 0 64px;
  max-width: calc(var(--content) + 2 * var(--pad));
}
.sign-page .crumb { padding-top: 22px; }
.sign-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.sign-headline {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.day-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.day-cell {
  background: var(--paper);
  padding: 18px 20px 20px;
  display: block;
  color: inherit;
  min-height: 100%;
}
.day-cell .kicker { color: #a0a0a0; }
.day-cell strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.day-cell p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}
.day-cell.is-on {
  background: var(--ink);
  color: #fff;
}
.day-cell.is-on .kicker,
.day-cell.is-on p { color: rgba(255,255,255,0.7); }
a.day-cell:hover {
  background: var(--ink);
  color: #fff;
}
a.day-cell:hover .kicker,
a.day-cell:hover p { color: rgba(255,255,255,0.7); }
.day-cell.is-empty p { color: var(--muted); }
.sign-page .article-body {
  margin-top: 36px;
  max-width: none;
  text-align: left;
}
.sign-others { margin-top: 40px; }
.sign-others-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sign-page .feature-video { margin-top: 40px; }
.sign-h1 {
  margin: 22px 0 0;
  color: var(--accent);
  font-weight: 700;
}
.sign-h1-name {
  display: block;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.sign-h1-rest {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-page, .simple-page {
  max-width: 740px;
  margin: 48px auto 64px;
  padding: 0 var(--pad);
}
.legal-page h1, .simple-page h1 {
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.legal-page p, .simple-page p, .legal-page li { font-size: 16px; line-height: 1.7; color: var(--body); }
.simple-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.simple-form input, .simple-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  font-size: 15px;
}
.flash { padding: 14px 16px; border: 1px solid var(--ink); margin-bottom: 16px; }

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 20px;
}
.error-page h1 { font-size: 96px; margin: 0; letter-spacing: -0.04em; }

.media-more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  border: 0;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  cursor: pointer;
}
.media-more-panel[hidden] { display: none; }
.media-more-panel {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #000;
  display: flex;
  flex-direction: column;
}
.media-more-close {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 7;
  border: 0;
  background: rgba(10, 10, 10, 0.7);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.media-more-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  container-type: inline-size;
}
.media-more-stage iframe {
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  transform-origin: 0 0;
}
.media-more-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 10px;
  background: #111;
}
.media-more-link {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  min-width: 0;
}
.media-more-next {
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
  cursor: pointer;
}
.media.is-more-open > iframe,
.media.is-more-open > .media-more {
  visibility: hidden;
}

#cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  color: #eee;
  padding: 16px 24px;
  font-size: 13px;
}
#cookie-consent .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Homepage — new editorial rooms from NT Web Layout */
.nt-editorial {
  padding: 72px 0 0;
  text-align: center;
}
.nt-editorial-kicker { color: var(--accent); }
.nt-editorial-title {
  margin: 18px auto 0;
  width: min(var(--content), 100%);
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.nt-editorial-tag {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
}
.nt-editorial-lead {
  margin: 22px auto 0;
  width: min(var(--content), 100%);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  text-align: justify;
  text-align-last: left;
}
.nt-editorial-foot {
  margin: 28px 0 0;
  font-size: 13px;
  color: #b0b0b0;
}
.nt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
  width: min(var(--content), 100%);
}
.nt-split-col h2,
.nt-split-col h3 {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.nt-split-col p {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
a.nt-split-col:hover h2 { color: var(--accent); }

.nt-rooms { padding: 88px 0 0; text-align: center; }
.nt-block-title {
  margin: 12px 0 0;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.nt-block-lead {
  margin: 18px auto 0;
  width: min(var(--content), 100%);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.nt-rooms .nt-split { text-align: left; }
.nt-rooms-close {
  margin: 28px auto 0;
  width: min(var(--content), 100%);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--script);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--accent);
  text-align: center;
}

.nt-doors {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  justify-content: center;
  gap: 40px;
  width: min(var(--content), 100%);
  margin: 88px auto 0;
  align-items: start;
}
.nt-doors-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 18px;
}
.nt-doors-nav button {
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.nt-doors-nav button.is-on {
  color: var(--accent);
  background: var(--soft);
}
.nt-doors-copy { border-top: 1px solid var(--ink); padding-top: 8px; }
.nt-door-panel {
  padding: 22px 0 22px 0;
  border-bottom: 1px solid var(--line);
}
.nt-door-panel h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.nt-door-panel h3 span { color: var(--muted); margin-right: 8px; }
.nt-door-panel p,
.nt-door-panel .continue { display: none; }
.nt-door-panel.is-on {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}
.nt-door-panel.is-on p,
.nt-door-panel.is-on .continue { display: block; }
.nt-door-panel p {
  margin: 14px 0 0;
  max-width: none;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.nt-door-cue { color: var(--accent) !important; font-weight: 600; }
.nt-door-note {
  display: block;
  margin: 22px auto 0;
  width: min(var(--content), 100%);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--script);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--accent);
  text-align: center;
  font-size: 28px;
}
.nt-door-panel .continue { margin-top: 14px; }

.nt-reports {
  display: grid;
  grid-template-columns: 320px 680px;
  justify-content: center;
  gap: 40px;
  width: min(var(--content), 100%);
  margin: 88px auto 0;
  align-items: start;
}
.nt-reports .nt-block-title { font-size: 40px; max-width: 16ch; }
.nt-report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.nt-report-list li {
  display: block;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.nt-report-list li span {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  padding-top: 4px;
}
.nt-report-list h3 { margin: 0; font-size: 16px; font-weight: 700; }
.nt-report-list p { margin: 6px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted); }
.nt-reports-cta { grid-column: 1 / -1; margin: 8px 0 0; }
.nt-reports-note {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}
.nt-reports-note + .nt-reports-note { margin-top: 10px; }
.nt-report-list button.nt-report-open {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.nt-report-list button.nt-report-open:hover h3 { color: var(--accent); }
.nt-report-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.55);
}
.nt-report-modal.is-open { display: flex; }
.nt-report-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(80vh, 720px);
  overflow: auto;
  background: var(--paper);
  padding: 40px 44px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.nt-report-modal-card h3 {
  margin: 0 36px 16px 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.nt-report-modal-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}
.nt-report-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.nt-sign-desk {
  width: min(var(--content), 100%);
  margin: 88px auto 0;
}
.nt-sign-desk-head { max-width: none; }
.nt-fold {
  margin-top: 16px;
  background: #ececec;
  width: 100%;
}
.nt-fold summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}
.nt-fold summary::-webkit-details-marker { display: none; }
.nt-fold summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 14px;
  color: var(--ink);
}
.nt-fold[open] summary::after { content: "–"; }
.nt-fold-body {
  padding: 0 14px 12px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: #5c5c5c;
}
.nt-fold-body p { margin: 0 0 8px; }
.nt-fold-body p:last-child { margin-bottom: 0; }
.sign-page .nt-fold {
  width: 100%;
  margin: 40px 0 0;
}
.nt-sign-desk-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  margin-top: 36px;
  align-items: start;
}
.nt-sign-preview { position: relative; min-height: 280px; }
.nt-sign-card {
  display: none;
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 22px;
}
.nt-sign-card.is-on { display: block; }
.nt-sign-range { margin: 10px 0 0; color: var(--muted); }
.nt-sign-layers {
  margin: 18px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.nt-sign-card h3 {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}
.nt-sign-card p { margin: 14px 0 0; max-width: 42ch; font-family: var(--sans); font-size: 17px; line-height: 1.65; color: var(--body); }
.nt-sign-card .continue { margin-top: 18px; color: var(--accent); border-bottom-color: var(--accent); }
.nt-sign-list { list-style: none; margin: 0; padding: 0; }
.nt-sign-list a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.nt-sign-list a:hover,
.nt-sign-list a.is-on { color: var(--accent); }
.nt-sign-num { font-size: 13px; font-weight: 700; }
.nt-sign-list-dates { color: var(--muted); font-size: 13px; }
.nt-sign-list a.is-on .nt-sign-list-dates,
.nt-sign-list a:hover .nt-sign-list-dates { color: var(--accent); }

#tools, #reporting, #sign-desk, #subscribe, #rooms, #desk {
  scroll-margin-top: 88px;
}

.nt-layers { padding: 88px 0 0; }
.nt-layers article {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
}
.nt-layers h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nt-layers p {
  margin: 12px 0 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.nt-layers-note { color: var(--muted); }

@media (max-width: 980px) {
  :root { --pad: 20px; }
  .feature-video { grid-template-columns: 1fr; gap: 28px; }
  .feature-video.is-hero { padding-top: 36px; }
  .feature-video-copy h1, .feature-video-copy h2, .page-hero h1 { font-size: 46px; }
  .podcast-grid, .article-grid, .subscribe, .nt-footer-grid,
  .nt-split, .nt-doors, .nt-reports, .nt-sign-desk-body, .nt-report-list { grid-template-columns: 1fr; }
  .nt-editorial-title, .nt-block-title { font-size: 40px; }
  .nt-door-note { font-size: 25px; }
  .nt-reports .nt-block-title { font-size: 32px; max-width: none; }
  .nt-report-list { border-left: 0; padding-left: 0; width: auto; }
  .nt-layers h2 { font-size: 32px; }
  .episode-wrap { padding-left: 24px; padding-right: 24px; }
  .episode-hero.has-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .episode-hero-media,
  .episode-hero-media .media.wide {
    max-width: none;
  }
  .episode-up-next {
    width: 100%;
    min-width: 0;
  }
  .up-next-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 12px;
  }
  .up-next-card .media,
  .up-next-card .media.wide,
  .up-next-card .media.wide.is-sm {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .podcast-index-grid .podcast-feature { grid-template-columns: 1fr; }
  .reel-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .reel-stage-media {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .reel-stage-media .media.portrait {
    width: min(400px, 100%);
    margin: 0 auto;
  }
  .reel-stage-copy {
    border: 0;
    padding: 0;
    width: 100%;
  }
  .reel-stage-copy h1 { max-width: none; }
  .episode-stage-copy h1 { max-width: none; }
  .reels-4 { justify-content: center; }
  .sign-h1-name { font-size: 64px; }
  .sign-h1-rest { font-size: 24px; }
  .day-grid { grid-template-columns: 1fr; }
  .sign-grid.is-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nt-header-inner {
    display: flex;
    justify-content: space-between;
  }
  .nt-nav { display: none; transform: none; }
  .nt-header.is-open .nt-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    transform: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 24px;
    align-items: center;
    gap: 16px;
    font-weight: 800;
  }
  .nt-menu-btn { display: block; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .reels-4, .reel-grid { justify-content: center; }
  .feature-video-copy h1, .feature-video-copy h2 { font-size: 38px; }
  .section-head h2 { font-size: 28px; }
  .nt-editorial-title, .nt-block-title, .nt-layers h2 { font-size: 30px; }
  .nt-rooms-close { font-size: 26px; }
  .nt-door-note { font-size: 25px; }
  .nt-sign-card h3 { font-size: 36px; }
  .sign-h1-name { font-size: 52px; }
  .sign-h1-rest { font-size: 22px; }
  .nt-header .nt-tagline { display: none; }
  .reel-stage-media .media.portrait {
    width: 100%;
    max-width: none;
  }
  .sign-grid.is-4 { grid-template-columns: 1fr; }
}
