:root {
  --bg-dark: #212e3f;
  --bg-darker: #1a2431;
  --bg-accent: #2b2016;
  --brand-primary: #ed9b33;
  --brand-secondary: #f4c475;
  --text-light: #f0f0f0;
  --text-muted: rgba(240, 240, 240, 0.7);
  --text-dark: #161616;
  --container-width: 1160px;
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, rgba(237, 155, 51, 0.08), transparent 55%), var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--brand-primary);
}

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

.container {
  width: min(calc(100% - 3rem), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 2, 2, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-logo img {
  height: 48px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--text-light);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(5, 7, 9, 0.95) 65%),
              url("../images/hero.jpg") center/cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 36, 49, 0.2) 0%, rgba(26, 36, 49, 0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.hero__logo {
  width: min(320px, 60vw);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
}

.hero__tagline {
  font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
  max-width: 42rem;
  margin: 0;
}

.hero__fan-note {
  max-width: 40rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__decor {
  position: absolute;
  width: min(320px, 40vw);
  opacity: 0.65;
}

.hero__decor--top {
  top: 2rem;
  left: 5%;
}

.hero__decor--bottom {
  bottom: 1rem;
  right: 8%;
}

.section--media {
  background: var(--bg-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn--primary {
  background: var(--brand-primary);
  color: #1a140c;
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--brand-secondary);
}

.btn--ghost {
  border: 2px solid rgba(237, 155, 51, 0.6);
  color: var(--text-light);
}

.btn--ghost:hover,
.btn--ghost:focus {
  border-color: var(--brand-primary);
}

.section {
  padding: 5rem 0;
  background: var(--bg-dark);
  position: relative;
}

.section--dark {
  background: rgba(28, 38, 52, 0.92);
}

.section--accent {
  background: var(--bg-accent);
}

.section__title {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section__title--small {
  font-size: clamp(1.6rem, 1.6vw + 1.2rem, 2rem);
  letter-spacing: 0.08em;
}

.section__intro {
  max-width: 44rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section__cta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
}

.section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: lighten;
}

.section--features,
.section--characters {
  overflow: hidden;
}

.section--intro {
  background: radial-gradient(circle at top left, rgba(237, 155, 51, 0.1), transparent 40%), rgba(14, 18, 26, 0.92);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.section--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 19, 27, 0.9) 0%, rgba(14, 19, 27, 0.65) 60%, rgba(237, 155, 51, 0.12) 100%), url("../images/hero.jpg") top right/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.section--intro .container {
  width: min(100%, 1500px);
}

.intro {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(400px, 520px) minmax(580px, 960px);
  align-items: center;
  justify-content: space-between;
  justify-items: start;
  position: relative;
  z-index: 1;
}

.intro__text {
  display: grid;
  gap: 1.5rem;
  text-align: left;
  align-content: start;
  justify-items: start;
  width: 100%;
  max-width: 520px;
}

.intro__body p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
}

.intro__meta {
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.intro__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--brand-secondary);
}

.intro__value {
  font-weight: 600;
}

.intro__video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  background: #000 url("../images/news-launch.jpg") center/cover no-repeat;
  width: clamp(700px, 62vw, 960px);
  aspect-ratio: 16 / 9;
}

.intro__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 9, 0.05) 0%, rgba(5, 7, 9, 0.35) 100%);
  pointer-events: none;
}

.intro__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.intro__decor {
  max-width: 280px;
  justify-self: center;
  opacity: 0.8;
}

.intro__decor--top {
  margin-bottom: 1.5rem;
}

.intro__decor--bottom {
  margin-top: 1.5rem;
}

.features {
  display: grid;
  gap: 2.5rem;
}

.feature {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  background: rgba(7, 9, 12, 0.82);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.feature__media {
  position: relative;
}

.feature__video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 35px rgba(0, 0, 0, 0.35);
  background: #000;
}

.feature__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature__body p {
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.media-card {
  background: rgba(8, 10, 13, 0.85);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.media-card img {
  width: 100%;
  height: auto;
}

.media-card figcaption {
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.characters-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.character-card {
  background: rgba(6, 7, 10, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
}

.character-card img {
  width: 100%;
  height: auto;
}

.character-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.character-card__body h3 {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.character-card__body p {
  margin: 0;
  color: var(--text-muted);
}

.section--wishlist {
  background: linear-gradient(135deg, rgba(12, 8, 4, 0.95), rgba(5, 7, 9, 0.95));
}

.section--news {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(24, 33, 46, 0.92), rgba(24, 33, 46, 0.82));
}

.section--news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(237, 155, 51, 0.18), transparent 55%), url("../images/kf-background.jpg") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.news-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, rgba(54, 74, 102, 0.45), rgba(32, 45, 63, 0.4)), url("../images/hero.jpg") center/cover fixed no-repeat;
  position: relative;
}

.news-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.news-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.08em;
}

