/*!
Theme Name: modern industrial landing
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: modern-industrial-landing
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #030303;
  color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  border-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

table {
  border-collapse: collapse;
}

.container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}



/* Hero Section */

.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 154, 37, 0.08), transparent);
  transform: skewX(-18deg);
  animation: heroLight 7s ease-in-out infinite;
  pointer-events: none;
}

.hero__bg-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 86px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(216, 154, 37, 0.08) 18%,
    rgba(216, 154, 37, 0.5) 52%,
    rgba(216, 154, 37, 0.08) 82%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(217, 154, 37, 0.22);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(100% - 76px, 1220px);
  margin: 0 auto;
}

.hero__header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeDown 0.75s ease forwards;
}

.hero__logo {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.hero__logo:hover {
  transform: translateY(-2px);
}

.hero__logo-title {
  color: #d99a25;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(217, 154, 37, 0.25);
}

.hero__logo-subtitle {
  margin-top: 7px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2.15px;
  text-transform: uppercase;
}

.hero__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__nav > a:not(.hero__header-btn) {
  position: relative;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero__nav > a:not(.hero__header-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: #d99a25;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: 0.25s ease;
}

.hero__nav > a:not(.hero__header-btn):hover {
  color: #d99a25;
  transform: translateY(-2px);
}

.hero__nav > a:not(.hero__header-btn):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero__header-btn,
.hero__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__header-btn {
  min-width: 138px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b97d1f;
  color: #d99a25;
  background: rgba(217, 154, 37, 0.04);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.25s ease;
}

.hero__header-btn::before,
.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  transition: left 0.55s ease;
}

.hero__header-btn:hover::before,
.hero__btn:hover::before {
  left: 120%;
}

.hero__header-btn:hover {
  background: #d99a25;
  color: #030303;
  box-shadow: 0 0 24px rgba(217, 154, 37, 0.28);
  transform: translateY(-2px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  min-height: 474px;
}

.hero__content {
  position: relative;
  z-index: 5;
  padding: 22px 0 54px;
}

.hero__title {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: 50px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -2.6px;
  animation: fadeUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero__title span {
  display: block;
  color: #d99a25;
  text-shadow: 0 0 26px rgba(217, 154, 37, 0.25);
}

.hero__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__tags span {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.hero__tags i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d99a25;
  box-shadow: 0 0 12px rgba(217, 154, 37, 0.8);
  animation: dotPulse 1.8s ease-in-out infinite;
}

.hero__text {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  animation: fadeUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  animation: fadeUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero__btn {
  min-width: 136px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b97d1f;
  color: #d99a25;
  background: rgba(0, 0, 0, 0.28);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.25s ease;
}

.hero__btn:hover {
  background: #d99a25;
  color: #030303;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217, 154, 37, 0.22);
}

.hero__btn--filled {
  background: #d99a25;
  color: #030303;
  border-color: #d99a25;
  box-shadow: 0 0 24px rgba(217, 154, 37, 0.18);
}

.hero__btn--filled:hover {
  background: #f0af34;
  border-color: #f0af34;
}

.hero__image {
  position: relative;
  height: 474px;
  align-self: stretch;
  background: transparent;
}

.hero__image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 78%;
  height: 80%;
  background: radial-gradient(circle, rgba(217, 154, 37, 0.17), transparent 62%);
  filter: blur(20px);
  z-index: 1;
}

.hero__spool {
  position: absolute;
  right: 0;
  bottom: -144px;
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  z-index: 2;

  /* ОСЬ ГОЛОВНЕ */
  mix-blend-mode: screen;

  /* затемнення країв */
  mask-image: radial-gradient(circle at center, #000 62%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, #000 62%, transparent 100%);

  filter:
    drop-shadow(0 24px 42px rgba(0,0,0,.75))
    contrast(1.04);

  animation: spoolFloat 4.5s ease-in-out infinite;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageIn {
  from {
    opacity: 0;
    transform: translateX(35px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes spoolFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.65);
    opacity: 1;
  }
}

@keyframes heroLight {
  0% {
    left: -45%;
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  70% {
    left: 115%;
    opacity: 0;
  }
  100% {
    left: 115%;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero__bg-line {
    top: 120px;
  }

  .hero .container {
    width: min(100% - 32px, 1220px);
  }

  .hero__header {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }

  .hero__nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 38px 0 18px;
  }

  .hero__title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .hero__tags {
    flex-wrap: wrap;
  }

  .hero__image {
    height: 360px;
  }

  .hero__image::before {
    right: 50%;
    transform: translateX(50%);
    width: 520px;
  }

  .hero__spool {
    right: 50%;
    bottom: 0;
    width: 560px;
    height: 360px;
    transform: translateX(50%);
    object-position: center bottom;
    animation: none;
  }
}

@media (max-width: 575px) {
  .hero__logo-title {
    font-size: 24px;
  }

  .hero__logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .hero__nav {
    width: 100%;
    gap: 16px;
  }

  .hero__header-btn {
    min-width: 118px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__image {
    height: 300px;
  }

  .hero__spool {
    width: 460px;
    height: 300px;
  }
}

.hero__btn--filled {
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(217,154,37,.35);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(217,154,37,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217,154,37,0);
  }
}

/* END HERO */

/* PRODUCTS */

.products {
  padding: 78px 0 86px;
  background: #f4f3f0;
  color: #090909;
}

.products__container {
  width: min(100% - 76px, 1220px);
  margin: 0 auto;
}

.products__head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.products__eyebrow {
  position: relative;
  display: inline-block;
  padding-top: 14px;
  color: #d99a25;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.products__eyebrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 36px;
  height: 2px;
  background: #d99a25;
  transform: translateX(-50%);
}

.products__title {
  margin: 10px 0 0;
  color: #080808;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products__card {
  position: relative;
  min-height: 430px;
  background: #fff;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.035);
  transform: translateY(0);
  transition: 0.35s ease;
}

.products__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(217, 154, 37, 0);
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 4;
}

.products__card::after {
  content: "";
  position: absolute;
  left: -70%;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 154, 37, 0.1),
    transparent
  );
  transform: skewX(-18deg);
  transition: 0.65s ease;
  pointer-events: none;
  z-index: 3;
}

.products__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.1);
}

.products__card:hover::before {
  border-color: rgba(217, 154, 37, 0.55);
}

.products__card:hover::after {
  left: 120%;
}

.products__image {
  position: relative;
  height: 210px;
  margin: 20px 20px 0;
  background:
    radial-gradient(circle at center, rgba(217,154,37,0.08), transparent 62%),
    #fafafa;
  border-radius: 6px;
  overflow: hidden;
}

.products__image::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 10px;
  height: 24px;
  background: rgba(0,0,0,0.16);
  filter: blur(18px);
  opacity: 0.35;
  transition: 0.35s ease;
}

