:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --teal: #2dd4bf;
  --teal-dark: #0f766e;
  --amber: #f59e0b;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 72%);
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  max-width: 1280px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.28);
  font-size: 16px;
  padding-left: 2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.brand-copy em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: var(--muted-strong);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: rgba(45, 212, 191, 0.1);
}

.header-search,
.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.filter-search input {
  width: min(24vw, 270px);
  border: 1px solid rgba(148, 163, 184, 0.24);
  outline: none;
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.55);
  padding: 10px 14px;
}

.header-search input:focus,
.filter-search input:focus {
  border-color: rgba(45, 212, 191, 0.72);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}

.header-search button,
.filter-search button,
.btn {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.filter-search button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.28);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.92);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #000;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 24px 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-desc,
.detail-copy p,
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-tags,
.tag-row,
.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.genre-list span {
  border: 1px solid rgba(45, 212, 191, 0.26);
  border-radius: 999px;
  color: #ccfbf1;
  background: rgba(20, 184, 166, 0.1);
  padding: 6px 10px;
  font-size: 12px;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(30, 41, 59, 0.84);
  box-shadow: none;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 116px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 4px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dot.is-active {
  background: var(--teal);
}

.hero-mini-list {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}

.hero-mini-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px 10px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(16px);
  padding: 8px;
}

.hero-mini-list span {
  grid-row: span 2;
  width: 56px;
  height: 48px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.hero-mini-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.hero-mini-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.category-strip {
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.9));
}

.category-strip-inner,
.content-section,
.detail-section,
.player-layout,
.page-hero-inner,
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.category-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.22), transparent 55%),
    rgba(15, 23, 42, 0.76);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.38);
}

.category-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.category-tile span {
  color: var(--muted);
  line-height: 1.6;
}

.content-section {
  padding-top: 58px;
  padding-bottom: 34px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-more {
  flex-shrink: 0;
  color: var(--teal);
  font-weight: 700;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.36);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(15, 23, 42, 0.95));
}

.poster-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.32s ease;
}

.movie-card:hover .poster-art {
  transform: scale(1.1);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.08));
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.poster-year {
  right: 12px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.66);
}

.rank-badge {
  left: 12px;
  color: #111827;
  background: linear-gradient(135deg, #facc15, #fb923c);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #042f2e;
  background: rgba(94, 234, 212, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 17px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta span:last-child {
  color: #fde68a;
}

.movie-card h3 {
  margin: 9px 0 0;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.movie-card h3 a:hover {
  color: var(--teal);
}

.movie-card p {
  min-height: 48px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tag-row {
  margin-top: 14px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.82)),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.22), transparent 40rem);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  padding-top: 78px;
  padding-bottom: 72px;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.64);
  padding: 16px;
}

.filter-panel.compact {
  justify-content: flex-start;
}

.filter-search input {
  width: min(48vw, 460px);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-filters button {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.42);
  padding: 9px 12px;
  cursor: pointer;
}

.quick-filters button:hover,
.quick-filters button.active {
  color: var(--teal);
  border-color: rgba(45, 212, 191, 0.42);
}

.empty-state {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
  padding: 24px;
  text-align: center;
}

.ranking-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.rank-line a {
  display: grid;
  grid-template-columns: 54px 86px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.68);
  padding: 12px;
}

.rank-line a:hover {
  border-color: rgba(45, 212, 191, 0.38);
}

.rank-number {
  color: #fde68a;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-thumb {
  width: 86px;
  height: 58px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: rgba(45, 212, 191, 0.12);
}

.rank-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rank-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.rank-copy em,
.rank-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-style: normal;
}

.rank-score {
  color: #fde68a;
  font-size: 18px;
  font-weight: 900;
}

.detail-hero {
  min-height: 620px;
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  max-width: 1280px;
  min-height: 620px;
  margin: 0 auto;
  padding: 78px 24px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(40px, 6vw, 78px);
}

.player-section {
  margin-top: -82px;
  position: relative;
  z-index: 3;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  border: none;
  color: var(--text);
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.24), rgba(2, 6, 23, 0.62));
  cursor: pointer;
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  font-size: 30px;
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.32);
}

.player-overlay strong {
  font-size: 18px;
}

.player-info {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.82);
  padding: 24px;
  box-shadow: var(--shadow);
}

.player-info h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.player-info dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.player-info dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding-bottom: 10px;
}

.player-info dt {
  color: var(--muted);
}

.player-info dd {
  margin: 0;
  text-align: right;
  color: var(--muted-strong);
}

.detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 44px;
  padding-bottom: 10px;
}

.text-panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.68);
  padding: 28px;
}

.text-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.text-panel p:not(.eyebrow) {
  color: var(--muted-strong);
  line-height: 1.95;
  font-size: 16px;
}

.sitemap-section {
  display: grid;
  gap: 18px;
}

.sitemap-group {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.62);
  padding: 20px;
}

.sitemap-group h2 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 18px;
}

.sitemap-group div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 16px;
}

.sitemap-group a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted-strong);
}

.sitemap-group a:hover {
  color: var(--teal);
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-mini-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-mini-list a:nth-child(n + 4) {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 66px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.98);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-slider {
    min-height: 76vh;
  }

  .hero-content {
    padding: 98px 18px 150px;
  }

  .hero-control {
    display: none;
  }

  .hero-mini-list {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-mini-list a:nth-child(n + 2) {
    display: none;
  }

  .category-strip-inner,
  .movie-grid,
  .detail-section,
  .player-layout {
    grid-template-columns: 1fr;
  }

  .category-strip-inner,
  .content-section,
  .detail-section,
  .player-layout,
  .page-hero-inner,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head,
  .filter-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search input {
    width: 100%;
  }

  .filter-search {
    width: 100%;
  }

  .detail-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 16px 120px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .player-section {
    margin-top: -72px;
  }

  .player-shell,
  .movie-video {
    min-height: 260px;
  }

  .rank-line a {
    grid-template-columns: 38px 68px 1fr;
  }

  .rank-score {
    display: none;
  }

  .rank-thumb {
    width: 68px;
    height: 52px;
  }

  .rank-copy small {
    display: none;
  }

  .sitemap-group div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .movie-grid {
    gap: 16px;
  }

  .movie-card p {
    min-height: auto;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.05em;
  }

  .footer-inner {
    display: grid;
  }
}
