/* ==========================================================================
   Fyvora.online — Midnight Atelier
   Premium luxury eCommerce landing page
   Pure CSS3 · Mobile-first · Production-ready
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #0B0B0D;
  --bg-secondary: #161218;
  --accent-primary: #6B1028;
  --accent-secondary: #8E1F3F;
  --gold: #C8A46B;
  --ivory: #E6D5C3;
  --card: rgba(25, 20, 25, 0.92);
  --border: rgba(200, 164, 107, 0.18);
  --border-strong: rgba(200, 164, 107, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #CFC7C2;
  --text-muted: rgba(207, 199, 194, 0.65);

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-editorial: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;
  --font-ui: "Inter", "Manrope", system-ui, sans-serif;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  --nav-height: 4.5rem;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: min(1180px, calc(100% - 2.5rem));
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-gold: 0 12px 40px rgba(107, 16, 40, 0.35);
  --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--accent-primary);
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   3. Typography Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-lead {
  max-width: 36rem;
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-header .section-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

.section--alt {
  background: var(--bg-secondary);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.45s var(--ease-luxury),
    box-shadow 0.45s var(--ease-luxury),
    background 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(200, 164, 107, 0.28) 50%,
    transparent 75%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-luxury);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-primary);
  border: 1px solid var(--gold);
  box-shadow: 0 8px 28px rgba(107, 16, 40, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(107, 16, 40, 0.55),
    0 0 24px rgba(200, 164, 107, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(200, 164, 107, 0.15);
}

.btn--sm {
  min-height: 2.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   6. Floating Navigation
   -------------------------------------------------------------------------- */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1120px, calc(100% - 1.5rem));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 0.65rem 0.85rem 0.65rem 1.5rem;
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

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

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-luxury);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
  flex-shrink: 0;
}

.nav-burger {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ivory);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-burger:hover {
  border-color: var(--gold);
  background: rgba(107, 16, 40, 0.25);
}

.nav-burger svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: rgba(22, 18, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.nav-drawer a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-drawer a:hover {
  background: rgba(107, 16, 40, 0.3);
  color: var(--text-primary);
}

.nav-drawer .btn {
  width: 100%;
  margin-top: 0.75rem;
}

#nav-toggle:checked ~ .nav .nav-drawer {
  display: block;
  animation: fadeRise 0.4s var(--ease-luxury);
}

#nav-toggle:checked ~ .nav .nav-burger .icon-open {
  display: none;
}

#nav-toggle:checked ~ .nav .nav-burger .icon-close {
  display: block;
}

.nav-burger .icon-close {
  display: none;
}

@media (min-width: 960px) {
  .nav-menu,
  .nav-cta {
    display: flex;
  }

  .nav-burger,
  .nav-drawer {
    display: none !important;
  }

  .nav {
    padding: 0.55rem 0.65rem 0.55rem 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   7. Hero — Luxury Showcase
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding:
    calc(var(--nav-height) + 4rem)
    0
    clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 75% 40%, rgba(107, 16, 40, 0.38), transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 70%, rgba(200, 164, 107, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(142, 31, 63, 0.2), transparent 50%),
    var(--bg-primary);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__spotlight {
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 31, 63, 0.35), transparent 68%);
  filter: blur(40px);
  animation: spotlightDrift 14s ease-in-out infinite alternate;
}

.hero__spotlight--a {
  top: 8%;
  right: 8%;
}

.hero__spotlight--b {
  bottom: 5%;
  left: 5%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(200, 164, 107, 0.12), transparent 70%);
  animation-delay: -5s;
  animation-duration: 18s;
}

.hero__gold-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.hero__gold-line--h {
  top: 28%;
  left: 5%;
  width: 18%;
  height: 1px;
}

