@font-face {
  font-family: 'Beaufort for LOL';
  src: url('../assets/fonts/beaufort-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Beaufort for LOL';
  src: url('../assets/fonts/beaufort-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Beaufort for LOL';
  src: url('../assets/fonts/beaufort-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Spiegel;
  src: url('../assets/fonts/spiegel-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Spiegel;
  src: url('../assets/fonts/spiegel-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Spiegel;
  src: url('../assets/fonts/spiegel-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #0a0a0c;
  --panel: #0f0f0f;
  --panel-2: #131315;
  --panel-3: #16171b;
  --line: rgba(196, 185, 152, 0.27);
  --line-soft: #342b20;
  --gold: #c4b998;
  --gold-dark: #937341;
  --gold-bright: #d3c7aa;
  --gold-outline: #8a6d3c;
  --shadow: 0 0 16px 14px rgba(0, 0, 0, 0.4);
  --nav-height: 80px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: #fff;
  font-family: Spiegel, Helvetica, Arial, sans-serif;
  padding-top: var(--nav-height);
}

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

button {
  font: inherit;
}

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

.riotbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  height: var(--nav-height);
  background: #131315;
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--gold-outline);
}

.riotbar__inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
}

.riotbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
}

.riotbar__brand-mark,
.footer__brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #c4a567, #5d4324);
}

.riotbar__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  font-family: 'Beaufort for LOL', serif;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.riotbar__nav a,
.riotbar__nav span {
  color: var(--gold-bright);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.riotbar__nav a:hover {
  color: #fff;
  opacity: 0.95;
}

.riotbar__nav a.dim:hover {
  color: var(--gold-bright);
}

.riotbar__nav .dim {
  color: #8a6d3c;
}

.riotbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.pill {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Beaufort for LOL', serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
  color: #0a0a0c;
}

.pill--dark {
  color: var(--gold-bright);
  background: #1a1d21;
}

.pill--cyan {
  color: #05202b;
  background: linear-gradient(180deg, #2aa7da, #2c8fbe);
}

.pill:hover {
  filter: brightness(1.05);
}

.page {
  max-width: 100vw;
  overflow: hidden;
}

.hero {
  min-height: clamp(560px, calc(60vh + 140px), 820px);
  padding-top: 8px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 45%),
    var(--bg);
}

.hero__carousel {
  position: relative;
  height: clamp(420px, 60vh, 660px);
  overflow: hidden;
  top: -8px;
}

.hero__carousel::before,
.hero__carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.hero__carousel::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.08), rgba(10, 10, 12, 0.16));
}

.hero__carousel::after {
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.12), rgba(10, 10, 12, 0.46) 92%, rgba(10, 10, 12, 0.9));
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92%, 1100px);
  height: 100%;
  transform-origin: center center;
  display: grid;
  place-items: center;
  transition: transform 0.55s ease, opacity 0.45s ease, filter 0.55s ease;
  opacity: 0;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.hero__slide.is-prev {
  z-index: 2;
}

.hero__slide.is-next {
  z-index: 2;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.22);
  box-shadow: 0 0 16px 2px rgba(0, 0, 0, 0.2);
  transition: filter 0.45s ease, box-shadow 0.45s ease, transform 0.6s ease;
}

.hero__slide.is-active .hero__image {
  filter: brightness(0.88) saturate(1.02);
  box-shadow: var(--shadow);
  transform: scale(1.14);
}

.hero__slide.is-prev .hero__image,
.hero__slide.is-next .hero__image {
  filter: grayscale(100%) brightness(0.2);
}

.hero__controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero__button,
.spotlight__arrow {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(196, 185, 152, 0.35);
  background: rgba(15, 15, 15, 0.9);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.hero__button:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: var(--gold-bright);
  background: #17191d;
}

.hero__button--prev {
  left: max(18px, calc(50% - 646px));
}

.hero__button--next {
  right: max(18px, calc(50% - 646px));
}

.hero__button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hero__descriptions {
  position: relative;
  top: -96px;
  z-index: 6;
  margin: 0 auto -92px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: visible;
}

.hero__descriptions-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero__description {
  position: relative;
  min-height: 180px;
  padding: 30px 18px 20px;
  background: var(--panel);
  border-top: 2px solid #0f0f0f;
  border-bottom: 2px solid #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  opacity: 0.38;
  transition: transform 0.55s ease, background-color 0.45s ease, opacity 0.45s ease;
}

