@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Anonymous Pro', monospace;
  background-color: #d0d4df;
  color: #000;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

ul, li {
  list-style: none;
}

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

.header {
  background-color: #d0d4df;
  padding: 7px 40px;
  position: relative;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 58px;
}

.header__nav-link {
  font-size: 18px;
  text-transform: uppercase;
  line-height: normal;
  color: #000;
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: #bc7d9c;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header__logo-text {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  line-height: normal;
  color: #000;
}

.header__burger {
  display: none;
  width: 30px;
  height: 13px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header__burger span {
  display: block;
  height: 1px;
  background: #000;
  width: 100%;
}

.header__burger span:nth-child(2) {
  width: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  background: #d0d4df;
  z-index: 99;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #87c0d3;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav__link {
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.hero {
  background-color: #d0d4df;
  padding-bottom: 40px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero__slider {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

.hero__slider-sidebar {
  background-color: #bc7d9c;
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
}

.hero__slider-info {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  line-height: 22px;
  white-space: nowrap;
}

.hero__slider-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__slider-arrow {
  width: 48px;
  height: 48px;
}

.hero__slider-year {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 18px;
  color: #fff;
  line-height: 22px;
  white-space: nowrap;
}

.hero__slider-image {
  flex: 1;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.hero__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  background-color: #f7a5cb;
  color: #fff;
  font-family: 'Anonymous Pro', monospace;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.85;
}

.hero__text {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.18px;
  color: #000;
  flex: 1;
  columns: 1;
}

.hero__text p {
  margin-bottom: 26px;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__btn {
  flex-shrink: 0;
}

.works {
  background-color: #d0d4df;
  padding: 40px 0;
  border-bottom: 1px solid #87c0d3;
  overflow: hidden;
}

.works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.works__ticker {
  background-color: #87c0d3;
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin: 0 0 40px;
}

.works__ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.works__ticker-text {
  font-size: 64px;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.1;
  flex-shrink: 0;
  margin-right: 100px;
}

.works__ticker-star {
  width: 50px;
  height: 47px;
  flex-shrink: 0;
  margin-right: 100px;
}

.works__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.works__card {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #87c0d3;
  border-left: 1px solid #87c0d3;
  border-right: 1px solid #87c0d3;
  overflow: hidden;
  background: #d0d4df;
}

.works__card:last-child {
  border-bottom: 1px solid #87c0d3;
}

.works__card--reverse {
  flex-direction: row-reverse;
}

.works__card-image {
  width: 50%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.works__card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.works__card-content--right {
  align-items: flex-end;
  text-align: right;
}

.works__card-content--left {
  align-items: flex-start;
  text-align: left;
}

.works__card-title {
  display: flex;
  gap: 12px;
  font-size: 20px;
  line-height: 22px;
  white-space: nowrap;
}

.works__card-title-label {
  text-transform: uppercase;
  color: #000;
}

.works__card-title-year {
  color: #7f7e90;
}

.works__card-desc {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  max-width: 380px;
}

.works__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  width: 100%;
}

.quote {
  background-color: #d0d4df;
  padding: 40px 0;
  overflow: hidden;
}

.quote__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  height: 645px;
}

.quote__text {
  font-style: italic;
  font-size: 110px;
  line-height: 1.1;
  color: #000;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 17ch;
}

.quote__images {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: 390px;
  height: 475px;
  z-index: 2;
}

.quote__img {
  position: absolute;
  width: 176.5px;
  height: 201.25px;
  object-fit: cover;
  border-radius: 4px;
}

.quote__img--1 {
  transform: rotate(-16.28deg);
  left: 0;
  top: 123.63px;
}

.quote__img--2 {
  transform: rotate(-16.28deg);
  left: 164.15px;
  top: 103.96px;
}

.quote__img--3 {
  transform: rotate(20.51deg);
  left: 56.21px;
  top: 106.77px;
}

.quote__img--4 {
  transform: rotate(20.51deg);
  left: 111.96px;
  top: 104.14px;
}

.quote__img--5 {
  transform: rotate(-16.28deg);
  left: 66.4px;
  top: 128.22px;
}

.quote__img--6 {
  left: 93.88px;
  top: 138.81px;
  z-index: 5;
}

.why {
  background-color: #d0d4df;
  padding: 40px 0;
  overflow: hidden;
}

.why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why__title {
  font-style: italic;
  font-size: 64px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  line-height: 1;
  margin-bottom: 20px;
}

.why__body {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 20px;
  align-items: stretch;
}

.why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.why__card {
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why__card--purple {
  background-color: #bc7d9c;
}

.why__card--blue {
  background-color: #87c0d3;
}

.why__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 12px;
}

.why__card--purple .why__card-title {
  color: #87c0d3;
}

.why__card--blue .why__card-title {
  color: #bc7d9c;
}

.why__card-text {
  font-size: 18px;
  line-height: normal;
  color: #fff;
}

.policy {
  background-color: #d0d4df;
  padding: 60px 0;
  overflow: hidden;
}

.policy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy__title {
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  text-transform: uppercase;
  color: #bc7d9c;
  line-height: 1;
}

.policy__content {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
}

.policy__content p {
  margin-bottom: 10px;
}

.policy__content p:last-child {
  margin-bottom: 0;
}

.policy__content ul {
  list-style: disc;
  margin-bottom: 10px;
  padding-left: 27px;
}

.policy__content ul li {
  margin-bottom: 0;
  line-height: 1.2;
}

.catalog {
  background-color: #d0d4df;
  padding: 40px 0;
  overflow: hidden;
}

.catalog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.catalog__title {
  font-style: italic;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  line-height: 1;
  width: 100%;
}

.catalog__desc {
  background-color: #87c0d3;
  padding: 10px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.catalog__desc p {
  margin: 0 0 10px;
}

.catalog__desc p:last-child {
  margin-bottom: 0;
}

.catalog__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.catalog__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog__row--offset {
  gap: 20px;
  align-items: flex-start;
}

.catalog__card {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
  width: 100%;
  max-width: 390px;
  border-radius: 4px;
}

.catalog__card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.catalog__card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.game {
  background-color: #d0d4df;
  padding: 60px 0;
  overflow: hidden;
}

.game__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game__title {
  font-weight: 400;
  font-style: italic;
  font-size: 64px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}

.game__body {
  display: grid;
  grid-template-columns: 215px 1fr;
  gap: 30px;
  align-items: start;
}

.game__image {
  width: 215px;
  height: 215px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.game__panel {
  background-color: #87c0d3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game__text {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.game__panel .btn {
  align-self: flex-start;
}

.game__text p {
  margin-bottom: 10px;
}

.game__text p:last-child {
  margin-bottom: 0;
}

.catalog__decor {
  flex-shrink: 0;
}

.catalog__decor--heart {
  width: 38px;
  height: 38px;
}

.catalog__decor--star {
  width: 48px;
  height: 48px;
}

.footer {
  background-color: #d0d4df;
  border: 16px solid #87c0d3;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.footer__contact {
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__contact-title {
  font-size: 60px;
  text-transform: uppercase;
  line-height: normal;
  color: #000;
}

.footer__contact-info {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
}

.footer__contact-info p {
  margin: 0;
}

.footer__brand {
  font-size: 124px;
  text-transform: uppercase;
  line-height: 0.9;
  color: #000;
  text-align: center;
}

.footer__bar {
  background-color: #87c0d3;
  width: 100%;
  padding: 10px 100px;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__social-icon {
  width: 43px;
  height: 43px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer__link {
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  transition: opacity 0.3s;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__copy {
  font-size: 14px;
  line-height: 1.2;
  color: #000;
}

/* Cookie consent banner */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) translateY(30px);
  width: calc(100% - 80px);
  max-width: 1200px;
  background-color: #87c0d3;
  padding: 50px 60px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.cookie--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie__title {
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}

.cookie__text {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  max-width: 1000px;
  margin-bottom: 28px;
}

.cookie__buttons {
  display: flex;
  gap: 20px;
}

.cookie__btn {
  padding: 14px 60px;
  background-color: #f7a5cb;
  color: #fff;
  font-family: 'Anonymous Pro', monospace;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .catalog__title {
    font-size: 60px;
  }

  .catalog__desc {
    align-self: flex-end;
    width: 64%;
    padding: 30px;
  }

  .catalog__grid {
    position: relative;
    display: block;
    width: 100%;
    height: 660px;
    margin-top: 20px;
  }

  .catalog__card {
    position: absolute;
    max-width: none;
    margin: 0;
  }

  .catalog__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .catalog__card--p1 {
    left: 0;
    top: 20px;
    width: 200px;
    height: 200px;
  }

  .catalog__card--p4 {
    left: 36%;
    top: 10px;
    width: 330px;
    height: 380px;
  }

  .catalog__card--p5 {
    right: 0;
    top: 20px;
    width: 200px;
    height: 180px;
  }

  .catalog__card--p3 {
    left: 0;
    top: 250px;
    width: 440px;
    height: 380px;
  }

  .catalog__card--p2 {
    left: 43%;
    top: 415px;
    width: 195px;
    height: 195px;
  }

  .catalog__card--p6 {
    right: 0;
    top: 290px;
    width: 330px;
    height: 350px;
  }

  .catalog__decor {
    position: absolute;
    display: block;
    animation: catalog-star-spin 9s linear infinite;
  }

  .catalog__decor--s1 {
    left: 25%;
    top: 90px;
  }

  .catalog__decor--s2 {
    left: 62%;
    top: 480px;
  }
}

@keyframes catalog-star-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 7px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__logo-text {
    font-size: 24px;
  }

  .hero__inner {
    padding: 0 20px;
  }

  .hero__slider {
    flex-direction: column;
  }

  .hero__slider-sidebar {
    width: 100%;
    height: 110px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }

  .hero__slider-info {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 16px;
  }

  .hero__slider-meta {
    flex-direction: column;
    align-items: center;
  }

  .hero__slider-arrow {
    transform: rotate(90deg);
  }

  .hero__slider-year {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero__slider-image {
    height: 440px;
    min-height: auto;
  }

  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 20px 0;
  }

  .hero__text {
    columns: 1;
    width: 100%;
  }

  .works {
    padding: 40px 0;
  }

  .works__inner {
    padding: 0 20px;
  }

  .works__ticker {
    width: 100%;
    margin: 0 0 30px;
    padding: 16px 0;
  }

  .works__ticker-text {
    font-size: 40px;
    margin-right: 60px;
  }

  .works__ticker-star {
    width: 34px;
    height: 32px;
    margin-right: 60px;
  }

  .works__card,
  .works__card--reverse {
    flex-direction: column;
  }

  .works__card-image {
    width: 100%;
    height: 220px;
    min-height: 220px;
  }

  .works__card-desc {
    max-width: 100%;
  }

  .quote__inner {
    padding: 0 20px;
    height: 600px;
  }

  .quote__text {
    font-size: 56px;
    line-height: 0.95;
    width: 6ch;
    top: 35px;
    transform: translateX(-50%);
    z-index: 2;
  }

  .quote__images {
    transform: translate(-50%, -42%);
    z-index: 1;
  }

  .why__inner {
    padding: 0 20px;
  }

  .why__title {
    font-size: 32px;
  }

  .why__body {
    grid-template-columns: 1fr;
  }

  .why__image {
    width: 100%;
    height: 390px;
    margin: 0 auto;
  }

  .why__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why__card {
    max-width: 100%;
    width: 100%;
  }

  .policy {
    padding: 40px 0;
  }

  .policy__inner {
    padding: 0 20px;
  }

  .policy__title {
    font-size: 32px;
  }

  .game {
    padding: 40px 0;
  }

  .game__inner {
    padding: 0 20px;
  }

  .game__title {
    font-size: 32px;
  }

  .game__body {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .game__image {
    width: 100%;
    max-width: 260px;
    height: auto;
  }

  .game__panel {
    padding: 24px;
    width: 100%;
  }

  .catalog__inner {
    padding: 0 20px;
  }

  .catalog__decor {
    display: none;
  }

  .footer {
    border-width: 8px;
    padding: 40px 0;
  }

  .footer__contact {
    padding: 0 20px;
    gap: 30px;
  }

  .footer__contact-title {
    font-size: 40px;
  }

  .footer__brand {
    font-size: 44px;
    line-height: 0.9;
    padding: 0 20px;
    width: 100%;
    max-width: 390px;
  }

  .footer__bar {
    padding: 10px 20px;
  }

  .footer__bar-inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cookie {
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 30px 24px;
  }

  .cookie__title {
    font-size: 56px;
    margin-bottom: 18px;
  }

  .cookie__text {
    margin-bottom: 22px;
  }

  .cookie__btn {
    padding: 12px 36px;
  }
}

/* ===== Animations & hover effects ===== */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

/* Buttons */
.btn {
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(247, 165, 203, 0.5);
}

.btn:active {
  transform: translateY(-1px);
}

/* Header logo + nav */
.header__logo-img {
  transition: transform 0.4s ease;
}

.header__logo:hover .header__logo-img {
  transform: rotate(-12deg) scale(1.08);
}

.header__nav-link {
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #bc7d9c;
  transition: width 0.3s ease;
}

.header__nav-link:hover::after {
  width: 100%;
}

/* Works cards image zoom */
.works__card-image img {
  transition: transform 0.6s ease;
}

.works__card:hover .works__card-image img {
  transform: scale(1.06);
}

/* Why cards lift */
.why__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.why__image {
  transition: transform 0.5s ease;
}

.why__image:hover {
  transform: scale(1.02);
}

/* Quote cluster gentle float + hover */
.quote__images {
  animation: quote-float 6s ease-in-out infinite;
}

.quote__img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quote__img:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

@keyframes quote-float {
  0%, 100% {
    transform: translate(-50%, -48%);
  }
  50% {
    transform: translate(-50%, -53%);
  }
}

/* Footer */
.footer__social-icon {
  transition: transform 0.3s ease;
}

.footer__socials a:hover .footer__social-icon {
  transform: translateY(-3px) scale(1.12);
}

.footer__link {
  position: relative;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer__link:hover::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .quote__images,
  .works__ticker-track,
  .catalog__decor {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
