/* =========================================================
   DartRingZ.nl — Premium Design System
   Dark luxe • Black, white, gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ============ CORE PALETTE — warm blacks, champagne gold ============ */
  --black:           #0a0908;   /* base background */
  --black-soft:      #141210;   /* elevated surface */
  --black-elevated:  #141210;
  --black-card:      #1a1814;   /* card surface */
  --line:            #2a2520;   /* warm border, subtle */
  --line-strong:     rgba(201, 169, 97, 0.28);

  /* ============ GOLD — champagne, never yellow ============ */
  --gold:        #c9a961;       /* primary champagne */
  --gold-bright: #f4d58d;       /* hover / accent highlight */
  --gold-pale:   #e8d4a0;       /* gradient stop, light */
  --gold-deep:   #8a7338;       /* gradient stop, dark */
  --gold-glow:   rgba(201, 169, 97, 0.18);

  /* Material gradients — gold should feel like real metal, never flat */
  --gold-grad:        linear-gradient(135deg, #c9a961 0%, #e8d4a0 100%);
  --gold-grad-hover:  linear-gradient(135deg, #d4b572 0%, #f4d58d 100%);
  --gold-grad-text:   linear-gradient(135deg, #f4d58d 0%, #c9a961 60%, #8a7338 100%);
  --gold-grad-button: linear-gradient(180deg, #e8d4a0 0%, #c9a961 50%, #a48948 100%);

  /* ============ TEXT — warm off-white hierarchy ============ */
  --white:        #f5f1e8;      /* primary text, never pure white */
  --white-soft:   #d8d2c5;      /* secondary copy */
  --muted:        #8b8378;      /* labels, captions */
  --muted-deep:   #5c544a;      /* tertiary, hints */

  /* ============ ACCENTS ============ */
  --red-accent:   #b73a2c;
  --green-accent: #1d7e36;

  /* ============ TYPE ============ */
  --font-display: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Inter', 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* ============ SPACING — generous breathing room ============ */
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --max:    1320px;
  --max-narrow: 920px;
  --section-py: clamp(5rem, 10vw, 9rem);

  /* ============ MOTION — premium ease, slow, confident ============ */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
  --t-fast:    0.35s;
  --t-base:    0.6s;
  --t-slow:    0.9s;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Premium focus ring — never lose accessibility */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: rgba(201, 169, 97, 0.32); color: var(--white); }

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

/* ============ TYPOGRAPHY ============ */
/* Caps label — Inter, 11px, 0.25em tracking. The signature "premium" cue. */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  line-height: 1;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.eyebrow-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
}
h2 { font-weight: 400; }
h3 { font-weight: 500; line-height: 1.15; }

.display {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.display em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--white-soft);
  max-width: 58ch;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

/* Editorial pull quote helper */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 32ch;
}

/* ============ CONTAINER & LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

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

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease),
              backdrop-filter var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: rgba(201, 169, 97, 0.10);
}

/* Decorative gold hairline below the header — fades to transparent at the edges */
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 169, 97, 0.0) 4%,
    rgba(201, 169, 97, 0.45) 50%,
    rgba(201, 169, 97, 0.0) 96%,
    transparent 100%);
  opacity: 0.55;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.site-header.scrolled::after { opacity: 1; }

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand img {
  height: auto;
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: opacity var(--t-fast) var(--ease);
}
.brand:hover img { opacity: 0.9; }

