﻿/* ================================================================
   ИМИДЖ ГРУПП — Luxury Fashion Boutique
   Design System & Global Styles
   ================================================================ */

/* --- Custom Properties --- */
:root {
  --bg:           #0A0908;
  --bg-alt:       #0E0C0B;
  --surface:      #141210;
  --surface-2:    #1C1A17;
  --surface-3:    #242220;

  --gold:         #C9A84C;
  --gold-light:   #DEC070;
  --gold-dark:    #8B6914;
  --gold-glow:    rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.22);

  --text:         #F0EBE3;
  --text-soft:    #CEC8BF;
  --text-muted:   #9C9189;
  --text-faint:   #6B6158;

  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(201, 168, 76, 0.22);

  --f-display: 'Cormorant', Georgia, serif;
  --f-body:    'Montserrat', -apple-system, sans-serif;

  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  --container: 1280px;
  --nav-h: 80px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
}

.label {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg  { font-size: 1.0625rem; line-height: 1.75; color: var(--text-soft); }
.body     { font-size: 0.9375rem; line-height: 1.7;  color: var(--text-soft); }
.body-sm  { font-size: 0.8125rem; line-height: 1.6;  color: var(--text-muted); }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-8); }
.section   { padding: var(--sp-24) 0; }

.gold-line         { display: block; width: 56px; height: 1px; background: var(--gold); margin: var(--sp-5) 0; }
.gold-line--center { margin: var(--sp-5) auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.9rem 2.25rem;
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 300ms var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-gold);
}
.btn--outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-5) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, padding 0.3s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,9,8,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1rem var(--sp-8);
  border-bottom-color: var(--border-gold);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav__logo:hover { color: var(--gold); }
.nav__logo em    { font-style: normal; color: var(--gold); }
.nav__logo-icon  { display: block; height: 44px; width: auto; flex-shrink: 0; }
.nav__logo-text  { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  list-style: none;
}
.nav__links a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav__mobile a:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-8) var(--sp-16);
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 65%, rgba(201,168,76,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 85% 25%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 50% 98%, rgba(140,90,30,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #141210 0%, #0A0908 50%, #100E0C 100%);
}

/* Grain texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 0.88;
  margin-bottom: var(--sp-8);
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin: 0 auto var(--sp-8);
  max-width: 260px;
}
.hero__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero__divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero__divider-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__tagline {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: var(--sp-12);
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-faint);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  41%  { transform: scaleY(1); transform-origin: bottom; }
  80%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-header .label      { display: block; margin-bottom: var(--sp-3); }
.section-header h2          { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--text); margin-bottom: var(--sp-5); letter-spacing: 0.04em; }
.section-header .body-lg    { max-width: 580px; margin: 0 auto; }

/* ---- About Teaser ---- */
.about-teaser {
  background: var(--surface);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-teaser__quote {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: var(--sp-6);
}
.about-teaser__body { margin-bottom: var(--sp-8); }

.about-teaser__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
}
.stat {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  border-right: 1px solid var(--border-gold);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat__label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Collections Grid (home) ---- */
.collections-section {
  background: var(--bg);
  padding: var(--sp-24) 0;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.coll-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.coll-item__img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s var(--ease-out);
}
.coll-item:hover .coll-item__img { transform: scale(1.04); }

/* Fashion color fields — real photos where available, gradient fallback */
.coll-item:nth-child(1) .coll-item__img {
  background-image: url('../images/collections/card-1-dress-midnight.jpg');
  background-size: cover; background-position: center top; background-color: #130B1E;
}
.coll-item:nth-child(2) .coll-item__img {
  background-image: url('../images/collections/card-2-suit-senator.jpg');
  background-size: cover; background-position: center top; background-color: #080F1A;
}
.coll-item:nth-child(3) .coll-item__img { background-image: url('../images/collections/card-3-coat-lorian.jpg'); background-size: cover; background-position: center top; }
.coll-item:nth-child(3) .coll-item__num { display: none; }
.coll-item:nth-child(4) .coll-item__img {
  background-image: url('../images/collections/card-4-jacket-monaco.png');
  background-size: cover; background-position: center top; background-color: #081212;
}
.coll-item:nth-child(5) .coll-item__img {
  background-image: url('../images/collections/card-5-dress-silhouette.jpg');
  background-size: cover; background-position: center top; background-color: #1A1006;
}
.coll-item:nth-child(6) .coll-item__img {
  background-image: url('../images/collections/card-6-blazer-regent.png');
  background-size: cover; background-position: center top; background-color: #0E0E0E;
}

/* Gold top-border accent on hover */
.coll-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 5;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.coll-item:hover::before { transform: scaleX(1); }

.coll-item__img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(201,168,76,0.06) 0%, transparent 65%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.coll-item:hover .coll-item__img::before { opacity: 1.6; }

/* Badge — top-right corner */
.coll-item__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 4px 8px;
  background: rgba(8,7,6,0.55);
  backdrop-filter: blur(4px);
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.coll-item:hover .coll-item__badge {
  opacity: 1;
  transform: translateY(0);
}

.coll-item__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-8) var(--sp-5) var(--sp-5);
  background: linear-gradient(to top, rgba(6,5,4,0.97) 0%, rgba(6,5,4,0.7) 55%, transparent 100%);
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.45s var(--ease-out);
}
.coll-item:hover .coll-item__info { transform: translateY(0); }