.products__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: 0.45s ease;
}

.products__card:hover .products__image img {
  transform: scale(1.08) translateY(-2px);
}

.products__card:hover .products__image::after {
  opacity: 0.55;
  transform: scaleX(1.08);
}

.products__content {
  position: relative;
  z-index: 5;
  padding: 28px 28px 30px;
}

.products__content h3 {
  margin: 0;
  color: #090909;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
}

.products__content p {
  margin: 14px 0 0;
  max-width: 285px;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.products__content a {
  position: relative;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d99a25;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  text-decoration: none;
}

.products__content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #d99a25;
  transition: 0.25s ease;
}

.products__content a span {
  display: inline-block;
  transition: 0.25s ease;
}

.products__content a:hover::after {
  width: 100%;
}

.products__content a:hover span {
  transform: translateX(6px);
}

@media (max-width: 991px) {
  .products {
    padding: 64px 0;
  }

  .products__container {
    width: min(100% - 32px, 1220px);
  }

  .products__title {
    font-size: 32px;
  }

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

  .products__card {
    min-height: auto;
  }

  .products__image {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .products__title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .products__image {
    height: 210px;
    margin: 16px 16px 0;
  }

  .products__content {
    padding: 24px 22px 26px;
  }

  .products__content h3 {
    font-size: 25px;
  }

  .products__content p {
    font-size: 15px;
  }
}

/* END PRODUCTS */
/* BENEFITS */

.benefits {
  position: relative;
  padding: 58px 0 64px;
  background: #f4f3f0;
  color: #090909;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 154, 37, 0.55),
    transparent
  );
}

.benefits__container {
  width: min(100% - 76px, 1220px);
  margin: 0 auto;
}

.benefits__head {
  margin-bottom: 30px;
  text-align: center;
}

.benefits__eyebrow {
  position: relative;
  display: inline-block;
  padding-top: 15px;
  color: #d99a25;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.benefits__eyebrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 38px;
  height: 2px;
  background: #d99a25;
  transform: translateX(-50%);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.benefits__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.045);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.benefits__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(217, 154, 37, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefits__item::after {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 154, 37, 0.12),
    transparent
  );
  transform: skewX(-18deg);
  transition: 0.65s ease;
  pointer-events: none;
}