.nav-main {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-main a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #8B8378;
  position: relative;
  padding: 0.6rem 0;
  display: inline-block;
  transition: color 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.nav-main a:hover { color: #F5F1E8; }
.nav-main a.active { color: #F5F1E8; }
.nav-main a:hover::after,
.nav-main a.active::after { opacity: 1; }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #8B8378;
  position: relative;
  cursor: pointer;
  transition: color 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.icon-btn:hover { color: #F5F1E8; }
.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.icon-btn svg * { stroke-width: 1.5; }

/* Subtle gold dot replacing the numeric favorites badge */
.icon-btn .fav-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.45);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.icon-btn .fav-dot.is-visible {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 1px;
  background: var(--white);
  transition: 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad-button);
  color: #1a1410;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 12px 30px -10px rgba(201, 169, 97, 0.5);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 1.1s var(--ease-soft);
  pointer-events: none;
}
.btn-gold:hover::before { left: 130%; }
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-grad-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 18px 40px -10px rgba(244, 213, 141, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 97, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: calc(88px + 4rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('hp-ring.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-text { animation: fadeUp 1.1s var(--ease) both; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.6rem; }
.hero-text .lead { margin-bottom: 2.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  background: var(--gold-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}
.hero-stats .stat .lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7rem;
  display: block;
}

/* Hero visual — animated dartboard ring */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  margin-inline: auto;
  animation: fadeIn 1.4s var(--ease) 0.2s both;
}
.hero-visual svg { width: 100%; height: 100%; }

.spin-slow { animation: spin 80s linear infinite; transform-origin: center; }
.spin-rev { animation: spin 120s linear infinite reverse; transform-origin: center; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.hero-tag-float {
  position: absolute;
  background: var(--black-elevated);
  border: 1px solid var(--line-strong);
  padding: 0.7rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(10px);
}
.hero-tag-float.t1 { top: 8%; left: -5%; animation: floatY 5s ease-in-out infinite; }
.hero-tag-float.t2 { bottom: 12%; right: -3%; animation: floatY 6s ease-in-out infinite reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ MARQUEE — slower, calmer, more editorial ============ */
.marquee {
  background: var(--black-soft);
  border-block: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12vw;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--black-soft), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--black-soft), transparent); }
.marquee-track {
  display: flex;
  gap: 5rem;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  letter-spacing: 0.005em;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
  opacity: 0.7;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ USP STRIP ============ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-cell {
  padding: 2.6rem 2rem;
  border-right: 1px solid var(--line);
  transition: background var(--t-base) var(--ease);
  position: relative;
}
.usp-cell:hover { background: rgba(201, 169, 97, 0.025); }
.usp-cell:last-child { border-right: none; }
.usp-cell .icon {
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0.9;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.usp-cell:hover .icon { transform: translateY(-2px); opacity: 1; }
.usp-cell h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.55rem;
  letter-spacing: -0.015em;
}
.usp-cell p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 32ch;
}

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  flex-wrap: wrap;
}
.section-head .left { max-width: 660px; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head .lead { margin-top: 1.4rem; }
.section-head.centered {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section-head.centered .eyebrow { margin-bottom: 1.4rem; }
.section-head.centered .eyebrow::before { display: none; }

/* ============ PRODUCT CARDS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--black-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--gold-glow);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--black-card) 0%, var(--black) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media svg {
  width: 78%;
  height: 78%;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-media svg { transform: scale(1.08) rotate(8deg); }
.product-media .product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-media .product-photo { transform: scale(1.06); }

/* ===== PDP gallery zoom hint ===== */
.gallery-main.gallery-zoom { position: relative; display: block; }
.gallery-zoom-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: rgba(10, 9, 8, 0.7);
  color: #f5f3ee;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 0.85;
  transform: translateY(0);
  transition: opacity 0.25s var(--ease);
}
.gallery-main.gallery-zoom:hover .gallery-zoom-hint,
.gallery-main.gallery-zoom:focus-visible .gallery-zoom-hint {
  opacity: 1;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 7, 6, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open {
  background: rgba(8, 7, 6, 0.94);
  opacity: 1;
}
.lb-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: 92vw;
  max-height: 88vh;
  transform: scale(0.96);
  transition: transform 0.22s var(--ease);
}
.lightbox.is-open .lb-frame { transform: scale(1); }
.lb-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  background: #0a0908;
}
.lb-caption {
  color: rgba(245, 243, 238, 0.7);
  font-size: 0.88rem;
  font-style: italic;
  text-align: center;
  max-width: 80vw;
  min-height: 1.2em;
}
.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 243, 238, 0.55);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}
.lb-close,
.lb-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.78);
  color: #f5f3ee;
  border: 1px solid rgba(201, 169, 97, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(4px);
}
.lb-close:hover,
.lb-nav:hover {
  background: var(--gold, #c9a961);
  color: #0a0908;
  transform: scale(1.06);
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) {
  .lb-close { top: 0.8rem; right: 0.8rem; width: 40px; height: 40px; }
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .lb-img { max-height: 75vh; }
}

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  z-index: 2;
}
.product-badge.new { background: var(--white); }
.product-badge.limited { background: var(--red-accent); color: var(--white); }
.product-badge.popular { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); }
.product-badge.sold-out { background: rgba(20, 18, 16, 0.85); color: var(--white); border: 1px solid var(--line); }

.stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.stock-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
}
.stock-tag.stock-in    { background: rgba(44, 138, 60, 0.12); color: #6ec483; }
.stock-tag.stock-in::before    { background: #6ec483; }
.stock-tag.stock-low   { background: rgba(212, 164, 55, 0.14); color: #e0c47a; }
.stock-tag.stock-low::before   { background: #e0c47a; box-shadow: 0 0 6px rgba(212, 164, 55, 0.6); animation: stockPulse 2s ease-in-out infinite; }
.stock-tag.stock-out   { background: rgba(183, 58, 44, 0.14); color: #d68a7a; }
.stock-tag.stock-out::before   { background: #d68a7a; }
@keyframes stockPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

.fav-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s var(--ease);
}
.fav-btn:hover { color: var(--gold); border-color: var(--gold); }
.fav-btn.active { color: var(--red-accent); border-color: var(--red-accent); }
.fav-btn.active svg { fill: currentColor; }

.product-info {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info .meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.product-info .desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex: 1;
}

.swatches {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--black);
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.swatch:hover { transform: scale(1.2); }
.swatch.gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); }
.swatch.white { background: var(--white); }
.swatch.red { background: var(--red-accent); }
.swatch.green { background: var(--green-accent); }
.swatch.silver { background: linear-gradient(135deg, #d8d8d8, #8b8b8b); }

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
}
.price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.4rem;
}
.price-old {
  font-size: 0.85rem;
  color: var(--muted-deep);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-family: var(--font-body);
}

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s var(--ease);
}
.add-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.filter-chip {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--line-strong); color: var(--white); }
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ============ FEATURED — split section ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--black-card), var(--black-soft));
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
}
.split-text .eyebrow { margin-bottom: 1.2rem; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text .lead { margin-bottom: 2rem; }

.feature-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}
.step {
  position: relative;
  padding: 2.5rem 1.8rem 2rem;
  border: 1px solid var(--line);
  background: var(--black-elevated);
  transition: all 0.4s var(--ease);
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  position: absolute;
  top: -0.4rem; right: 1rem;
  opacity: 0.6;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  position: relative;
}
.step p {
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.6;
}

/* ============ COMPATIBILITY ============ */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.compat-item {
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
  text-align: center;
  background: rgba(201, 169, 97, 0.02);
  transition: all 0.3s var(--ease);
}
.compat-item:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.05); }
.compat-item .ic { color: var(--gold); margin-bottom: 0.7rem; }
.compat-item .label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ TESTIMONIAL ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--black-elevated);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -1rem; left: 1rem;
  opacity: 0.4;
  line-height: 1;
}
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial .author .name {
  font-weight: 500;
  font-size: 0.92rem;
  display: block;
}
.testimonial .author .role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.stars { color: var(--gold); margin-bottom: 0.8rem; font-size: 0.85rem; letter-spacing: 0.1em; }

/* ============ CTA BAND ============ */
.cta-band {
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.62) 50%, rgba(10, 9, 8, 0.92)),
    url('paralax.png') center / cover fixed;
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.14) 0%, transparent 62%);
  pointer-events: none;
}
.cta-band .container {
  text-align: center;
  position: relative;
  padding-block: clamp(5rem, 10vw, 7rem);
}
.cta-band h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}
.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 2.8rem;
  text-align: center;
  max-width: 56ch;
}
.cta-band .hero-cta { justify-content: center; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-grid a {
  color: var(--white-soft);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer-grid a:hover { color: var(--gold); }

.footer-brand p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-brand img { height: 60px; margin-bottom: 0.5rem; }

.newsletter {
  display: flex;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
}
.newsletter input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}
.newsletter input::placeholder { color: var(--muted-deep); }
.newsletter button {
  padding: 0 1.4rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.newsletter button:hover { background: var(--gold-bright); }

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bar .pay {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.footer-bar .pay span {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--white-soft);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--gold); color: var(--black); border-color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 1.5rem;
  color: var(--white-soft);
  line-height: 1.7;
  max-width: 60ch;
}

/* ============ PAGE HEADER (interior pages) ============ */
.page-head {
  padding-top: calc(88px + 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--gold-glow) 0%, transparent 55%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 2; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 0.6rem; }

/* ============ PRODUCT DETAIL ============ */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: 3rem;
}
.pdp-gallery {
  position: sticky;
  top: 100px;
}
.pdp-main-img {
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--black-card), var(--black));
  border: 1px solid var(--line);
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-main-img svg { width: 80%; height: 80%; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--black-elevated);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
}
.pdp-thumb:hover, .pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb svg { width: 60%; height: 60%; }

.pdp-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-block: 1.5rem 2rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--line);
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 500;
}
.pdp-section { margin-bottom: 2rem; }
.pdp-section h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pdp-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pdp-option {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: transparent;
  color: var(--white);
}
.pdp-option:hover { border-color: var(--gold); }
.pdp-option.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.pdp-color-options {
  display: flex;
  gap: 0.7rem;
}
.pdp-color {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease);
}
.pdp-color::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.pdp-color.active { border-color: var(--gold); }

