:root {
  --gold: #c9a96e;
  --gold-light: #e0c992;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --navy: #1e3a5f;
  --bg: #050505;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111;
  --text: #f0f0f0;
  --text-light: #fff;
  --text-dim: #999;
  --text-muted: #555;
  --border: #181818;
  --font: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

::selection { background: var(--gold); color: #000; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section { padding: 120px 0; }

.section__header { margin-bottom: 56px; text-align: center; }

.section__number {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.section__sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.gold { color: var(--gold); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  letter-spacing: 0.03em;
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* ====== ENTRANCE OVERLAY ====== */

.entrance {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.entrance__inner { text-align: center; }

.entrance__lion {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.entrance__lion svg { width: 100%; height: 100%; }

/* ====== NAV ====== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom-color: rgba(201, 169, 110, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav__links { display: flex; align-items: center; gap: 28px; }

.nav__links--left { margin-right: auto; }
.nav__links--right { margin-left: auto; }

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text);
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ====== HERO ====== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
  filter: saturate(0.9);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 58, 95, 0.5) 0%, rgba(5, 5, 5, 0.85) 100%);
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(5, 5, 5, 0.7) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title { margin-bottom: 20px; }

.hero__line {
  display: block;
  line-height: 1.05;
}

.hero__line--pre {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 4px;
}

.hero__line--main {
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.hero__line--sub {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero__text {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__scroll svg { animation: bounceDown 2.5s ease-in-out infinite; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ====== SPLIT LAYOUT ====== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse .split__visual { order: 1; }
.split--reverse .split__content { order: 2; }

.split__visual { position: relative; }

.split__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.split__image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.split__image:hover .split__image-bg { transform: scale(1.04); }

.split__image-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: var(--radius);
  z-index: -1;
}

.split__content .divider { margin-top: 16px; }

.split__text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 18px;
}

.split__stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.split__stat { display: flex; flex-direction: column; }

.split__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.split__stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ====== FEATURED ITEMS ====== */

.featured__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.featured__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.featured__item:hover {
  border-color: rgba(201, 169, 110, 0.1);
  background: var(--bg-card);
}

.featured__item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.featured__item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.featured__item p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ====== PRODUCTS ====== */

.products {
  background: linear-gradient(180deg, var(--bg) 0%, #08080c 100%);
}

.products__filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.products__filter-btn {
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.products__filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.products__filter-btn.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.product-card:hover {
  border-color: rgba(201, 169, 110, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__btn {
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__btn:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.product-card__cart {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  color: var(--text);
}

.product-card__cart:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.product-card__info { padding: 16px 18px 20px; }

.product-card__category {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.product-card__rating {
  font-size: 0.75rem;
  color: var(--gold);
}

/* ====== CART BADGE ====== */
.nav__cart-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
.nav__cart-link:hover { color: var(--gold); }
.nav__cart-count {
  position: absolute;
  top: -4px;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ====== CART PANEL ====== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.cart-panel.open { transform: translateX(0); }

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-panel__header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.cart-panel__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.cart-panel__close:hover {
  background: var(--border);
  color: var(--text);
}

.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-panel__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-dim);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cart-item__size {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 2px;
}
.cart-item__price {
  font-size: 0.85rem;
  color: var(--gold);
}
.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cart-item__qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all 0.2s var(--ease);
}
.cart-item__qty-btn:hover { background: var(--border); color: var(--text); }
.cart-item__qty-value {
  width: 32px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.cart-item__remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  border-radius: 50%;
}
.cart-item__remove:hover { color: #ff5c5c; background: rgba(255,92,92,0.1); }

.cart-panel__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-panel__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
}
.cart-panel__subtotal span:last-child { color: var(--gold); }

@media (max-width: 480px) {
  .cart-panel { width: 100vw; }
}

/* ====== TOAST ====== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #fff;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  max-width: 360px;
}
.toast--success { background: #1a6b3c; }
.toast--error { background: #6b1a1a; }
.toast--info { background: #1a3a6b; }
.toast--visible { opacity: 1; transform: translateY(0); }

/* ====== PRODUCTS LOADING / EMPTY ====== */
.products__loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--text-dim);
  gap: 16px;
}
.products__loading p { font-size: 0.9rem; }
.products__empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--text-dim);
  text-align: center;
}
.products__empty p { font-size: 0.95rem; }
.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
  .nav__cart-link { padding: 0 4px; }
  .toast-container { bottom: 16px; right: 16px; left: 16px; }
  .toast { max-width: 100%; }
}

/* ====== VALUES ====== */

.values {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  border-color: rgba(201, 169, 110, 0.1);
  transform: translateY(-4px);
  background: var(--bg-card);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  transition: border-color 0.3s var(--ease);
}

.value-card:hover .value-card__icon { border-color: rgba(201, 169, 110, 0.3); }

.value-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ====== NEWSLETTER ====== */

.newsletter { padding-top: 0; padding-bottom: 100px; }

.newsletter__card {
  background: linear-gradient(135deg, rgba(30,58,95,0.12), rgba(201,169,110,0.04));
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: var(--radius);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter__badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 100px;
  margin-bottom: 20px;
}

.newsletter__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.newsletter__text {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter__input {
  flex: 1;
  padding: 15px 20px;
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { border-color: rgba(201, 169, 110, 0.2); }

.newsletter__btn { flex-shrink: 0; }

/* ====== CONTACT ====== */

.contact__form {
  max-width: 560px;
  margin: 0 auto;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s var(--ease);
  margin-bottom: 14px;
}

.contact__input::placeholder,
.contact__textarea::placeholder { color: var(--text-muted); }

.contact__input:focus,
.contact__textarea:focus { border-color: rgba(201, 169, 110, 0.2); }

.contact__btn { width: 100%; justify-content: center; }

.contact__status {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 12px;
  min-height: 20px;
}

/* ====== FOOTER ====== */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.footer__desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ====== QUICK VIEW MODAL ====== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  padding: 20px;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s var(--ease);
}

.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.modal__close:hover { background: rgba(255,255,255,0.12); }

.modal__inner { display: grid; grid-template-columns: 1fr 1fr; }

.modal__image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 16px 0 0 16px;
}

.modal__content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

.modal__rating { font-size: 0.85rem; color: var(--gold); }

.modal__price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
}

.modal__desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.modal__sizes { display: flex; flex-direction: column; gap: 8px; }

.modal__sizes-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal__sizes-options { display: flex; flex-wrap: wrap; gap: 8px; }

.modal__size-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}

.modal__size-btn:hover { border-color: var(--gold); color: var(--gold); }

.modal__size-btn.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.modal__add { margin-top: 8px; gap: 8px; }

/* ====== RESPONSIVE ====== */

@media (max-width: 1024px) {
  .split { gap: 48px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

.nav__mobile-open { display: none; }

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section__title { font-size: 1.75rem; }

  .nav__inner { display: flex; align-items: center; justify-content: space-between; }
  .nav__links { display: none; }
  .nav__logo { position: static; transform: none; }
  .nav__toggle { display: flex; }

  .nav__mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(24px);
    justify-content: center;
    padding: 40px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav__mobile-open.open { right: 0; }

  .nav__mobile-open .nav__link {
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    width: 100%;
    display: block;
  }

  .hero__line--main { font-size: clamp(3rem, 14vw, 5rem); }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__image { aspect-ratio: 16 / 10; }
  .split--reverse .split__visual { order: 2; }
  .split--reverse .split__content { order: 1; }
  .split__stats { gap: 24px; }

  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter__card { padding: 48px 28px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__btn { width: 100%; justify-content: center; }
  .newsletter__title { font-size: 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__desc { max-width: 100%; }

  .modal__inner { grid-template-columns: 1fr; }
  .modal__image { aspect-ratio: 4 / 3; border-radius: 16px 16px 0 0; }
  .modal__content { padding: 24px 20px; }
  .modal__title { font-size: 1.3rem; }
}

@media (max-width: 600px) {
  .products__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