.benefits__item:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 154, 37, 0.35);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.09);
}

.benefits__item:hover::before {
  opacity: 1;
}

.benefits__item:hover::after {
  left: 120%;
}

.benefits__icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.benefits__item:hover .benefits__icon img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 8px 16px rgba(217, 154, 37, 0.18));
}

.benefits__content {
  position: relative;
  z-index: 2;
}

.benefits__content h3 {
  margin: 0;
  color: #080808;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.45px;
}

.benefits__content p {
  margin: 8px 0 0;
  max-width: 265px;
  color: #2f2f2f;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 991px) {
  .benefits {
    padding: 52px 0;
  }

  .benefits__container {
    width: min(100% - 32px, 1220px);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits__item {
    grid-template-columns: 68px 1fr;
    min-height: auto;
    padding: 22px 24px;
  }

  .benefits__icon {
    width: 68px;
    height: 68px;
  }

  .benefits__icon img {
    width: 68px;
    height: 68px;
  }

  .benefits__content p {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .benefits {
    padding: 44px 0 48px;
  }

  .benefits__head {
    margin-bottom: 24px;
  }

  .benefits__item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 20px;
  }

  .benefits__icon {
    width: 74px;
    height: 74px;
  }

  .benefits__icon img {
    width: 74px;
    height: 74px;
  }

  .benefits__content h3 {
    font-size: 19px;
  }

  .benefits__content p {
    font-size: 14px;
  }
}

/* END BENEFITS */


/* FOOTER */

.site-footer {
  position: relative;
  background: #030303;
  color: #fff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,154,37,0.12), transparent 28%),
    radial-gradient(circle at 84% 40%, rgba(217,154,37,0.08), transparent 32%);
  pointer-events: none;
}

.site-footer__top {
  position: relative;
  z-index: 2;
  padding: 0;
  background: #090909;
}

.site-footer__container {
  width: min(100% - 76px, 1220px);
  margin: 0 auto;
}

.site-footer__top .site-footer__container {
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: stretch;
  min-height: 240px;
}

.site-footer__contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1px 1fr;
  gap: 34px;
  align-items: center;
  padding: 42px 44px 42px 0;
  animation: footerFadeLeft 0.8s ease both;
}

.site-footer__intro,
.site-footer__info {
  position: relative;
  z-index: 2;
}

.site-footer__eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: #d99a25;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.site-footer__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #d99a25;
  box-shadow: 0 0 18px rgba(217,154,37,0.5);
}

.site-footer__text {
  max-width: 235px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.site-footer__btn {
  position: relative;
  min-width: 170px;
  min-height: 48px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #030303;
  background: #d99a25;
  border: 1px solid #d99a25;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-footer__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.site-footer__btn:hover {
  transform: translateY(-3px);
  background: #f0af34;
  box-shadow: 0 14px 32px rgba(217,154,37,0.26);
}

.site-footer__btn:hover::before {
  left: 120%;
}

.site-footer__btn span {
  font-size: 16px;
  line-height: 1;
}

.site-footer__divider {
  width: 1px;
  height: 128px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,0.18),
    rgba(217,154,37,0.45),
    transparent
  );
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__info-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__info-link:hover {
  color: #d99a25;
  transform: translateX(4px);
}

.site-footer__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d99a25;
  font-size: 19px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(217,154,37,0.35);
}

.site-footer__image {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  animation: footerFadeRight 0.9s ease both;
}

.site-footer__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090909 0%, rgba(9,9,9,0.35) 22%, transparent 48%),
    linear-gradient(180deg, rgba(3,3,3,0.05), rgba(3,3,3,0.35));
  z-index: 2;
  pointer-events: none;
}

.site-footer__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(217,154,37,0.22);
  box-shadow: inset 0 0 42px rgba(0,0,0,0.55);
  z-index: 3;
  pointer-events: none;
}

.site-footer__image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.05) brightness(0.86);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.site-footer:hover .site-footer__image img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.08) brightness(0.92);
}

.site-footer__bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(217,154,37,0.16);
  background: #030303;
}