.hero__gold-line--v {
  top: 18%;
  right: 12%;
  width: 1px;
  height: 22%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero__frame {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  opacity: 0.5;
  animation: frameFloat 12s ease-in-out infinite;
}

.hero__frame--lg {
  width: min(420px, 55vw);
  height: min(520px, 70vw);
  top: 12%;
  right: 6%;
  border-color: rgba(200, 164, 107, 0.22);
}

.hero__frame--sm {
  width: min(180px, 28vw);
  height: min(220px, 34vw);
  bottom: 18%;
  right: 28%;
  border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%;
  animation-delay: -4s;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 640px;
  animation: fadeRise 1s var(--ease-luxury) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__display {
  position: relative;
  min-height: 380px;
  animation: fadeRise 1.15s var(--ease-luxury) 0.15s both;
}

.product-platform {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  animation: platformFloat 7s ease-in-out infinite;
}

.product-platform__visual {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.product-platform__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(200, 164, 107, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(107, 16, 40, 0.45), rgba(22, 18, 24, 0.9));
}

.product-platform__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ivory);
  text-align: center;
  padding: 1rem;
}

.product-platform--bag {
  width: min(280px, 70%);
  height: 340px;
  top: 5%;
  left: 8%;
  z-index: 2;
}

.product-platform--gadget {
  width: min(210px, 55%);
  height: 250px;
  bottom: 8%;
  right: 4%;
  z-index: 3;
  animation-delay: -2.5s;
  border-radius: 1.75rem;
}

.product-platform--accent {
  width: min(140px, 38%);
  height: 160px;
  top: 42%;
  right: 28%;
  z-index: 1;
  animation-delay: -4s;
  opacity: 0.9;
}

.product-silhouette {
  position: relative;
  z-index: 1;
  width: 55%;
  height: 58%;
  border: 1.5px solid rgba(200, 164, 107, 0.45);
  background: linear-gradient(145deg, rgba(142, 31, 63, 0.35), rgba(11, 11, 13, 0.6));
}

.product-silhouette--bag {
  border-radius: 1rem 1rem 1.4rem 1.4rem;
  clip-path: polygon(12% 8%, 88% 8%, 96% 100%, 4% 100%);
}

.product-silhouette--watch {
  width: 42%;
  height: 52%;
  border-radius: 1.5rem;
}

.product-silhouette--case {
  width: 48%;
  height: 42%;
  border-radius: 0.75rem;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .hero__display {
    min-height: 520px;
  }
}

/* --------------------------------------------------------------------------
   8. Signature Collections
   -------------------------------------------------------------------------- */
.collections-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-luxury),
    border-color 0.45s ease,
    box-shadow 0.5s ease;
}

.collection-card__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 164, 107, 0.12), transparent 50%),
    linear-gradient(160deg, #1a1218, #0f0c10 60%, #1c1016);
  transition: transform 0.7s var(--ease-luxury);
}

.collection-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.92) 10%, transparent 65%);
}

.collection-card__shape {
  position: absolute;
  inset: 18% 20% 28%;
  border: 1px solid rgba(200, 164, 107, 0.3);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(107, 16, 40, 0.4), rgba(22, 18, 24, 0.5));
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(107, 16, 40, 0.75), rgba(11, 11, 13, 0.55));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.collection-card__body {
  position: relative;
  z-index: 2;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.collection-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 18rem;
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.collection-card:hover .collection-card__media {
  transform: scale(1.08);
}

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

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-card {
    min-height: 320px;
  }
}

/* --------------------------------------------------------------------------
   9. Best Sellers — Masonry Gallery
   -------------------------------------------------------------------------- */
.bestsellers-gallery {
  columns: 1;
  column-gap: 1.25rem;
}

.product-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-luxury),
    border-color 0.45s ease,
    box-shadow 0.5s ease;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(200, 164, 107, 0.55), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 2;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 35%, rgba(200, 164, 107, 0.14), transparent 55%),
    linear-gradient(165deg, #1c141a, #100d11);
}