.coll-item__tag {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  opacity: 0.85;
}
.coll-item__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-3);
}

/* CTA link — fades in on hover */
.coll-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.coll-item:hover .coll-item__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Boutiques Strip ---- */
.boutiques-section {
  background: var(--bg-alt);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--border);
}
.boutiques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.boutique-card {
  border: 1px solid var(--border-gold);
  padding: var(--sp-10) var(--sp-8) var(--sp-12);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}
.boutique-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.boutique-card:hover { background: rgba(201,168,76,0.04); transform: translateY(-4px); }
.boutique-card:hover::before { transform: scaleX(1); }

.boutique-card__num {
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: var(--sp-4);
  user-select: none;
}
.boutique-card__name {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}
.boutique-card__type {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.boutique-card__address {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.boutique-card__hours {
  font-size: 0.8125rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* Arrow button on boutique card */
.boutique-card__arrow {
  position: absolute;
  bottom: var(--sp-8); right: var(--sp-8);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.boutique-card:hover .boutique-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* ---- Manifesto ---- */
.manifesto {
  background: var(--surface);
  padding: var(--sp-32) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto__inner {
  position: relative; z-index: 1;
  max-width: 840px; margin: 0 auto;
}
.manifesto__quote {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: var(--sp-8);
}
.manifesto__quote em { font-style: normal; color: var(--gold); }
.manifesto__author {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + var(--sp-16)) var(--sp-8) var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 75% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #141210 0%, #0A0908 100%);
}
.page-hero__bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}
.page-hero__content {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto; width: 100%;
}
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

/* ---- Products Grid ---- */
.products-filter {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-5);
}
.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--f-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover  { color: var(--text); border-color: var(--border); }
.filter-btn.active { color: var(--gold); border-color: var(--border-gold); background: var(--gold-glow); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.product-card { cursor: pointer; }
.product-card__img {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--sp-4);
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.03); }
.product-card__img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 18%, rgba(255,255,255,0.05) 0%, transparent 65%);
  z-index: 1;
}