.pdp-cta {
  display: flex;
  gap: 0.7rem;
  margin-block: 2rem;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
}
.qty button {
  width: 44px; height: 48px;
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.qty button:hover { color: var(--gold); }
.qty input {
  width: 50px;
  height: 48px;
  text-align: center;
  background: transparent;
  border: none;
  border-inline: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  outline: none;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
}
.trust-item .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; margin-bottom: 2px; font-weight: 500; }
.trust-item span { color: var(--muted); font-size: 0.78rem; }

/* ============ TABS ============ */
.tabs {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.tab-headers {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.tab-h {
  padding: 1.1rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s var(--ease);
}
.tab-h.active, .tab-h:hover { color: var(--gold); border-color: var(--gold); }
.tab-content { display: none; max-width: 740px; }
.tab-content.active { display: block; animation: fadeIn 0.5s var(--ease); }
.tab-content p { margin-bottom: 1rem; color: var(--white-soft); line-height: 1.7; }
.tab-content ul { list-style: none; margin-block: 1rem; }
.tab-content ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}
.tab-content ul li:last-child { border-bottom: none; }
.tab-content ul li span:first-child { color: var(--muted); }

/* ============ FAVORITES PANEL ============ */
.fav-panel {
  position: fixed;
  top: 0; right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--black-soft);
  border-left: 1px solid var(--line-strong);
  z-index: 200;
  padding: 2rem;
  transition: right 0.5s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.fav-panel.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
.fav-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.fav-panel-head h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
}
.fav-panel-close {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fav-panel-close:hover { color: var(--gold); border-color: var(--gold); }

.fav-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.fav-empty .ic { color: var(--gold); margin-bottom: 1.5rem; opacity: 0.6; }
.fav-empty h4 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }

.fav-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.fav-row .img {
  width: 80px; height: 80px;
  background: var(--black-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fav-row .img svg { width: 70%; height: 70%; }
.fav-row .info { flex: 1; }
.fav-row .info h5 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; font-weight: 500; }
.fav-row .info .p { color: var(--gold); font-size: 0.95rem; font-family: var(--font-display); }
.fav-row .rm {
  color: var(--muted);
  font-size: 1.4rem;
  align-self: flex-start;
  padding: 0.2rem 0.4rem;
  transition: color 0.3s var(--ease);
}
.fav-row .rm:hover { color: var(--red-accent); }

.fav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.fav-overlay.open { opacity: 1; pointer-events: all; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--black-elevated);
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  z-index: 250;
  font-size: 0.88rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.5s var(--ease),
              opacity 0.4s var(--ease),
              visibility 0s linear 0.4s;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.5s var(--ease),
              opacity 0.4s var(--ease),
              visibility 0s linear 0s;
}
.toast .ic { color: var(--gold); }

/* ============ ABOUT SECTIONS ============ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-soft);
  margin-bottom: 1.4rem;
}
.about-hero p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 0.3rem 0.6rem 0 0;
  color: var(--gold);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value {
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--black-elevated);
}
.value .ic { color: var(--gold); margin-bottom: 1rem; }
.value h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.value p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info ul {
  list-style: none;
  margin-top: 2rem;
}
.contact-info ul li {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info .ic { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-info .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info .val { font-size: 0.95rem; color: var(--white); }

.form-grid {
  display: grid;
  gap: 1.2rem;
}
.form-grid .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--black-elevated);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 140px; }

/* ============ FAVORITES PAGE ============ */
.fav-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  border: 1px dashed var(--line-strong);
  margin-top: 3rem;
}
.empty-state .ic { color: var(--gold); margin-bottom: 1.5rem; opacity: 0.5; }
.empty-state h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.empty-state p { color: var(--muted); max-width: 480px; margin: 0 auto 2rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero .container,
  .split,
  .pdp,
  .about-hero,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 420px; }
  .pdp-gallery { position: static; }
  .footer-grid { gap: 2.5rem; }
  .menu-toggle { display: flex; }
  .nav-main {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 9, 8, 0.96);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(201, 169, 97, 0.10);
    padding: 2.4rem var(--gutter) 3rem;
    gap: 1.4rem;
    transform: translateY(-110%);
    transition: transform var(--t-base) var(--ease);
  }
  .nav-main.open { transform: translateY(0); }
}
@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stats .stat .num { font-size: 1.7rem; }
  .form-grid .row { grid-template-columns: 1fr; }
  .nav-tools .icon-btn:nth-child(1) { display: none; }
  .pdp-cta { flex-wrap: wrap; }
  .pdp-cta .btn { flex: 1; justify-content: center; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

/* =====================================================
   SUBPAGE COMPONENTS — page heads, breadcrumbs, etc.
   ===================================================== */

.page-head {
  padding: 9rem 0 4rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  position: relative;
}

.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(201, 169, 97, 0.06), transparent 70%);
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.5);
  margin-bottom: 2rem;
}

