:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --black-lift: #14110d;
  --gold: #c79a56;
  --gold-bright: #e2bd78;
  --white: #ffffff;
  --muted: #b9b4ad;
  --line: rgba(199, 154, 86, 0.32);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.085);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --header-height: 92px;
  --content: min(1180px, calc(100vw - 48px));
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 10% 10%, rgba(199, 154, 86, 0.12), transparent 28vw),
    radial-gradient(circle at 85% 20%, rgba(120, 88, 44, 0.12), transparent 28vw),
    linear-gradient(135deg, var(--black) 0%, var(--black-soft) 52%, #020202 100%);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

a,
button {
  color: inherit;
  cursor: none;
}

a {
  text-decoration: none;
}

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

button {
  border: 0;
  background: transparent;
  font: inherit;
}

::selection {
  background: rgba(199, 154, 86, 0.4);
  color: var(--white);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 28px;
  align-content: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(199, 154, 86, 0.12), transparent 24rem),
    #030303;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2.7rem);
  letter-spacing: 0;
  color: var(--white);
}

.loader-line {
  width: min(320px, 54vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.2s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 18px rgba(199, 154, 86, 0.75);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(226, 189, 120, 0.8);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(199, 154, 86, 0.58);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cursor-ring.is-active {
  width: 58px;
  height: 58px;
  border-color: rgba(226, 189, 120, 0.95);
  background: rgba(199, 154, 86, 0.08);
}

.mouse-light {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 86, 0.11), rgba(199, 154, 86, 0.035) 38%, transparent 68%);
  filter: blur(16px);
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 28px clamp(24px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
  transition: background 0.35s ease, min-height 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.6);
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-bar,
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-bar a,
.footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-bar a:hover,
.footer-social a:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--white);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(92px, 11vw, 148px) 0;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.018));
  pointer-events: none;
}

.hero {
  height: 100vh;
  min-height: 680px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 58vw) minmax(420px, 1fr);
  overflow: hidden;
  background: #020202;
}

.hero-media {
  position: relative;
  height: 100vh;
  min-height: inherit;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1) 54%, rgba(0, 0, 0, 0.92)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100vh;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  filter: saturate(0.86) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 38% 30%, rgba(199, 154, 86, 0.11), transparent 28%),
    radial-gradient(circle at 72% 50%, rgba(199, 154, 86, 0.08), transparent 22%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.86) 62%, #010101 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 520px;
  padding: 9vh clamp(28px, 5vw, 86px) 8vh 0;
}

.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 30px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(199, 154, 86, 0.7);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.6rem);
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  max-width: 410px;
  margin: 34px 0 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 2.05;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 218px;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid var(--gold);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(199, 154, 86, 0.95), rgba(226, 189, 120, 0.95));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.btn:hover {
  color: #090909;
  border-color: var(--gold-bright);
  box-shadow: 0 0 34px rgba(199, 154, 86, 0.28);
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-fill {
  color: #080808;
  background: var(--gold);
}

.btn-fill::before {
  background: var(--white);
}

.hero-footer {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  right: clamp(24px, 4vw, 54px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-footer div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-footer div span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-footer a {
  transition: color 0.25s ease;
}

.hero-footer a:hover {
  color: var(--gold-bright);
}

.section-grid,
.contact-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 96px);
}

.portrait-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 86, 0.22);
  box-shadow: var(--shadow);
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(199, 154, 86, 0.28);
  pointer-events: none;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 37% center;
  transform: scale(1.08);
  filter: grayscale(0.08) contrast(1.08) brightness(0.84);
}

.section-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  color: var(--white);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.news-card p,
.album-card p {
  color: var(--muted);
  line-height: 1.85;
}

.section-copy .btn {
  margin-top: 18px;
}

.section-heading {
  width: var(--content);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 42px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p:last-child {
  margin: 0;
  max-width: 520px;
}

.music {
  overflow: hidden;
}

.music-swiper {
  width: var(--content);
  margin: 0 auto;
  overflow: visible;
}

.music-card {
  position: relative;
  min-height: 430px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 86, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.music-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 189, 120, 0.74);
}

.cover,
.album-art {
  position: absolute;
  inset: 22px 22px 122px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(199, 154, 86, 0.4), rgba(5, 5, 5, 0.98));
}

.cover::before,
.album-art::before,
.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
  opacity: 0.72;
}

.cover i {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 4.8rem;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.55));
}

.cover-one {
  background:
    radial-gradient(circle at 28% 25%, rgba(226, 189, 120, 0.55), transparent 34%),
    linear-gradient(135deg, #2a2117, #050505 72%);
}

.cover-two {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #050505, #4b3922);
}

.cover-three {
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 154, 86, 0.3), transparent 34%),
    linear-gradient(135deg, #151515, #050505 56%, #6f5732);
}

.cover-four {
  background:
    linear-gradient(135deg, rgba(199, 154, 86, 0.12), transparent),
    url("../images/hero.png") center / cover;
}