.site-footer__container--bottom {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.site-footer__logo {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.site-footer__logo:hover {
  transform: translateY(-2px);
}

.site-footer__logo-title {
  color: #d99a25;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(217,154,37,0.22);
}

.site-footer__logo-subtitle {
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.site-footer__copy {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

.site-footer__mail {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #d99a25;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #d99a25;
  transition: width 0.25s ease;
}

.site-footer__mail:hover::after {
  width: 100%;
}

@keyframes footerFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes footerFadeRight {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .site-footer__container {
    width: min(100% - 32px, 1220px);
  }

  .site-footer__top .site-footer__container {
    grid-template-columns: 1fr;
  }

  .site-footer__contact {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 0;
  }

  .site-footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(217,154,37,0.45),
      transparent
    );
  }

  .site-footer__image {
    min-height: 260px;
  }

  .site-footer__image img {
    min-height: 260px;
  }

  .site-footer__container--bottom {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__logo {
    margin: 0 auto;
  }

  .site-footer__mail {
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .site-footer__eyebrow {
    font-size: 23px;
  }

  .site-footer__text {
    max-width: none;
  }

  .site-footer__btn {
    width: 100%;
  }

  .site-footer__info-link {
    font-size: 15px;
  }

  .site-footer__image {
    min-height: 210px;
  }

  .site-footer__image img {
    min-height: 210px;
  }

  .site-footer__logo-title {
    font-size: 24px;
  }

  .site-footer__logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .site-footer__copy {
    font-size: 13px;
  }
}

/* END FOOTER */


/* LINEUP */

.lineup {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217,154,37,0.12), transparent 28%),
    radial-gradient(circle at 80% 55%, rgba(217,154,37,0.08), transparent 32%),
    #030303;
  color: #ffffff;
  overflow: hidden;
}

.lineup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  pointer-events: none;
}

.lineup::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217,154,37,0.08), transparent);
  transform: skewX(-18deg);
  animation: lineupLight 8s ease-in-out infinite;
  pointer-events: none;
}

.lineup__container {
  position: relative;
  z-index: 2;
  width: min(100% - 76px, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 52px;
  align-items: start;
}

.lineup__aside {
  animation: lineupFadeLeft 0.8s ease both;
}

.lineup__title {
  position: relative;
  margin: 0;
  padding-bottom: 30px;
  color: #d99a25;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}

.lineup__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: #d99a25;
  box-shadow: 0 0 20px rgba(217,154,37,0.45);
}

.lineup__text {
  margin: 28px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.lineup__text span {
  color: #d99a25;
  padding: 0 8px;
}

.lineup__btn {
  position: relative;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(217,154,37,0.7);
  color: #d99a25;
  background: rgba(217,154,37,0.04);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.lineup__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.lineup__btn:hover {
  transform: translateY(-3px);
  color: #030303;
  background: #d99a25;
  box-shadow: 0 16px 36px rgba(217,154,37,0.24);
}

.lineup__btn:hover::before {
  left: 120%;
}

.lineup__btn span {
  font-size: 18px;
  line-height: 1;
}

.lineup__main {
  min-width: 0;
  animation: lineupFadeRight 0.8s ease 0.12s both;
}

.lineup__table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(217,154,37,0.48);
  box-shadow:
    0 0 0 1px rgba(217,154,37,0.08),
    0 20px 60px rgba(0,0,0,0.34);
}

.lineup__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #ffffff;
  background: rgba(0,0,0,0.36);
}

.lineup__table th,
.lineup__table td {
  border: 1px solid rgba(217,154,37,0.34);
  padding: 14px 18px;
  text-align: center;
  white-space: nowrap;
}

.lineup__table th {
  color: #d99a25;
  background: rgba(217,154,37,0.13);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lineup__table td {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.lineup__table tbody tr {
  transition: background 0.25s ease;
}

.lineup__table tbody tr:hover {
  background: rgba(217,154,37,0.08);
}

.lineup__table tbody tr:hover td {
  color: #ffffff;
}

.lineup__note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lineup__note span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(217,154,37,0.65);
  border-radius: 50%;
  color: #d99a25;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(217,154,37,0.18);
}

.lineup__note p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

@keyframes lineupLight {
  0% {
    left: -45%;
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  70% {
    left: 115%;
    opacity: 0;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes lineupFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineupFadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .lineup {
    padding: 64px 0;
  }

  .lineup__container {
    width: min(100% - 32px, 1220px);
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lineup__title {
    font-size: 36px;
  }

  .lineup__text {
    font-size: 19px;
  }

  .lineup__table-wrap {
    margin-right: -16px;
  }
}

@media (max-width: 575px) {
  .lineup {
    padding: 52px 0;
  }

  .lineup__title {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .lineup__text {
    font-size: 17px;
  }

  .lineup__btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
  }

  .lineup__note {
    align-items: flex-start;
  }

  .lineup__note p {
    font-size: 15px;
  }
}

/* END LINEUP */