.hero__description:hover {
  opacity: 0.68;
  background: #121418;
}

.hero__description::before,
.hero__description::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  border-left: 16.665vw solid transparent;
  border-right: 16.665vw solid transparent;
  pointer-events: none;
}

.hero__description::before {
  bottom: 100%;
  border-bottom: 30px solid var(--panel);
}

.hero__description::after {
  top: 100%;
  border-top: 30px solid var(--panel);
}

.hero__description.is-active {
  opacity: 1;
  background: var(--panel-3);
  border-top-color: var(--panel-3);
  border-bottom-color: var(--panel-3);
  transform: scale(1.05);
}

.hero__description.is-active:hover {
  background: #0e1114;
}

.hero__description.is-active::before {
  border-bottom-color: var(--panel-3);
}

.hero__description.is-active::after {
  border-top-color: var(--panel-3);
}

.hero__description .badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(196, 185, 152, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
}

.hero__description .badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-dark);
}

.hero__description h2 {
  margin: 0;
  color: var(--gold);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__description h1 {
  margin: 0;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__description p {
  margin: 0;
  min-height: 1.2em;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.major-section-header {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto 34px;
  padding: 0 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.major-section-header.is-visible {
  opacity: 1;
  transform: none;
}

.major-section-header__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  object-fit: contain;
  opacity: 0.92;
}

.major-section-header__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.major-section-header__text {
  white-space: nowrap;
}

.major-section-header__line {
  width: min(28vw, 360px);
  height: 1px;
  background: #373121;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.major-section-header.is-visible .major-section-header__line {
  transform: scaleX(1);
}

.major-section-header__diamond {
  width: 18px;
  height: 18px;
  border: 1px solid #373121;
  transform: rotate(45deg);
  position: relative;
  flex: 0 0 auto;
}

.major-section-header__diamond::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #373121;
}

.major-section-header--compact {
  opacity: 1;
  transform: none;
}

.major-section-header--compact .major-section-header__line,
.major-section-header--compact .major-section-header__diamond,
.major-section-header--compact .major-section-header__icon,
.major-section-header--compact .major-section-header__title {
  display: none;
}

.section-background {
  position: absolute;
  inset: -250px 0 70%;
  background-position: 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.18;
  pointer-events: none;
}

.section-background__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 1), rgba(10, 10, 12, 0.08), rgba(10, 10, 12, 1));
}

.section-background--latest {
  background-image: url('../assets/backgrounds/latest-bg.jpg');
  opacity: 0.15;
}

.section-background--featured {
  background-image: url('../assets/backgrounds/trending-bg.jpg');
  opacity: 0.2;
}

.latest,
.featured {
  clear: both;
  position: relative;
  padding: 58px 0 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.96) 32%, rgba(10, 10, 12, 1));
}

.section__title {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 18px;
  text-align: center;
  font-family: 'Beaufort for LOL', serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.section__title span {
  display: inline-block;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.5rem);
  letter-spacing: 0.3em;
}

.section__title::before,
.section__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 120px);
  height: 1px;
  background: #373121;
}

.section__title::before {
  left: 0;
}

.section__title::after {
  right: 0;
}

.section__title .ornament {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 18px;
  width: 26px;
  height: 26px;
  border: 1px solid #373121;
  color: #373121;
  transform: rotate(45deg);
}

.section__title .ornament::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #373121;
  transform: rotate(45deg);
  opacity: 0.85;
}

.latest__grid,
.featured__grid {
  max-width: 1280px;
  margin: 42px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 338px;
  gap: 18px;
}

.latest__card,
.featured__card {
  position: relative;
  overflow: hidden;
  border: 1px solid #32281f;
  background: #101217;
  box-shadow: var(--shadow);
  color: var(--gold);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.45s ease;
}

.latest.is-visible .latest__card,
.featured.is-visible .featured__card {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.latest__card:hover,
.featured__card:hover {
  transform: scale(1.04);
  border-color: #c3a06a;
  z-index: 2;
  box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.5);
}