.cover-five {
  background:
    radial-gradient(circle at 15% 80%, rgba(226, 189, 120, 0.45), transparent 32%),
    linear-gradient(135deg, #090909, #1c1711 52%, #6f5732);
}

.music-card span,
.album-card span,
.news-card span {
  position: relative;
  z-index: 2;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.music-card h3,
.album-card h3,
.video-card h3,
.concert-card h3,
.product-card h3,
.news-card h3 {
  position: relative;
  z-index: 2;
  margin: 9px 0 6px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.music-card p,
.concert-card p,
.product-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
}

.play-track {
  position: absolute;
  right: 22px;
  bottom: 25px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  box-shadow: 0 12px 36px rgba(199, 154, 86, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.music-card:hover .play-track,
.play-track.is-playing {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.play-track:hover {
  background: var(--white);
}

.swiper-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.swiper-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.swiper-controls button:hover {
  color: #080808;
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.mini-player {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 650;
  width: min(520px, calc(100vw - 32px));
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px minmax(120px, 1fr) 130px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(199, 154, 86, 0.28);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mini-player.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.mini-player-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
}

.mini-player span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-player strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}

.mini-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-progress span {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--gold);
  animation: playerProgress 7s linear infinite;
}

.album-grid,
.video-grid,
.store-grid,
.news-grid,
.concert-list,
.masonry-gallery {
  width: var(--content);
  margin: 0 auto;
}

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

.album-card,
.news-card,
.product-card,
.concert-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 86, 0.22);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.album-card:hover,
.news-card:hover,
.product-card:hover,
.concert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 189, 120, 0.7);
  background: var(--glass-strong);
}

.album-card {
  min-height: 430px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.album-card .album-art {
  inset: 24px 24px 128px;
}

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

.video-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 86, 0.2);
  border-radius: 8px;
  background: #090909;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.64);
  transform: scale(1.06);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 55%);
}

.video-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
}

.video-card:hover img {
  transform: scale(1.14);
  filter: grayscale(0.05) brightness(0.8);
}

.video-card:hover span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.masonry-gallery {
  column-count: 4;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(199, 154, 86, 0.18);
  border-radius: 8px;
  background: #080808;
}

.gallery-item.tall {
  min-height: 420px;
}

.gallery-item.wide {
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.66);
  transform: scale(1.04);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:nth-child(3n) img {
  object-position: 30% center;
}

.gallery-item:nth-child(4n) img {
  object-position: 72% center;
}

.gallery-item::after {
  content: "\f002";
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: saturate(1) brightness(0.84);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.concert-list {
  display: grid;
  gap: 16px;
}

.concert-card {
  min-height: 116px;
  padding: 24px;
  display: grid;
  grid-template-columns: 150px minmax(180px, 1fr) minmax(160px, 0.6fr) auto;
  align-items: center;
  gap: 24px;
}

.concert-card time {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

.concert-card h3 {
  margin: 0;
}

.status {
  justify-self: end;
  min-width: 96px;
  padding: 9px 14px;
  border: 1px solid rgba(199, 154, 86, 0.35);
  border-radius: 999px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status.live {
  color: #080808;
  background: var(--gold);
}

.status.sold {
  color: var(--gold-bright);
  background: rgba(199, 154, 86, 0.08);
}

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

.product-card {
  min-height: 320px;
  padding: 20px;
  text-align: center;
}

.product-visual {
  position: relative;
  height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 25%, rgba(226, 189, 120, 0.3), transparent 36%),
    linear-gradient(135deg, #151515, #050505);
}

.product-visual i {
  position: relative;
  z-index: 1;
  color: var(--gold-bright);
  font-size: 4rem;
}

.product-card h3 {
  margin-bottom: 8px;
}

.add-cart {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border: 1px solid var(--line);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.add-cart:hover,
.add-cart.is-added {
  color: #080808;
  border-color: var(--gold);
  background: var(--gold);
}

.cart-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 660;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  transform: translateY(28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

.news-card {
  min-height: 310px;
  padding: 28px;
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact {
  min-height: 82vh;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid rgba(199, 154, 86, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-list a:hover {
  color: var(--gold-bright);
  border-color: rgba(226, 189, 120, 0.65);
  background: rgba(199, 154, 86, 0.08);
}

.contact-list i {
  width: 22px;
  color: var(--gold);
}

.map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 86, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(199, 154, 86, 0.2), transparent 28%),
    linear-gradient(135deg, #111, #030303);
  box-shadow: var(--shadow);
}

.map-grid-lines {
  position: absolute;
  inset: -40px;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(199, 154, 86, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 154, 86, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-8deg) scale(1.12);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  color: var(--gold-bright);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.map-pin i {
  font-size: 3rem;
  animation: pinPulse 1.8s ease-in-out infinite;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer a {
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.site-footer p {
  margin: 0;
}

[data-aos] {
  pointer-events: auto;
}