.news-hero__intro {
  max-width: 48rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.news-section {
  background: linear-gradient(180deg, rgba(21, 30, 43, 0.8) 0%, rgba(15, 21, 30, 0.78) 60%, rgba(15, 21, 30, 0.85) 100%), url("../images/characters-bg.jpg") center/cover fixed no-repeat;
  padding: 4rem 0 6rem;
}

.news-section__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-section__card {
  background: rgba(33, 45, 60, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: grid;
  gap: 0;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
}

.news-section__media img {
  width: 100%;
  height: auto;
  display: block;
}

.news-section__body {
  padding: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.news-section__body time {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.news-section__body h2 {
  margin: 0;
  font-size: 1.35rem;
}

.news-section__body h2 a {
  color: var(--text-light);
}

.news-section__body h2 a:hover {
  color: var(--brand-secondary);
}

.news-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.news-section__cta::after {
  content: "→";
  transition: var(--transition);
}

.news-section__cta:hover::after {
  transform: translateX(4px);
}

.news-article__hero {
  background: linear-gradient(180deg, rgba(21, 29, 40, 0.9) 0%, rgba(21, 29, 40, 0.7) 70%, rgba(21, 29, 40, 0.95) 100%);
  position: relative;
}

.news-article__image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  opacity: 0.9;
}

.news-article__meta {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  display: grid;
  gap: 0.75rem;
}

.news-article__meta time {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.news-article__meta h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.news-article__content {
  padding: 3rem 0 5rem;
  max-width: 860px;
}

.news-article__content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.5rem 0;
}

.media-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, rgba(34, 44, 60, 0.5), rgba(26, 36, 49, 0.5)), url("../images/hero.jpg") center/cover fixed no-repeat;
}

.media-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.08em;
}

.media-hero__intro {
  max-width: 50rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.media-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, rgba(21, 30, 43, 0.92), rgba(15, 21, 30, 0.88));
}

.media-section__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.media-section__card {
  background: rgba(37, 48, 64, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
  gap: 0;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
}

.media-section__thumb {
  position: relative;
  display: block;
}

.media-section__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.media-section__play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.65);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--text-light);
}

.media-section__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.media-section__body time {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.media-section__body h2 {
  margin: 0;
  font-size: 1.35rem;
}

.media-section__body h2 a {
  color: var(--text-light);
}

.media-section__body h2 a:hover {
  color: var(--brand-secondary);
}

.media-section__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.media-article__hero {
  background: linear-gradient(180deg, rgba(23, 31, 43, 0.92), rgba(23, 31, 43, 0.85));
}

.media-article__player {
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.media-article__player iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.4);
}

.media-article__meta {
  padding: 2rem 0 3rem;
  display: grid;
  gap: 0.85rem;
}

.media-article__meta time {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.media-article__meta h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
}

.media-article__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.media-article__content {
  padding: 3rem 0 5rem;
  max-width: 860px;
}

.media-article__content p {
  margin-bottom: 1.25rem;
}

.media-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.media-carousel::-webkit-scrollbar {
  height: 6px;
}

.media-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.media-carousel__item {
  min-width: 260px;
  background: rgba(30, 40, 54, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.media-carousel__item img {
  width: 100%;
  display: block;
}

.media-carousel__body {
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.media-carousel__body h3 {
  margin: 0;
  font-size: 1rem;
}

.media-carousel__body time {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.media-carousel__body a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.wishlist {
  display: grid;
  gap: 2.5rem;
}

.wishlist__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.3rem);
}

.wishlist__header p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.wishlist__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.wishlist__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(10, 12, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.wishlist__card img {
  width: 32px;
  height: 32px;
}

.news-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.news-card {
  background: rgba(8, 10, 13, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
}

.news-card__thumb {
  width: 100%;
  height: auto;
}

.news-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.news-card__body time {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.news-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.news-card__link::after {
  content: "→";
  transition: var(--transition);
}

.news-card__link:hover::after {
  transform: translateX(4px);
}

.socials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.social-card {
  background: rgba(12, 8, 4, 0.75);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.35rem;
  color: var(--text-light);
}

.social-card:hover,
.social-card:focus {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

.social-card__label {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-card__link {
  color: var(--text-muted);
}

.qa-list {
  display: grid;
  gap: 1rem;
}

.qa-list details {
  background: rgba(10, 12, 15, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
}

.qa-list summary {
  font-weight: 600;
  cursor: pointer;
}

.qa-list summary::marker {
  color: var(--brand-primary);
}

.section--requirements .requirements {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.requirements__card {
  background: rgba(6, 7, 10, 0.88);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.requirements__card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.requirements__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page {
  padding: 5rem 0;
  background: var(--bg-darker);
  min-height: 70vh;
}

.page__inner {
  max-width: 760px;
}

.page h1 {
  margin-top: 0;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
}

.page__meta {
  margin-top: -0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page__content > * + * {
  margin-top: 1rem;
}

.site-footer {
  background: #040506;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 2rem;
}

.site-footer__content {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-footer__disclaimer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .feature {
    padding: 1.5rem;
  }

  .intro {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
  }

  .intro__video {
    width: min(100%, 720px);
  }
}

@media (max-width: 720px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__decor {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .intro__decor {
    max-width: 220px;
  }

  .intro__video {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-logo img {
    height: 42px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__video {
    filter: brightness(0.45);
  }

  .wishlist__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