/* 12 product color fields — real photos override gradient */
.product-card:nth-child(1)  .product-card__img { background-image: url('../images/collections/card-1-dress-midnight.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(2)  .product-card__img { background-image: url('../images/collections/card-2-suit-senator.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(3)  .product-card__img { background-image: url('../images/collections/card-3-coat-lorian.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(4)  .product-card__img { background-image: url('../images/collections/card-4-jacket-monaco.png'); background-size: cover; background-position: center top; }
.product-card:nth-child(5)  .product-card__img { background-image: url('../images/collections/card-5-dress-silhouette.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(6)  .product-card__img { background-image: url('../images/collections/card-6-blazer-regent.png'); background-size: cover; background-position: center top; }
.product-card:nth-child(7)  .product-card__img { background-image: url('../images/collections/card-7-tee-monari.png'); background-size: cover; background-position: center top; }
.product-card:nth-child(8)  .product-card__img { background-image: url('../images/collections/card-8-bag-mbrc.jpg'); background-size: cover; background-position: center; }
.product-card:nth-child(9)  .product-card__img { background-image: url('../images/collections/card-9-dress-yest.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(10) .product-card__img { background-image: url('../images/collections/card-10-jacket-mat.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(11) .product-card__img { background-image: url('../images/collections/card-11-dress-yest.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(12) .product-card__img { background-image: url('../images/collections/card-13-shirt-yest.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(13) .product-card__img { background-image: url('../images/collections/card-14-windbreaker-monari.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(14) .product-card__img { background-image: url('../images/collections/card-15-handkerchief-mbrc.jpg'); background-size: cover; background-position: center; }
.product-card:nth-child(15) .product-card__img { background-image: url('../images/collections/card-16-shirt-monari.jpg'); background-size: cover; background-position: center top; }
.product-card:nth-child(16) .product-card__img { background-image: url('../images/collections/card-17-shirt-monari.jpg'); background-size: cover; background-position: center top; }

.product-card__cat  { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-2); }
.product-card__name { font-family: var(--f-display); font-size: 1.125rem; font-weight: 400; color: var(--text); }
.product-card__shop { font-size: 0.75rem; color: var(--text-faint); margin-top: var(--sp-1); }

/* ---- Novelties Section ---- */
.novelties-section { padding: var(--sp-6) 0 var(--sp-10); }

.novelties-gender-tabs {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-4);
}
.novelties-tab {
  background: none;
  border: none;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  cursor: pointer;
  padding: var(--sp-2) var(--sp-4);
  position: relative;
  transition: color 0.25s ease;
}
.novelties-tab::after {
  content: '';
  position: absolute;
  bottom: -17px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.novelties-tab.active { color: var(--gold); }
.novelties-tab.active::after { transform: scaleX(1); }

.novelties-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

/* Brand card */
.brand-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--surface-dark, #0C0A08);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}
.brand-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.brand-card__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.brand-card:hover .brand-card__bg { opacity: 1; }
.brand-card__logo {
  height: 100px;
  display: flex;
  align-items: center;
}
.brand-card__logo img {
  max-height: 100px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.brand-card:hover .brand-card__logo img { opacity: 1; }
.brand-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}
.brand-card__season {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.brand-card__boutique {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.brand-card__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: var(--sp-2);
  transition: color 0.3s ease;
}
.brand-card:hover .brand-card__cta { color: var(--gold); }

/* ---- Lightbox ---- */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(6,5,4,0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lb-overlay.active { opacity: 1; pointer-events: all; }

.lb-close {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: var(--sp-2);
  transition: color 0.2s ease;
  z-index: 2;
}
.lb-close:hover { color: var(--gold); }

.lb-inner {
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  align-items: center;
}

.lb-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  text-align: center;
}
.lb-eyebrow {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.lb-logo img {
  max-height: 56px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.lb-season {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.lb-gallery {
  width: 100%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-photo {
  position: absolute;
  max-height: 65vh;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  border: 1px solid rgba(201,168,76,0.15);
}
.lb-photo.active { opacity: 1; position: relative; }

.lb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.2);
  text-align: center;
}
.lb-empty__icon {
  font-size: 2rem;
  color: rgba(201,168,76,0.2);
}
.lb-empty p { font-family: var(--f-display); font-size: 1.4rem; font-weight: 300; }
.lb-empty__sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--f-body); }

.lb-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.lb-nav__btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(255,255,255,0.5);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lb-nav__btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-counter {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  min-width: 50px;
  text-align: center;
}

@media (max-width: 768px) {
  .novelties-brands { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .novelties-brands { grid-template-columns: 1fr; }
}

/* ---- News Page ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

/* Featured first card spans full width, horizontal layout */
.news-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
}
.news-card:first-child .news-card__img-wrap { flex: 0 0 55%; }
.news-card:first-child .news-card__img { aspect-ratio: 16/10; height: 100%; }
.news-card:first-child .news-card__body {
  padding: var(--sp-12) var(--sp-10);
  justify-content: center;
  gap: var(--sp-5);
}
.news-card:first-child .news-card__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}
.news-card:first-child .news-card__desc { font-size: 0.9rem; }

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0E0C0A;
  border-top: 2px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.45); border-top-color: var(--gold); }

.news-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.news-card__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.news-card:hover .news-card__img { transform: scale(1.05); }

/* Gradient fade image → body */
.news-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #0E0C0A);
  pointer-events: none;
}

.news-card__img--bugatti  { background-image: url('../images/news/news-bugatti.jpg'); background-size: cover; background-position: center top; }
.news-card__img--mat      { background-image: url('../images/news/news-mat.jpg'); background-size: cover; background-position: center; }
.news-card__img--yest     { background-image: url('../images/news/news-yest.jpg'); background-size: cover; background-position: center; }
.news-card__img--mbrc     { background-image: url('../images/news/news-mbrc.png'); background-size: cover; background-position: center; }
.news-card__img--monari   { background-image: url('../images/news/new-monari.jpg'); background-size: cover; background-position: center top; }
.news-card__img--mbrc-sale { background-image: url('../images/news/sale-mbrc-30.jpg'); background-size: cover; background-position: center; }

.news-card__badge {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.news-card__badge--collection { background: var(--gold); color: #0A0810; }
.news-card__badge--promo { background: var(--accent, #E8583A); color: #fff; }

.news-card__body {
  padding: var(--sp-6) var(--sp-7) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.news-card__meta { display: flex; flex-direction: column; gap: 4px; }

.news-card__date {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-card__date::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.7;
}
.news-card__boutique {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-left: 28px;
}

.news-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: var(--sp-2);
}

.news-card__desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.news-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-3);
  transition: gap 0.25s ease;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(200,160,64,0.2);
}
.news-card__cta:hover { gap: var(--sp-3); }

/* Brand logo (hidden but kept for future use) */
.news-card__brand-logo { display: none; }
.news-card__brand-text { display: none; }
.news-card__meta-text { display: contents; }

.news-filter { margin-bottom: 0; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card:first-child { grid-column: 1 / -1; flex-direction: column; }
  .news-card:first-child .news-card__img { aspect-ratio: 16/9; height: auto; }
  .news-card:first-child .news-card__body { padding: var(--sp-6) var(--sp-7); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ---- About Page ---- */
.story-section { padding: var(--sp-24) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}
.story-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1C1917, #2C2825, #1A1713);
  position: relative;
}
/* Slideshow */
.story-visual--slider { background: none; }
.story-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: storyFade 36s infinite;
}
.story-slide:nth-child(1) { animation-delay: 0s; }
.story-slide:nth-child(2) { animation-delay: 4s; }
.story-slide:nth-child(3) { animation-delay: 8s; }
.story-slide:nth-child(4) { animation-delay: 12s; }
.story-slide:nth-child(5) { animation-delay: 16s; }
.story-slide:nth-child(6) { animation-delay: 20s; }
.story-slide:nth-child(7) { animation-delay: 24s; }
.story-slide:nth-child(8) { animation-delay: 28s; }
.story-slide:nth-child(9) { animation-delay: 32s; }

@keyframes storyFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  8%   { opacity: 1; }
  11%  { opacity: 0; }
  100% { opacity: 0; }
}

.story-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 35% 30%, rgba(201,168,76,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 72% 70%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid;
  border-image: linear-gradient(
    to bottom,
    rgba(201,168,76,0.7) 0%,
    rgba(201,168,76,0.2) 35%,
    rgba(201,168,76,0.2) 65%,
    rgba(201,168,76,0.6) 100%
  ) 1;
  pointer-events: none;
  z-index: 2;
}
.story-text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--text); letter-spacing: 0.04em; margin-bottom: var(--sp-8); }
.story-text p  { font-size: 0.9375rem; line-height: 1.8; color: var(--text-muted); margin-bottom: var(--sp-5); }

.values-section {
  background: var(--surface);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-card {
  background: var(--surface);
  padding: var(--sp-10) var(--sp-8);
  transition: background 0.3s ease;
}
.value-card:hover { background: var(--surface-2); }
.value-card__bar {
  width: 44px; height: 1px;
  background: var(--gold);
  margin-bottom: var(--sp-6);
}
.value-card__title {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--text); margin-bottom: var(--sp-4);
}
.value-card__text { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }

/* ---- Boutiques Page ---- */
.boutiques-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
.boutique-full {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.boutique-full:hover { box-shadow: 0 0 0 1px var(--gold-border); }
.boutique-full__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background-size: 105%;
  background-position: center top;
  background-repeat: no-repeat;
  transition: background-size 0.8s var(--ease-out);
}
.boutique-full:hover .boutique-full__visual { background-size: 112%; }
.boutique-full:nth-child(1) .boutique-full__visual {
  background-image: url('../images/boutiques/imidzh.jpg');
  background-color: #1B2A35;
}
.boutique-full:nth-child(2) .boutique-full__visual {
  background-image: url('../images/boutiques/persona.jpg');
  background-color: #2A1B2E;
}
.boutique-full:nth-child(3) .boutique-full__visual {
  background-image: url('../images/boutiques/marlen.jpg');
  background-color: #2E1B1B;
}
.boutique-full__visual::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(8,7,6,0.45) 0%,
    rgba(8,7,6,0.25) 40%,
    rgba(8,7,6,0.55) 100%);
}
.boutique-full__visual-num {
  position: absolute;
  bottom: var(--sp-6); left: var(--sp-8);
  font-family: var(--f-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  user-select: none;
  z-index: 2;
}
.boutique-full__info {
  padding: var(--sp-10) var(--sp-10);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boutique-full__name {
  font-family: var(--f-display);
  font-size: 3rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.boutique-full__type {
  font-size: 0.625rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--sp-8);
}

.boutique-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.boutique-detail__label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-faint);
  margin-bottom: var(--sp-1);
}
.boutique-detail__value {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-soft);
}

/* ---- Contacts Page ---- */
.contact-section { padding: var(--sp-24) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info__group { margin-bottom: var(--sp-10); }
.contact-info__group-title {
  font-size: 0.625rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4);
}
.contact-info__group-title::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border-gold); max-width: 50px;
}
.contact-info__item { margin-bottom: var(--sp-4); }
.contact-info__label {
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px;
}
.contact-info__value { font-size: 0.9375rem; color: var(--text-soft); }
.contact-info__value a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  padding: var(--sp-10);
}
.contact-form-wrap h3 {
  font-family: var(--f-display);
  font-size: 1.75rem; font-weight: 400;
  color: var(--text); margin-bottom: var(--sp-8);
  letter-spacing: 0.04em;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block; font-size: 0.625rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--sp-2);
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 0.875rem;
  padding: 0.875rem var(--sp-4);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { height: 130px; resize: none; }

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  border-top: none;
  padding: var(--sp-16) 0 var(--sp-8);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border-gold) 30%, var(--gold) 50%, var(--border-gold) 70%, transparent 100%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: var(--sp-4);
}
.footer__brand-name em { font-style: normal; color: var(--gold); }
.footer__brand-tagline {
  font-size: 0.8125rem; line-height: 1.65;
  color: var(--text-muted); max-width: 240px; margin-bottom: var(--sp-6);
}
.footer__socials { display: flex; gap: var(--sp-3); }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease; cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.social-btn svg   { width: 15px; height: 15px; fill: currentColor; }
.social-btn--labeled {
  width: auto; height: auto;
  flex-direction: column; gap: 3px;
  padding: 6px 10px;
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.social-btn--labeled svg { width: 14px; height: 14px; }

.footer__col-title {
  font-size: 0.625rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-5);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-3);
}
.footer__copy { font-size: 0.75rem; color: var(--text-faint); letter-spacing: 0.08em; }
.footer__dev {
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.footer__dev a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer__dev a:hover { opacity: 1; }

/* ---- Scroll Reveal System ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* Hero entrance */
.h-anim { opacity: 0; animation: hFade 1.1s var(--ease-out) forwards; }
.h-anim.a1 { animation-delay: 0.15s; }
.h-anim.a2 { animation-delay: 0.45s; }
.h-anim.a3 { animation-delay: 0.75s; }
.h-anim.a4 { animation-delay: 1.05s; }
@keyframes hFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal         { opacity: 1; transform: none; transition: none; }
  .h-anim         { opacity: 1; animation: none; }
  .hero__scroll-line { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Custom Cursor ---- */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, [role="button"], label,
  .coll-item, .boutique-card, .product-card,
  .filter-btn, .social-btn { cursor: none; }
  input, textarea, select { cursor: text; }

  .c-dot {
    position: fixed;
    top: -100px; left: -100px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.18s var(--ease-out), height 0.18s var(--ease-out),
                background 0.18s ease, opacity 0.3s ease;
    will-change: top, left;
  }
  .c-ring {
    position: fixed;
    top: -100px; left: -100px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.38s var(--ease-out), height 0.38s var(--ease-out),
                border-color 0.25s ease, background 0.25s ease, opacity 0.3s ease;
    will-change: top, left;
  }
  .c-ring.on-link { width: 54px; height: 54px; border-color: rgba(201,168,76,0.65); background: rgba(201,168,76,0.04); }
  .c-dot.on-link  { background: var(--gold-light); width: 3px; height: 3px; }
  .c-ring.on-btn  { width: 60px; height: 60px; border-color: var(--gold); background: rgba(201,168,76,0.08); }
  .c-dot.on-btn   { width: 7px; height: 7px; }
  .c-dot.is-pressed  { transform: translate(-50%, -50%) scale(2); transition-duration: 0.08s; }
  .c-ring.is-pressed { transform: translate(-50%, -50%) scale(0.86); transition-duration: 0.08s; }
}

/* ---- Boutique Logos ---- */
.boutique-full__logo-wrap { margin-bottom: var(--sp-3); line-height: 1; }
.boutique-full__logo-svg  { display: block; height: 90px; width: auto; }
.boutique-full__logo-img  { display: block; height: 130px; width: auto; filter: brightness(0) invert(1); }

.boutique-card__logo { margin-bottom: var(--sp-4); line-height: 1; }
.boutique-card__logo svg { display: block; height: 90px; width: auto; }
.boutique-card__logo-img { display: block; height: 90px; width: auto; filter: brightness(0) invert(1); }

/* ---- Brand Marquee ---- */
.brands-section {
  padding: var(--sp-12) 0 var(--sp-14);
  background: var(--bg-alt);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brands-section .label { display: block; text-align: center; margin-bottom: var(--sp-8); }
.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.brands-track__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  width: max-content;
  animation: brandsScroll 34s linear infinite;
}
.brands-track__inner:hover { animation-play-state: paused; }
.brand-logo {
  height: 64px;
  width: auto;
  opacity: 0.65;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.brand-logo:hover { opacity: 1; }
/* Logos with white background (JPG) — invert only so white bg → black = invisible on dark marquee */
img.brand-logo[src*="yest"],
img.brand-logo[src*="hattric"] { filter: invert(1); }
@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands-track__inner { animation: none; }
}

/* ---- Hero Video ---- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,7,6,0.65) 0%,
    rgba(8,7,6,0.52) 40%,
    rgba(8,7,6,0.75) 100%
  );
}

/* ---- Hero Constellation Canvas ---- */
.hero__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer__top     { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .boutique-full   { grid-template-columns: 1fr; }
  .boutique-full__visual { min-height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }
  .nav { padding: var(--sp-4) var(--sp-5); }
  .nav.scrolled { padding: var(--sp-4) var(--sp-5); }

  .collections-grid        { grid-template-columns: repeat(2, 1fr); }
  .boutiques-grid          { grid-template-columns: 1fr; gap: var(--sp-4); }
  .about-teaser__inner     { grid-template-columns: 1fr; gap: var(--sp-10); }
  .story-grid              { grid-template-columns: 1fr; gap: var(--sp-10); }
  .story-visual            { aspect-ratio: 16/9; }
  .story-visual::after     { display: none; }
  .values-grid             { grid-template-columns: 1fr; }
  .contact-grid            { grid-template-columns: 1fr; }
  .products-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer__top             { grid-template-columns: 1fr 1fr; }
  .footer__bottom          { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .form-row                { grid-template-columns: 1fr; }
  .boutique-detail-grid    { grid-template-columns: 1fr; }
  .hero__actions           { gap: var(--sp-3); }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__top      { grid-template-columns: 1fr; }
  .hero__actions    { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about-teaser__stats { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   LUXURY UPGRADES — v2.5
   ================================================================ */

/* ---- Text Ticker Strip ---- */
.ticker-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  padding: 0.8rem 0;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  width: max-content;
  animation: tickerRoll 55s linear infinite;
  will-change: transform;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-sep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.45rem;
  flex-shrink: 0;
}
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
}

/* ---- Collection item editorial overlays ---- */
.coll-item__img::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 7px,
    rgba(255,255,255,0.014) 7px,
    rgba(255,255,255,0.014) 8px
  );
  pointer-events: none;
}
.coll-item:nth-child(1) .coll-item__num,
.coll-item:nth-child(2) .coll-item__num,
.coll-item:nth-child(4) .coll-item__num,
.coll-item:nth-child(5) .coll-item__num,
.coll-item:nth-child(6) .coll-item__num { display: none; }

.coll-item__num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 300;
  color: rgba(201,168,76,0.09);
  user-select: none;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.5s ease, transform 0.5s ease;
}
.coll-item:hover .coll-item__num {
  color: rgba(201,168,76,0.16);
  transform: translate(-50%, -52%) scale(1.04);
}
.coll-item__vline {
  position: absolute;
  top: 20%; bottom: 20%;
  left: var(--sp-5);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5), transparent);
  pointer-events: none;
  z-index: 1;
  transform: scaleY(0.6);
  transition: transform 0.5s var(--ease-out), opacity 0.5s ease;
  opacity: 0.5;
}
.coll-item:hover .coll-item__vline {
  transform: scaleY(1);
  opacity: 1;
}