.breadcrumbs a {
  color: rgba(245, 243, 238, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: rgba(201, 169, 97, 0.4); }
.breadcrumbs span:not(.sep) { color: var(--gold); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  max-width: 900px;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.page-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.65);
  max-width: 660px;
}

/* =====================================================
   CATALOG / FILTER BAR
   ===================================================== */

.catalog {
  padding: 4rem 0 6rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 3rem;
  position: sticky;
  top: 90px;
  z-index: 20;
  backdrop-filter: blur(20px);
}

.chip {
  background: transparent;
  border: 1px solid rgba(245, 243, 238, 0.12);
  color: rgba(245, 243, 238, 0.7);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

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

.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.filter-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.4);
  padding: 0 0.8rem;
}

/* =====================================================
   PRODUCT DETAIL PAGE (PDP)
   ===================================================== */

.pdp-head {
  padding-top: clamp(48px, 8vw, 120px);
  padding-bottom: 2.5rem;
}
.pdp-head .breadcrumbs {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 238, 0.4);
  margin-bottom: 0;
}
.pdp-head .breadcrumbs a { color: rgba(245, 243, 238, 0.4); }

.pdp { padding: 3rem 0 6rem; }

.pdp > .container {
  max-width: 1400px;
  width: 100%;
  padding-inline: clamp(40px, 5vw, 120px);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 3fr 4fr 4fr;
  gap: 60px;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 110px;
  min-width: 0;
  max-width: 100%;
}

.gallery-main {
  aspect-ratio: 1;
  min-height: 400px;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.gallery-main img,
.gallery-main .product-photo {
  object-fit: contain;
}

.gallery-main svg {
  width: 86%;
  height: 86%;
  filter: drop-shadow(0 30px 60px rgba(201, 169, 97, 0.2));
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.thumb {
  aspect-ratio: 1;
  border: 1px solid rgba(245, 243, 238, 0.1);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thumb:hover { border-color: rgba(201, 169, 97, 0.4); }
.thumb.is-active {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.05);
}

.pdp-main-details,
.pdp-extra-details {
  min-width: 0;
  max-width: 100%;
}

.pdp-extra-details {
  padding-top: 1.6rem;
  max-width: 100%;
}

.pdp-edition {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(245, 243, 238, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.rating-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.5);
}

.pdp-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.75);
  margin: 0 0 2rem;
}
.pdp-desc p { margin: 0 0 0.9rem; }
.pdp-desc p:last-child { margin-bottom: 0; }

.pdp-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.08);
  border-bottom: 1px solid rgba(245, 243, 238, 0.08);
  margin-bottom: 2rem;
}

.pdp-price .price-current {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.pdp-price .price-old {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: rgba(245, 243, 238, 0.4);
  text-decoration: line-through;
}

.pdp-price .stock-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
  padding: 0;
  background: transparent;
  margin-left: auto;
}
.pdp-price .stock-tag.stock-in { color: rgba(110, 196, 131, 0.85); background: transparent; }
.pdp-price .stock-tag.stock-low { color: rgba(224, 196, 122, 0.9); background: transparent; }
.pdp-price .stock-tag.stock-out { color: rgba(214, 138, 122, 0.9); background: transparent; }
.pdp-price .stock-tag::before { width: 7px; height: 7px; }

.price-vat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.4);
  margin-left: auto;
}

.option-row { margin-bottom: 1.6rem; }

.option-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.option-value {
  color: var(--gold);
  text-transform: capitalize;
}

.swatch-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.swatch-lg {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(245, 243, 238, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.swatch-lg:hover { transform: scale(1.08); border-color: rgba(201, 169, 97, 0.5); }
.swatch-lg.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--bg, #0a0908), 0 0 0 5px var(--gold);
}

.size-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-pill {
  background: transparent;
  border: 1px solid rgba(245, 243, 238, 0.15);
  color: rgba(245, 243, 238, 0.7);
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.size-pill:hover { border-color: var(--gold); color: var(--gold); }
.size-pill.is-active {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold);
}

.pdp-cta-row {
  display: flex;
  gap: 0.7rem;
  margin: 2rem 0 0.6rem;
}

.pdp-cta-row .btn {
  flex: 1;
  min-height: 56px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.btn-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  border: 1px solid rgba(245, 243, 238, 0.2);
  background: transparent;
  color: rgba(245, 243, 238, 0.6);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.btn-icon-lg:hover { color: var(--gold); border-color: var(--gold); }
.btn-icon-lg.is-active {
  color: var(--red-accent);
  border-color: var(--red-accent);
}
.btn-icon-lg.is-active svg { fill: currentColor; }

.btn-lg { padding: 1.1rem 2rem; font-size: 0.9rem; }

.pdp-notice {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.4);
  padding: 0.7rem 0;
  border: none;
  border-top: 1px solid rgba(245, 243, 238, 0.06);
  border-radius: 0;
  background: transparent;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.08);
  border-bottom: 1px solid rgba(245, 243, 238, 0.08);
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245, 243, 238, 0.7);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* PDP TABS */
.pdp-tabs { margin-top: 0; }

