:root {
  --bg: #090909;
  --bg-soft: #111111;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --text: #f6f3ee;
  --muted: #b8afa2;
  --gold: #d2a95f;
  --gold-soft: #f0d2a0;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1240px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(210, 169, 95, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 25%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  inset: auto auto 0 -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 169, 95, 0.16), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #fff1cf);
  z-index: 999;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe1af, var(--gold));
  box-shadow: 0 0 20px rgba(210, 169, 95, 0.4);
}

.logo-text {
  font-size: 0.96rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  position: relative;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 6px;
  width: calc(100% - 28px);
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-btn {
  border: 1px solid rgba(210, 169, 95, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 54px);
  display: flex;
  align-items: center;
}

.hero-home {
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg-1 {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.55) 42%, rgba(8, 8, 8, 0.35) 100%),
    url("https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-bg-2 {
  background:
    radial-gradient(circle at 80% 20%, rgba(210, 169, 95, 0.18), transparent 22%),
    radial-gradient(circle at 74% 65%, rgba(255, 255, 255, 0.08), transparent 18%);
  mix-blend-mode: screen;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.68)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.12), transparent 30%, transparent 65%, rgba(8, 8, 8, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(210, 169, 95, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(210, 169, 95, 0.8);
}

.hero-title,
.page-title,
.section-title {
  margin: 22px 0 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.hero-title span {
  color: var(--gold-soft);
}

.hero-text,
.page-text,
.section-text,
.footer-text {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #f0d19b, var(--gold));
  color: #140e06;
  box-shadow: 0 16px 40px rgba(210, 169, 95, 0.18);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(210, 169, 95, 0.28);
}

.btn-glass {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  max-width: 640px;
}

.hero-stat {
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-soft);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-bottom-cards {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(16, 16, 16, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.mini-label {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.mini-panel h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.mini-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 42px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: #e8dfd3;
}

.image-stack {
  position: relative;
  min-height: 580px;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card-lg {
  width: 74%;
  height: 520px;
  right: 0;
  top: 0;
}

.stack-card-sm {
  width: 44%;
  height: 280px;
  left: 0;
  bottom: 0;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.adv-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 240px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  transition: var(--transition);
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(210, 169, 95, 0.18), transparent 70%);
  filter: blur(12px);
  opacity: 0;
  transition: var(--transition);
}

.adv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 169, 95, 0.22);
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(210, 169, 95, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
  margin-bottom: 18px;
}

.adv-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.adv-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.brand-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #111;
}

.brand-tile.large {
  grid-row: span 2;
  min-height: 580px;
}

.brand-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.brand-tile:hover img {
  transform: scale(1.08);
}

.brand-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.brand-overlay span {
  color: var(--gold-soft);
  font-size: 0.88rem;
}

.brand-overlay h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.brand-overlay p {
  margin: 0;
  color: #d8d0c4;
  line-height: 1.6;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lifestyle-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.lifestyle-copy {
  padding: 28px 28px 20px;
}

.lifestyle-card h3 {
  margin: 16px 0 12px;
  font-size: 1.45rem;
}

.lifestyle-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lifestyle-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.section-cta {
  padding-top: 30px;
}

.cta-box {
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(210, 169, 95, 0.22);
  background:
    linear-gradient(135deg, rgba(210, 169, 95, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Shops page */
.page-hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.page-hero-bg,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.5) 100%),
    url("https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.page-hero-overlay {
  background:
    radial-gradient(circle at 78% 26%, rgba(210, 169, 95, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.6));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.catalog-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.catalog-search input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #fff;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
}

.catalog-search input::placeholder {
  color: #9e968a;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, rgba(240, 209, 155, 0.18), rgba(210, 169, 95, 0.18));
  border-color: rgba(210, 169, 95, 0.3);
}

.shop-grid-advanced {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-card-advanced {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.shop-card-advanced:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 169, 95, 0.22);
  box-shadow: var(--shadow);
}

.shop-image-wrap {
  position: relative;
  overflow: hidden;
}

.shop-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-card-advanced:hover .shop-image-wrap img {
  transform: scale(1.08);
}

.shop-status {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.shop-status.open {
  background: rgba(26, 110, 52, 0.82);
  color: #dbffe3;
}

.shop-status.soon {
  background: rgba(210, 169, 95, 0.82);
  color: #1a1308;
}

.shop-body {
  padding: 20px;
}

.shop-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.shop-tag,
.shop-floor {
  font-size: 0.83rem;
  color: var(--gold-soft);
}

.shop-card-advanced h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.shop-card-advanced p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
  font-size: 0.95rem;
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(210, 169, 95, 0.08));
  border: 1px solid var(--line);
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: min(520px, 100%);
}

.newsletter-form input {
  flex: 1;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr;
  gap: 24px;
  padding: 56px 0 30px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer h4 {
  margin: 0;
  font-size: 1rem;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #938b81;
  font-size: 0.92rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .adv-grid,
  .shop-grid-advanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .brand-tile.large {
    grid-column: span 2;
    min-height: 460px;
  }

  .split-grid,
  .lifestyle-grid,
  .footer-grid,
  .newsletter,
  .promo-banner,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .image-stack {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .hero-bottom-cards,
  .hero-stats {
    grid-template-columns: 1fr;
    position: static;
    transform: none;
    margin-top: 24px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 20px;
    width: min(320px, calc(100% - 40px));
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .brand-showcase,
  .adv-grid,
  .shop-grid-advanced {
    grid-template-columns: 1fr;
  }

  .brand-tile.large {
    grid-column: auto;
    min-height: 360px;
  }

  .stack-card-lg,
  .stack-card-sm {
    position: static;
    width: 100%;
    height: 300px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    height: 76px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 84px 0;
  }

  .mini-panel,
  .adv-card,
  .shop-body,
  .newsletter,
  .promo-banner,
  .cta-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn,
  .newsletter-form input {
    width: 100%;
  }
}