/* Shimmer sweep on hover */
.coll-item__shimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(201,168,76,0.08) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0s;
  pointer-events: none;
}
.coll-item:hover .coll-item__shimmer {
  background-position: -100% 0;
  transition: background-position 0.7s ease;
}

/* ---- Video Section ---- */
.video-section {
  background: var(--surface-dark, #0C0A08);
  padding: var(--sp-24) 0 var(--sp-24);
  position: relative;
  overflow: hidden;
}
.video-section__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.video-section__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.video-section__meta .gold-line { width: 48px; }
.video-section__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text, #fff);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.video-section__title em { color: var(--gold); font-style: normal; }
.video-section__sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  text-align: right;
  align-self: end;
}

/* Stage wrapper */
.video-section__stage {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* Watermark */
.video-section__wm {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

/* Frame */
.video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  border: 1px solid rgba(201,168,76,0.2);
}

/* Corner bracket decorations */
.video-frame__corner {
  position: absolute;
  width: 24px; height: 24px;
  z-index: 3;
}
.video-frame__corner--tl { top: -1px;  left: -1px;  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.video-frame__corner--tr { top: -1px;  right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.video-frame__corner--bl { bottom: -1px; left: -1px;  border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.video-frame__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* Poster */
.video-frame__poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.5s ease;
}
.video-frame__poster.hidden { opacity: 0; pointer-events: none; }
.video-frame__poster-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, #1A1428 0%, #0A0810 60%, #060408 100%);
}
/* Poster 3-column layout */
.video-frame__poster {
  flex-direction: row;
  gap: 0;
}
.vp-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-8);
  position: relative;
  z-index: 2;
  gap: var(--sp-3);
}
.vp-col--left  { align-items: flex-start; border-right: 1px solid rgba(201,168,76,0.12); }
.vp-col--right { align-items: flex-end;   border-left:  1px solid rgba(201,168,76,0.12); }
.vp-col__season {
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
}
.vp-col__type {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.vp-col__brand {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  line-height: 1;
}
.vp-col__tag {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
}

/* Center column */
.vp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-6);
  position: relative;
  z-index: 2;
}
.vp-center__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  max-height: 60px;
}
.vp-center__hint {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* Play button */
.vplay {
  position: relative;
  z-index: 2;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  background: none; border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out);
}
.vplay:hover { transform: scale(1.1); }
.vplay__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.vplay__ring--outer {
  animation: vplay-pulse 2.4s ease-in-out infinite;
}
.vplay__ring--inner {
  inset: 8px;
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
}
@keyframes vplay-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.18); opacity: 0.2; }
}
.vplay__icon {
  width: 22px; height: 22px;
  color: var(--gold);
  margin-left: 4px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
  transition: filter 0.3s ease;
}
.vplay:hover .vplay__icon { filter: drop-shadow(0 0 16px rgba(201,168,76,0.9)); }