.product-card--tall .product-card__media {
  aspect-ratio: 3 / 4.4;
}

.product-card--wide .product-card__media {
  aspect-ratio: 5 / 4;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.7s var(--ease-luxury);
}

.product-card__placeholder .sil {
  width: 42%;
  height: 48%;
  border: 1.5px solid rgba(200, 164, 107, 0.4);
  background: linear-gradient(150deg, rgba(142, 31, 63, 0.35), rgba(11, 11, 13, 0.55));
  border-radius: 1rem;
}

.product-card__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 13, 0.65);
  border: 1px solid var(--border);
  color: var(--ivory);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.product-card__wishlist:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(107, 16, 40, 0.45);
}

.product-card__wishlist svg {
  width: 1rem;
  height: 1rem;
}

.product-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.product-card h3 {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
}

.product-card__price {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.product-card__rating span {
  margin-left: 0.4rem;
  color: var(--text-muted);
  letter-spacing: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lift);
}

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

.product-card:hover .product-card__placeholder {
  transform: scale(1.08);
}

@media (min-width: 640px) {
  .bestsellers-gallery {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .bestsellers-gallery {
    columns: 3;
  }
}

/* --------------------------------------------------------------------------
   10. Featured Product Spotlight
   -------------------------------------------------------------------------- */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(107, 16, 40, 0.3), transparent 70%);
  pointer-events: none;
}

.spotlight-panel {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(25, 20, 25, 0.95), rgba(16, 12, 16, 0.98));
  position: relative;
}

.spotlight-panel::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

.spotlight-panel::before {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

.spotlight__visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 164, 107, 0.16), transparent 55%),
    linear-gradient(165deg, #22141c, #100d12);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.spotlight__visual .sil {
  width: min(220px, 55%);
  height: min(280px, 70%);
  border: 1.5px solid rgba(200, 164, 107, 0.5);
  border-radius: 1.25rem 1.25rem 1.6rem 1.6rem;
  clip-path: polygon(10% 6%, 90% 6%, 98% 100%, 2% 100%);
  background: linear-gradient(160deg, rgba(142, 31, 63, 0.45), rgba(11, 11, 13, 0.7));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: platformFloat 8s ease-in-out infinite;
}

.spotlight__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.spotlight__content > p {
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.spotlight__features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.spotlight__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.spotlight__features li::before {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(200, 164, 107, 0.5);
}

.spotlight__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.spotlight__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.spotlight__price small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

@media (min-width: 900px) {
  .spotlight-panel {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 2.5rem;
  }

  .spotlight-panel--reverse .spotlight__visual {
    order: 2;
  }

  .spotlight-panel--reverse .spotlight__content {
    order: 1;
  }
}

/* --------------------------------------------------------------------------
   11. Premium Categories — Staggered Panels
   -------------------------------------------------------------------------- */
.categories-stage {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

.category-panel {
  position: relative;
  min-height: 220px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.5s var(--ease-luxury), border-color 0.4s ease;
}

.category-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(142, 31, 63, 0.35), transparent 45%),
    linear-gradient(135deg, rgba(25, 20, 25, 0.2), transparent);
  pointer-events: none;
}

.category-panel__index {
  font-family: var(--font-editorial);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(200, 164, 107, 0.2);
  margin-bottom: 0.75rem;
}

.category-panel h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.category-panel p {
  position: relative;
  max-width: 22rem;
  font-size: 0.95rem;
}

.category-panel:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

@media (min-width: 768px) {
  .categories-stage {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .category-panel--offset {
    transform: translateY(2rem);
  }

  .category-panel--offset:hover {
    transform: translateY(calc(2rem - 4px));
  }

  .category-panel--overlap {
    margin-left: 1.5rem;
    width: calc(100% - 1.5rem);
  }
}

@media (min-width: 1024px) {
  .categories-stage {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.75rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   12. Brand Story
   -------------------------------------------------------------------------- */
.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.story__visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 40% 40%, rgba(107, 16, 40, 0.4), transparent 55%),
    linear-gradient(160deg, #1a1218, #0c0b0e);
  overflow: hidden;
}

.story__visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(200, 164, 107, 0.25);
  border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%;
}

.story__visual::after {
  content: "Boutique";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-editorial);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.08em;
}