.latest__card:hover .latest__image,
.featured__card:hover .featured__image {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.latest__card:hover .latest__titles h1,
.featured__card:hover .featured__titles h1 {
  color: #f0e2c2;
}

.latest__card--large,
.featured__card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.latest__image,
.featured__image {
  position: absolute;
  inset: 0 0 40px;
  background: #101217 center / cover no-repeat;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.latest__card--large .latest__image,
.featured__card--large .featured__image {
  inset: 0 0 55px;
}

.latest__bottom,
.featured__bottom {
  position: absolute;
  inset: auto 0 0;
  background: #101217;
  z-index: 2;
}

.latest__titles,
.featured__titles {
  position: relative;
  text-align: center;
  border-top: 1px solid #7e633b;
  background: #101217;
  padding: 24px 18px 20px;
}

.latest__titles .type,
.featured__titles .type {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #101217;
  border: 1px solid rgba(202, 171, 103, 0.37);
  box-shadow: 0 0 20px 12px rgba(0, 0, 0, 0.2);
}

.latest__titles .type::after,
.featured__titles .type::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3e3310, #806734, #c6b98b, #806734, #3e3310);
  z-index: -1;
}

.latest__titles .type img,
.featured__titles .type img {
  width: 22px;
  height: 22px;
}

.latest__titles h3,
.latest__titles h1,
.featured__titles h3,
.featured__titles h1 {
  margin: 0;
  text-transform: uppercase;
}

.latest__titles h3,
.featured__titles h3 {
  font-family: Spiegel, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.latest__titles h1,
.featured__titles h1 {
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.93rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.latest__view,
.featured__view {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 54px;
  background: #14181d;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, letter-spacing 0.2s ease;
}

.latest__card:hover .latest__view,
.featured__card:hover .featured__view {
  color: var(--gold-bright);
  background: #171b20;
  letter-spacing: 0.36em;
}

.latest__card--large .latest__titles,
.featured__card--large .featured__titles {
  padding-top: 34px;
  padding-bottom: 28px;
}

.section-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.is-visible {
  opacity: 1;
  transform: none;
}

.carousel-section {
  position: relative;
  clear: both;
  padding: 90px 0 96px;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: -220px 0 65%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.16;
  filter: blur(1px) brightness(0.55) saturate(0.85);
  transform: scale(1.05);
  pointer-events: none;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 1), rgba(10, 10, 12, 0.05), rgba(10, 10, 12, 1));
}

.carousel-section--champions {
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.98));
}

.carousel-section--regions {
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.98)),
    url('../assets/backgrounds/faction-spotlight.png') center 10px / auto no-repeat;
}

.carousel-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.carousel-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Beaufort for LOL', serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.carousel-header .icon {
  position: absolute;
  left: calc(50% - 16px);
  top: -42px;
  width: 32px;
  height: 32px;
}

.carousel-header .title {
  color: var(--gold-bright);
  font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.45rem);
}