.tab-headers {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.tab-h {
  background: transparent;
  border: none;
  color: rgba(245, 243, 238, 0.5);
  padding: 0.4rem 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}

.tab-h:hover { color: var(--white); }

.tab-h.is-active { color: var(--gold); }

.tab-h.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.tab-body {
  display: none;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.75);
}

.tab-body.is-active { display: block; }
.tab-body p + p { margin-top: 1rem; }

.pdp-long-desc p { margin: 0 0 1rem; }
.pdp-long-desc p:last-child { margin-bottom: 0; }

.pdp-extra-details .check-list { margin: 1.6rem 0; }
.pdp-extra-details .check-list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 243, 238, 0.78);
}
.pdp-extra-details .check-list li svg { display: none; }
.pdp-extra-details .check-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
  width: 14px;
  display: inline-block;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: rgba(245, 243, 238, 0.78);
}

.check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li .check-i {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 1px;
  min-width: 24px;
}

.muted-note {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.5);
  font-style: italic;
  margin-top: 1rem;
}

.muted-note a { color: var(--gold); }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.spec-table tr {
  border-bottom: 1px solid rgba(245, 243, 238, 0.06);
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 0;
  text-align: left;
  font-size: 0.9rem;
}

.spec-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
  font-weight: 400;
  width: 45%;
}

.spec-table td {
  color: var(--white);
}

/* RELATED PRODUCTS */
.related {
  padding: 5rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.06);
}

/* =====================================================
   HOW IT WORKS — DETAILED
   ===================================================== */

.hiw-detail {
  padding: 5rem 0;
}

.hiw-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(245, 243, 238, 0.06);
}

.hiw-block:last-child { border-bottom: none; }

.hiw-block.reverse {
  grid-template-columns: 80px 1fr 1fr;
}

.hiw-block.reverse .hiw-visual { order: -1; }

.hiw-num-large {
  font-family: var(--font-display);
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-weight: 500;
  line-height: 1;
}

.hiw-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
}

.hiw-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.75);
}

.hiw-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.08), transparent 60%);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hiw-visual svg {
  width: 100%;
  height: 100%;
}

.usp-grid-section {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(201, 169, 97, 0.04), transparent 70%);
  border-top: 1px solid rgba(201, 169, 97, 0.08);
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}

.usp-grid-section .usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.usp-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(245, 243, 238, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.4s var(--ease);
}

.usp-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(201, 169, 97, 0.02);
  transform: translateY(-3px);
}

.usp-card .usp-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.usp-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 243, 238, 0.65);
  margin: 0;
}

/* =====================================================
   COMPATIBILITY GRID
   ===================================================== */

.compat-grid-section { padding: 5rem 0; }

.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.compat-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(245, 243, 238, 0.07);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(201, 169, 97, 0.015));
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.compat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.compat-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-3px);
}

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

.compat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.compat-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.compat-h {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.compat-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 243, 238, 0.7);
  margin: 0 0 1.2rem;
}

.compat-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.04);
}

/* DISCLAIMER */
.disclaimer-section {
  padding: 0 0 5rem;
}

.disclaimer-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
  background: rgba(201, 169, 97, 0.03);
  border-radius: 4px;
}

.disclaimer-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.disclaimer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.disclaimer-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 243, 238, 0.75);
  margin: 0;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

.about-intro {
  padding: 5rem 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 243, 238, 0.78);
  margin: 0 0 1.4rem;
}

.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 0.2rem 0.7rem 0 0;
  color: var(--gold);
  font-weight: 500;
}

.about-intro-visual {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.04), rgba(201, 169, 97, 0.01));
  position: relative;
  margin-top: 1.5rem;
}

.about-quote-mark {
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.about-quote-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  margin: 1rem 0 1.5rem;
  color: var(--white);
}