/* Actual video */
.video-frame__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none;
  background: #000;
  z-index: 2;
}
.video-frame__video.visible { display: block; }

/* Side editorial strip */
.video-section__side {
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  white-space: nowrap;
  z-index: 2;
}
.video-section__side-text {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.3);
}

/* ---- Ornamental section divider ---- */
.orn-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  padding: var(--sp-10) var(--sp-8);
  background: var(--bg);
}
.orn-div__line {
  height: 1px;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--border-gold));
}
.orn-div__line:last-child { background: linear-gradient(to left, transparent, var(--border-gold)); }
.orn-div__gems {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.5;
}

/* ---- Editorial Season Feature Section ---- */
.editorial-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 56vh;
  border-top: 1px solid var(--border);
}
.editorial__visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #0A0A0A;
}
.editorial__visual--video { background: #0A0A0A; }
.editorial__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
}
.editorial__video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.editorial__sound-btn {
  position: absolute;
  bottom: var(--sp-6); right: var(--sp-6);
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px 7px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  backdrop-filter: blur(6px);
}
.editorial__sound-btn:hover { background: rgba(0,0,0,0.8); color: #fff; }
.esb-icon { width: 16px; height: 16px; flex-shrink: 0; }
.editorial__visual-word { z-index: 2; }
.editorial__visual:not(.editorial__visual--video)::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 30% 40%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 78% 78%, rgba(201,168,76,0.055) 0%, transparent 50%);
}
.editorial__visual:not(.editorial__visual--video)::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.editorial__visual-word {
  position: absolute;
  bottom: var(--sp-10);
  left: var(--sp-10);
  writing-mode: vertical-rl;
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.065);
  user-select: none;
  z-index: 1;
  line-height: 1;
}
.editorial__text {
  background: var(--bg-alt);
  padding: var(--sp-20) var(--sp-16) var(--sp-20) var(--sp-24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
  position: relative;
  overflow: hidden;
}
.editorial__text::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.editorial__eyebrow {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
  position: relative; z-index: 1;
}
.editorial__heading {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.06em;
  position: relative; z-index: 1;
}
.editorial__body {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: var(--sp-10);
  max-width: 340px;
  position: relative; z-index: 1;
}
.editorial__cta { position: relative; z-index: 1; }
.editorial__counter {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--sp-8);
  position: relative; z-index: 1;
}
.editorial__counter-item .ec-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.editorial__counter-item .ec-label {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 768px) {
  .editorial-section { grid-template-columns: 1fr; }
  .editorial__visual { min-height: 260px; }
  .editorial__text   { padding: var(--sp-12) var(--sp-8); }
  .editorial__text::before { display: none; }
}

/* ---- Manifesto watermark ---- */
.manifesto__wm {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(7rem, 20vw, 16rem);
  font-weight: 300;
  color: rgba(201,168,76,0.028);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3em;
  line-height: 1;
  z-index: 0;
}

/* ---- Boutique visual grid overlay ---- */
.boutique-full__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  z-index: 2;
}