.story__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.story__content p {
  margin-bottom: 1.1rem;
  max-width: 34rem;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.story__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1.2;
}

.story__stats span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .story__visual {
    min-height: 520px;
  }
}

/* --------------------------------------------------------------------------
   13. Customer Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(200, 164, 107, 0.12);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.review-card__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 35% 30%, rgba(200, 164, 107, 0.35), transparent 50%),
    linear-gradient(145deg, var(--accent-secondary), var(--bg-secondary));
  flex-shrink: 0;
}

.review-card__identity strong {
  display: block;
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.review-card__identity span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-card blockquote {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ivory);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   14. Membership Tiers
   -------------------------------------------------------------------------- */
.membership-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.tier-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s ease;
}

.tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.tier-card__price {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.tier-card__price strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.15rem;
}

.tier-card ul {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.tier-card li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.tier-card li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.3rem;
}

.tier-card--featured {
  background: linear-gradient(160deg, rgba(107, 16, 40, 0.92), rgba(22, 18, 24, 0.98) 55%, rgba(142, 31, 63, 0.55));
  border-color: var(--gold);
  box-shadow:
    0 0 40px rgba(200, 164, 107, 0.15),
    0 20px 50px rgba(107, 16, 40, 0.35);
  animation: softGlow 4.5s ease-in-out infinite alternate;
}

.tier-card__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-card:hover {
  transform: translateY(-6px);
}

.tier-card--featured:hover {
  transform: translateY(-10px);
}

@media (min-width: 900px) {
  .membership-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .tier-card--featured {
    padding-block: 2.75rem;
    transform: scale(1.04);
    z-index: 1;
  }

  .tier-card--featured:hover {
    transform: scale(1.04) translateY(-8px);
  }
}

/* --------------------------------------------------------------------------
   15. Luxury Shopping CTA
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding-block: clamp(5rem, 12vw, 8rem);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(107, 16, 40, 0.55), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 164, 107, 0.12), transparent 55%),
    radial-gradient(ellipse 35% 45% at 85% 25%, rgba(142, 31, 63, 0.35), transparent 50%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
}

.cta-banner__bg::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px solid var(--border);
  border-radius: 48% 52% 45% 55% / 42% 48% 52% 58%;
  opacity: 0.6;
  animation: frameFloat 16s ease-in-out infinite;
}

.cta-banner__bg::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 107, 0.45), transparent);
}

.cta-banner__curve {
  position: absolute;
  bottom: 15%;
  left: 15%;
  right: 15%;
  height: 80px;
  border: 1px solid rgba(200, 164, 107, 0.2);
  border-radius: 50%;
  border-top: none;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 16ch;
  margin-inline: auto;
}

.cta-banner p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 22rem;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.15rem;
}

.footer-col ul {
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter input {
  flex: 1 1 160px;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(11, 11, 13, 0.6);
  color: var(--text-primary);
}

.newsletter input::placeholder {
  color: var(--text-muted);
}

.newsletter .btn {
  min-height: 2.75rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background: rgba(107, 16, 40, 0.35);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   17. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spotlightDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-6%, 8%) scale(1.12);
  }
}

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

@keyframes frameFloat {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(2deg) scale(1.02);
  }
}

@keyframes softGlow {
  from {
    box-shadow:
      0 0 28px rgba(200, 164, 107, 0.12),
      0 20px 50px rgba(107, 16, 40, 0.3);
  }
  to {
    box-shadow:
      0 0 48px rgba(200, 164, 107, 0.22),
      0 24px 60px rgba(107, 16, 40, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   18. Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}