.about-quote-attr {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.values-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.06);
}

.eyebrow.centered { display: block; text-align: center; margin: 0 auto 1rem; }
.section-title.centered { text-align: center; margin: 0 auto 3rem; max-width: 700px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(245, 243, 238, 0.06);
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  border-color: rgba(201, 169, 97, 0.25);
  background: rgba(201, 169, 97, 0.015);
}

.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 243, 238, 0.7);
  margin: 0;
}

.numbers-section {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 1000px 400px at 50% 50%, rgba(201, 169, 97, 0.05), transparent 70%);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.num-big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.num-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
}

/* =====================================================
   FAQ PAGE
   ===================================================== */

.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 880px;
}

.faq-cat { margin-bottom: 3.5rem; }

.faq-cat-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(245, 243, 238, 0.07);
  padding: 0;
  transition: background 0.3s var(--ease);
}

.faq-item[open] {
  background: rgba(201, 169, 97, 0.015);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s var(--ease);
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; transition: transform 0.3s var(--ease); }

.faq-item[open] .faq-icon {
  background: var(--gold);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--black);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  padding: 0 0 1.4rem;
  color: rgba(245, 243, 238, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-a p { margin: 0 0 0.8rem; }
.faq-a p:last-child { margin: 0; }
.faq-a a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 169, 97, 0.3); }

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

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-label {
  display: block;
}

.form-label > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
  margin-bottom: 0.55rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 243, 238, 0.12);
  color: var(--white);
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.03);
}

.form-input::placeholder { color: rgba(245, 243, 238, 0.35); }

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

select.form-input option { background: var(--black); color: var(--white); }

.form-textarea { resize: vertical; min-height: 130px; font-family: var(--font-body); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.7);
}

.form-checkbox input { margin-top: 3px; accent-color: var(--gold); }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(245, 243, 238, 0.4);
  margin: 0;
}

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 4px;
  background: rgba(201, 169, 97, 0.04);
}

.form-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
}

.form-success p {
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.7rem;
}

.contact-info-card {
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(245, 243, 238, 0.07);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.3s var(--ease);
}

.contact-info-card:hover {
  border-color: rgba(201, 169, 97, 0.25);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.contact-info-title {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.contact-info-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.7);
  margin: 0 0 0.6rem;
}

.contact-info-text .muted { color: rgba(245, 243, 238, 0.4); font-size: 0.85rem; }

.contact-info-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  transition: border-color 0.3s var(--ease);
}

.contact-info-link:hover { border-bottom-color: var(--gold); }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: rgba(245, 243, 238, 0.75);
  border-bottom: 1px solid rgba(245, 243, 238, 0.05);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
}

.cta-band-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* =====================================================
   FAVORITES PAGE
   ===================================================== */

.favs-page-section { padding: 4rem 0 6rem; min-height: 50vh; }

.favs-empty {
  text-align: center;
  padding: 5rem 1rem;
  border: 1px dashed rgba(201, 169, 97, 0.2);
  border-radius: 4px;
}

.favs-empty-icon {
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.favs-empty-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
}

.favs-empty-sub {
  color: rgba(245, 243, 238, 0.6);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}

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

@media (max-width: 980px) {
  .hiw-block,
  .hiw-block.reverse {
    grid-template-columns: 60px 1fr;
  }
  .hiw-visual { grid-column: 1 / -1; max-width: 500px; margin: 1.5rem auto 0; }
  .hiw-block.reverse .hiw-visual { order: 0; }
  .compat-grid,
  .values-grid,
  .usp-grid-section .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .filter-bar { position: static; }
}