.carousel-header .subtitle {
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.champion-spotlight,
.region-spotlight {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.carousel-section.is-visible .champion-spotlight,
.carousel-section.is-visible .region-spotlight {
  opacity: 1;
  transform: none;
}

.spotlight__image {
  height: min(610px, 38.5vw);
  min-height: 360px;
  background: center / cover no-repeat;
  border: 1px solid #373121;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.champion-spotlight:hover .spotlight__image,
.region-spotlight:hover .spotlight__card .image {
  transform: scale(1.03);
}

.spotlight__panel {
  position: relative;
  top: -82px;
  width: min(92%, 1080px);
  margin: 0 auto;
  background: #131315;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.champion-spotlight:hover .spotlight__panel {
  transform: translateY(-2px);
  border-color: rgba(196, 185, 152, 0.4);
}

.spotlight__panel-inner {
  margin: 8px;
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 96px 1.35fr 1fr 1fr;
  align-items: stretch;
  min-height: 88px;
}

.spotlight__panel--region .spotlight__panel-inner {
  grid-template-columns: 96px 1.7fr 0.9fr;
}

.spotlight__crest {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--gold);
  min-height: 98px;
  background: #101217;
  transition: background-color 0.3s ease;
}

.spotlight__crest img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.spotlight__name {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.spotlight__details {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid var(--gold);
}

.spotlight__panel--region .spotlight__details {
  display: none;
}

.spotlight__details div,
.spotlight__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spotlight__details div:first-child {
  border-bottom: 1px solid var(--gold);
}

.spotlight__cta {
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.spotlight__panel--region .spotlight__cta {
  border-left: 1px solid var(--gold);
}

.spotlight__cta:hover {
  color: var(--gold-bright);
  background: #171b20;
  letter-spacing: 0.36em;
}

.spotlight__view-all {
  text-align: center;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-top: -50px;
  padding-bottom: 34px;
}

.spotlight__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  color: var(--gold);
  z-index: 3;
}

.spotlight__arrow svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.spotlight__arrow:hover svg {
  transform: scale(1.12);
  filter: brightness(1.2);
}

.spotlight__arrow--prev {
  left: 18px;
}

.spotlight__arrow--next {
  right: 18px;
}

.spotlight__card {
  flex: 0 0 calc(100% - 8px);
  border: 1px solid #32281f;
  background: #101217;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.region-spotlight:hover .spotlight__card {
  transform: translateY(-2px);
  border-color: rgba(196, 185, 152, 0.42);
}

.spotlight__card .image {
  height: 380px;
  background: center / cover no-repeat;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.spotlight__card:hover .image {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.spotlight__card .footer {
  position: relative;
  padding: 18px 16px 22px;
  border-top: 1px solid #342b20;
  text-align: center;
}

.spotlight__card .footer .name {
  margin: 0;
  font-family: 'Beaufort for LOL', serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spotlight__card .footer .meta {
  margin: 6px 0 0;
  font-family: 'Beaufort for LOL', serif;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 24px 18px 38px;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.96), #0a0a0c);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links a {
  color: #b7aa8a;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 24px 0 10px;
  color: #f1e6d0;
  font-family: 'Beaufort for LOL', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer__legal {
  max-width: 920px;
  margin: 10px auto 0;
  font-size: 0.64rem;
  line-height: 1.55;
  color: #b7b7b7;
}

.footer__sub-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__sub-links a {
  color: #b7aa8a;
  transition: color 0.2s ease;
}

.footer__sub-links a:hover {
  color: #fff;
}

.footer__rating {
  display: grid;
  place-items: center;
  margin-top: 18px;
  gap: 12px;
  font-size: 0.72rem;
}

.footer__rating img {
  width: 65px;
  height: 97px;
}

.footer__rating p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 1280px) {
  .hero__button--prev {
    left: 2vw;
  }

  .hero__button--next {
    right: 2vw;
  }
}

@media (max-width: 1024px) {
  .riotbar__nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .latest__grid,
  .featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .latest__card--large,
  .featured__card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .spotlight__panel-inner {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
  }

  .spotlight__panel--region .spotlight__panel-inner {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .spotlight__name {
    grid-column: 2;
    grid-row: 1;
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--gold);
    font-size: clamp(1.1rem, 4vw, 2rem);
  }

  .spotlight__crest {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
  }

  .spotlight__details {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .spotlight__details div:first-child {
    border-bottom: 0;
    border-right: 1px solid var(--gold);
  }

  .spotlight__cta {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 64px;
    border-top: 1px solid var(--gold);
  }

  .spotlight__panel--region .spotlight__cta {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .spotlight__card .image {
    height: 300px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 68px;
  }

  .riotbar {
    height: 68px;
  }

  .riotbar__inner {
    gap: 10px;
    padding: 0 10px;
  }

  .riotbar__brand {
    min-width: auto;
    font-size: 0.82rem;
    gap: 10px;
  }

  .riotbar__nav,
  .riotbar__actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 8px;
  }

  .hero__carousel {
    height: 95vw;
    min-height: 225px;
    max-height: 420px;
  }

  .hero__slide {
    width: 100%;
    transform: translateX(-50%) !important;
  }

  .hero__slide.is-prev,
  .hero__slide.is-next {
    opacity: 0;
  }

  .hero__slide.is-active {
    transform: translateX(-50%) !important;
  }

  .hero__image {
    filter: brightness(0.55);
  }

  .hero__description {
    min-height: 122px;
    transform: none !important;
    padding: 20px 16px 16px;
  }

  .hero__descriptions {
    top: -110px;
    margin-bottom: -82px;
  }

  .hero__descriptions-inner {
    grid-template-columns: 1fr;
  }

  .hero__description::before,
  .hero__description::after {
    border-left-width: 50vw;
    border-right-width: 50vw;
  }

  .hero__description h2 {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .hero__description h1 {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .hero__description .badge {
    width: 24px;
    height: 24px;
  }

  .hero__description .badge svg {
    width: 13px;
    height: 13px;
  }

  .latest,
  .featured {
    padding-top: 36px;
  }

  .major-section-header {
    margin-bottom: 26px;
  }

  .major-section-header__title {
    gap: 10px;
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .major-section-header__line {
    width: min(20vw, 72px);
  }

  .latest__grid,
  .featured__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding-inline: 12px;
  }

  .latest__card,
  .featured__card {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 188px;
  }

  .latest__card--large,
  .featured__card--large {
    height: 188px;
  }

  .carousel-section {
    padding: 66px 0 80px;
  }

  .spotlight__arrow {
    display: none;
  }

  .spotlight__card .image {
    height: 260px;
  }

  .footer__links {
    gap: 14px 18px;
  }
}

body.danzaio-body {
  background:
    radial-gradient(circle at top, rgba(196, 185, 152, 0.1), transparent 30%),
    linear-gradient(180deg, #0a0a0c, #090b0f 26%, #0a0a0c 100%);
}

.riotbar--danzaio {
  background: rgba(19, 19, 21, 0.92);
  backdrop-filter: blur(16px);
}

.riotbar__brand--danzaio .riotbar__brand-mark {
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(196, 185, 152, 0.3);
}

.riotbar__brand--danzaio .riotbar__brand-mark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(12, 17, 22, 0.7);
  border-radius: 50%;
}

.danzaio-shell {
  position: relative;
}

.danzaio-hero {
  position: relative;
  min-height: min(980px, calc(100vh - 36px));
  overflow: hidden;
  padding: 42px 0 64px;
}

.danzaio-hero__backdrop,
.danzaio-hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.danzaio-hero__backdrop {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.72) 42%, rgba(8, 10, 13, 0.22) 64%, rgba(8, 10, 13, 0.76) 100%),
    url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Ezreal_0.jpg') center top / cover no-repeat;
  filter: saturate(0.78) brightness(0.5);
}

.danzaio-hero__texture {
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 185, 152, 0.14), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(52, 74, 111, 0.3), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.25), rgba(10, 10, 12, 0.92));
}

.danzaio-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 32px;
  align-items: center;
}

.danzaio-hero__copy {
  padding: 40px 0 22px;
}

.danzaio-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.danzaio-hero h1,
.danzaio-cta h2 {
  margin: 0;
  max-width: 11ch;
  color: #f1e5ce;
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(2.7rem, 6vw, 5.45rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.danzaio-hero__lede {
  margin: 28px 0 0;
  max-width: 34rem;
  color: #d1c5ae;
  font-size: 1.04rem;
  line-height: 1.9;
}

.danzaio-hero__actions,
.danzaio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.danzaio-hero__actions .pill,
.danzaio-cta__actions .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.danzaio-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.danzaio-stat,
.danzaio-feature-card,
.danzaio-update-card {
  border: 1px solid rgba(196, 185, 152, 0.2);
  background: rgba(11, 14, 18, 0.9);
  box-shadow: var(--shadow);
}

.danzaio-stat {
  padding: 18px 18px 20px;
}

.danzaio-stat p,
.danzaio-feature-card__kicker,
.danzaio-update-card__meta,
.danzaio-roster-card__label,
.danzaio-section-header__body {
  margin: 0;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.danzaio-stat p {
  font-size: 0.68rem;
}

.danzaio-stat h2 {
  margin: 16px 0 10px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  letter-spacing: 0.16em;
}

.danzaio-stat span {
  display: block;
  color: #c0b39a;
  font-size: 0.9rem;
  line-height: 1.7;
}

.danzaio-hero__panel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(196, 185, 152, 0.22);
  background: #111317;
  box-shadow: 0 0 26px 10px rgba(0, 0, 0, 0.44);
}

.danzaio-hero__panel-image,
.danzaio-hero__panel-overlay {
  position: absolute;
  inset: 0;
}

.danzaio-hero__panel-image {
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.08), rgba(10, 10, 12, 0.76)),
    url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Jinx_0.jpg') center top / cover no-repeat;
  transform: scale(1.03);
}

.danzaio-hero__panel-overlay {
  background:
    radial-gradient(circle at top, rgba(196, 185, 152, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(10, 10, 12, 0) 32%, rgba(10, 10, 12, 0.88) 100%);
}

.danzaio-hero__panel-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.danzaio-terminal {
  display: grid;
  gap: 10px;
  align-self: flex-start;
  padding: 16px 18px;
  background: rgba(9, 11, 15, 0.72);
  border: 1px solid rgba(196, 185, 152, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.danzaio-terminal span {
  color: #d4c8b0;
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.danzaio-hero__panel-copy {
  margin-top: auto;
  padding: 24px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.34), rgba(15, 15, 15, 0.86));
  border: 1px solid rgba(196, 185, 152, 0.2);
}

.danzaio-hero__panel-copy p {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.danzaio-hero__panel-copy h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.danzaio-hero__panel-copy span {
  display: block;
  margin-top: 14px;
  color: #d5c9b3;
  font-size: 0.95rem;
  line-height: 1.8;
}

.danzaio-signal-strip {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.danzaio-signal-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(135, 110, 67, 0.35);
  box-shadow: var(--shadow);
}

.danzaio-signal-strip__inner a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
  padding: 0 18px;
  background: #131315;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.danzaio-signal-strip__inner a:hover {
  background: #171b20;
  color: #fff2d5;
}

.danzaio-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 18px;
}

.danzaio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 185, 152, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
  opacity: 0.8;
  pointer-events: none;
}

.danzaio-section-header {
  margin-bottom: 40px;
}

.danzaio-section-header__body {
  max-width: 760px;
  margin: 18px auto 0;
  color: #baa17a;
  font-size: 0.72rem;
  line-height: 1.9;
  letter-spacing: 0.18em;
}

.danzaio-feature-grid,
.danzaio-roster-grid,
.danzaio-updates-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.danzaio-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.danzaio-feature-card,
.danzaio-update-card,
.danzaio-roster-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-animate.is-visible .danzaio-feature-card,
.section-animate.is-visible .danzaio-update-card,
.section-animate.is-visible .danzaio-roster-card {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.danzaio-feature-card {
  padding: 26px 24px 28px;
  min-height: 232px;
}

.danzaio-feature-card__kicker {
  font-size: 0.68rem;
}

.danzaio-feature-card h3,
.danzaio-update-card h3,
.danzaio-roster-card h3 {
  margin: 16px 0 14px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(1.2rem, 1vw + 0.9rem, 1.65rem);
  line-height: 1.18;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.danzaio-feature-card p:last-child,
.danzaio-update-card li,
.danzaio-roster-card p,
.danzaio-spotlight__blurb,
.danzaio-cta h2 {
  color: #d4c8b4;
  line-height: 1.8;
}

.danzaio-spotlight-wrap {
  padding-top: 100px;
}

.danzaio-spotlight-bg {
  opacity: 0.16;
  filter: blur(1px) brightness(0.46) saturate(0.82);
}

.danzaio-spotlight__image {
  filter: brightness(0.82) saturate(0.88);
}

.danzaio-spotlight__panel {
  padding-bottom: 22px;
}

.danzaio-spotlight__panel-inner {
  margin-bottom: 16px;
}

.danzaio-spotlight__blurb {
  margin: 0 18px 0;
  text-align: center;
  font-size: 0.96rem;
}

.danzaio-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.danzaio-roster-grid .danzaio-roster-card:first-child {
  grid-column: span 2;
}

.danzaio-roster-card {
  overflow: hidden;
  border: 1px solid rgba(196, 185, 152, 0.2);
  background: #101217;
  box-shadow: var(--shadow);
}

.danzaio-roster-card__image {
  height: 320px;
  background-color: #101217;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.danzaio-roster-grid .danzaio-roster-card:first-child .danzaio-roster-card__image {
  height: 420px;
}

.danzaio-roster-card:hover .danzaio-roster-card__image {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.danzaio-roster-card__body {
  padding: 18px 18px 24px;
  border-top: 1px solid rgba(196, 185, 152, 0.16);
  background: linear-gradient(180deg, rgba(11, 14, 18, 0.94), rgba(11, 14, 18, 1));
}

.danzaio-roster-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.danzaio-roster-card__label {
  font-size: 0.68rem;
}

.danzaio-roster-card__badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 185, 152, 0.22);
}

.danzaio-roster-card__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-dark);
}

.danzaio-roster-card h4 {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.danzaio-section--updates {
  padding-bottom: 52px;
}

.danzaio-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.danzaio-update-card {
  padding: 24px;
}

.danzaio-update-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.66rem;
}

.danzaio-update-card ul {
  margin: 0;
  padding-left: 18px;
}

.danzaio-update-card li + li {
  margin-top: 10px;
}

.danzaio-cta {
  padding: 36px 18px 90px;
}

.danzaio-cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 30px 38px;
  border: 1px solid rgba(196, 185, 152, 0.2);
  background:
    radial-gradient(circle at 20% 0%, rgba(196, 185, 152, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.76), rgba(10, 10, 12, 0.94)),
    url('../assets/backgrounds/trending-bg.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}

.danzaio-cta h2 {
  margin-top: 16px;
  max-width: 20ch;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.02;
}

@media (max-width: 1200px) {
  .danzaio-hero__inner {
    grid-template-columns: 1fr;
  }

  .danzaio-hero__panel {
    min-height: 620px;
  }

  .danzaio-feature-grid,
  .danzaio-roster-grid,
  .danzaio-updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .danzaio-roster-grid .danzaio-roster-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  body.danzaio-body {
    padding-top: 68px;
  }

  .danzaio-hero {
    min-height: auto;
    padding: 18px 0 42px;
  }

  .danzaio-hero__inner {
    padding: 0 12px;
  }

  .danzaio-hero__copy {
    padding-top: 18px;
  }

  .danzaio-hero h1,
  .danzaio-cta h2 {
    max-width: none;
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .danzaio-hero__stats,
  .danzaio-signal-strip__inner,
  .danzaio-feature-grid,
  .danzaio-roster-grid,
  .danzaio-updates-grid {
    grid-template-columns: 1fr;
  }

  .danzaio-signal-strip {
    margin-top: 0;
  }

  .danzaio-signal-strip__inner a {
    min-height: 64px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .danzaio-section,
  .danzaio-spotlight-wrap {
    padding-top: 66px;
  }

  .danzaio-feature-grid,
  .danzaio-roster-grid,
  .danzaio-updates-grid,
  .danzaio-section-header {
    padding-inline: 12px;
  }

  .danzaio-roster-card__image {
    height: 260px;
  }

  .danzaio-roster-grid .danzaio-roster-card:first-child {
    grid-column: auto;
  }

  .danzaio-roster-grid .danzaio-roster-card:first-child .danzaio-roster-card__image {
    height: 260px;
  }

  .danzaio-hero__panel {
    min-height: 480px;
  }

  .danzaio-terminal,
  .danzaio-hero__panel-copy,
  .danzaio-cta__inner {
    padding: 18px;
  }

  .danzaio-spotlight__blurb {
    margin-inline: 14px;
    font-size: 0.88rem;
  }

  .danzaio-cta {
    padding-inline: 12px;
    padding-bottom: 70px;
  }
}

.danzaio-section--catalog {
  padding-bottom: 26px;
}

.danzaio-catalog-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.danzaio-catalog-card {
  overflow: hidden;
  border: 1px solid rgba(196, 185, 152, 0.18);
  background: #101217;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.section-animate.is-visible .danzaio-catalog-card {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.danzaio-catalog-card:hover {
  border-color: rgba(196, 185, 152, 0.38);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.danzaio-catalog-card__image {
  height: 270px;
  background-color: #101217;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.danzaio-catalog-card:hover .danzaio-catalog-card__image {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.danzaio-catalog-card__body {
  padding: 18px 18px 24px;
  border-top: 1px solid rgba(196, 185, 152, 0.16);
  background: linear-gradient(180deg, rgba(11, 14, 18, 0.94), rgba(11, 14, 18, 1));
}

.danzaio-catalog-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.danzaio-catalog-card__tag {
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.danzaio-catalog-card__badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 185, 152, 0.22);
}

.danzaio-catalog-card__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-dark);
}

.danzaio-catalog-card h3 {
  margin: 16px 0 12px;
  color: var(--gold-bright);
  font-family: 'Beaufort for LOL', serif;
  font-size: clamp(1.05rem, 0.7vw + 0.92rem, 1.35rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.danzaio-catalog-card h4 {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: 'Beaufort for LOL', serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.danzaio-catalog-card p {
  margin: 0;
  color: #d4c8b4;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .danzaio-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .danzaio-catalog-grid {
    grid-template-columns: 1fr;
    padding-inline: 12px;
  }

  .danzaio-catalog-card__image {
    height: 250px;
  }
}