/* PDP responsive: layout-specific overrides */
@media (max-width: 1024px) {
  .pdp > .container { padding-inline: clamp(24px, 4vw, 48px); }
  .pdp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pdp-gallery { position: static; }
  .pdp-extra-details {
    grid-column: 1 / -1;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-extra-details { padding-top: 0; }
}

@media (max-width: 640px) {
  .page-head { padding: 7rem 0 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .compat-grid,
  .values-grid,
  .usp-grid-section .usp-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .hiw-block,
  .hiw-block.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hiw-num-large { font-size: 3.5rem; }
  .pdp-cta-row { flex-direction: column; }
  .btn-icon-lg { width: 100%; }
  .filter-bar {
    padding: 0.7rem 0.9rem;
    gap: 0.4rem;
    border-radius: 14px;
    justify-content: flex-start;
  }
  .chip { padding: 0.45rem 0.9rem; font-size: 0.65rem; }
  .filter-meta {
    width: 100%;
    padding: 0.5rem 0 0.1rem;
    text-align: center;
    margin-left: 0;
    border-top: 1px solid rgba(245, 243, 238, 0.06);
    margin-top: 0.3rem;
  }
  .pdp-price { flex-wrap: wrap; }
  .price-vat { width: 100%; margin-left: 0; }
  .tab-headers { gap: 0.1rem; }
  .tab-h { padding: 0.7rem 0.6rem; font-size: 0.66rem; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .disclaimer-card { grid-template-columns: 1fr; gap: 1rem; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; }
  .cta-band {
    background:
      linear-gradient(90deg, rgba(10, 9, 8, 0.88), rgba(10, 9, 8, 0.58) 50%, rgba(10, 9, 8, 0.88)),
      url('paralax.png') center / cover scroll;
  }
}

/* =========================================================
   PREMIUM UPGRADES — homepage polish
   ========================================================= */

/* ---- 1. Scroll progress bar (top) ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold));
  box-shadow: 0 0 12px rgba(201, 169, 97, 0.5);
  z-index: 1000;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ---- 2. Press strip ---- */
.press-strip {
  border-block: 1px solid var(--line);
  background: var(--black);
  padding-block: 2.5rem;
  position: relative;
}
.press-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.press-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.press-eyebrow::before,
.press-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 3.4rem);
  width: 100%;
}
.press-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--white-soft);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
  white-space: nowrap;
}
.press-name:hover { opacity: 1; color: var(--gold-pale); }
.press-divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
  display: none;
}
@media (min-width: 720px) { .press-divider { display: inline-block; } }

/* ---- 4. Manifesto / pull-quote section ---- */
.manifesto {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
  background: var(--black);
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: -1px 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  position: relative;
}
.manifesto-mark {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 0.8;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: -0.2em;
  font-style: italic;
  font-weight: 400;
  user-select: none;
}
.manifesto-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 2rem;
}
.manifesto-text em {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.manifesto-attr {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifesto-attr::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ---- 5. Numbered steps connector + lift ---- */
.steps-premium {
  position: relative;
  padding-top: 38px;          /* room for the upper half of the circles */
}
.steps-premium::before {
  content: '';
  position: absolute;
  top: 38px;                  /* exactly the vertical centre of the circles */
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right,
    rgba(201, 169, 97, 0.4) 0 6px,
    transparent 6px 14px);
  z-index: 0;
}
.steps-premium .step {
  position: relative;
  z-index: 1;
  background: var(--black-elevated);
  border: 1px solid rgba(201, 169, 97, 0.08);  /* much subtler border */
  padding: 4.5rem 1.8rem 2rem;                 /* room for centred circle */
  text-align: center;
}
.steps-premium .step:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.steps-premium .step-num {
  /* override the original absolute right-top placement */
  position: absolute;
  top: -38px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);

  background: var(--black);
  border: 1px solid var(--gold);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  -webkit-text-stroke: 0;        /* clear the outline-only style */
  opacity: 1;
  line-height: 1;

  /* Black halo punches the circle through the dotted connector */
  box-shadow:
    0 0 0 8px var(--black),
    0 0 24px rgba(201, 169, 97, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.steps-premium .step:hover .step-num {
  transform: translateX(-50%) scale(1.06);
  box-shadow:
    0 0 0 8px var(--black),
    0 0 36px rgba(201, 169, 97, 0.4);
}
.steps-premium .step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.steps-premium .step p {
  color: var(--white-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 32ch;
  margin-inline: auto;
}
@media (max-width: 800px) {
  .steps-premium { padding-top: 0; }
  .steps-premium::before { display: none; }
  .steps-premium .step { padding-top: 4.5rem; }
}

/* ---- 6. Refined testimonials ---- */
.testimonial-premium {
  background: linear-gradient(180deg, var(--black-elevated), var(--black-card));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.4rem 2rem 2rem;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.testimonial-premium::before {
  content: '"';
  position: absolute;
  top: -0.55em;
  left: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}
.testimonial-premium:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--gold-glow);
}
.testimonial-premium .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--white-soft);
  margin-block: 0.5rem 1.6rem;
}
.testimonial-premium .stars {
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.testimonial-premium .author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testimonial-premium .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-premium .author .name {
  display: block;
  font-weight: 500;
  color: var(--white);
  font-size: 0.92rem;
}
.testimonial-premium .author .role {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ---- 7. Edition badge for Limited Edition split ---- */
.edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(201, 169, 97, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.edition-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: editionPulse 2.4s var(--ease) infinite;
}
@keyframes editionPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

/* ---- 8. Scroll-fade reveal ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-scroll-line::after,
  .edition-badge .dot { animation: none; }
}
