/* ═══════════════════════════════════════════════════════
   HOMEPAGE SPECIFIC STYLING
   ═══════════════════════════════════════════════════════ */
#hp {
  position: relative;
  z-index: 2;
  min-height: 800vh
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 32px;
  padding: 120px 7% 72px;
  position: relative;
  overflow: hidden;
}

.hero.hero--with-showcase {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
}

.hero-content {
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUp 1s var(--ease-lux) 0.2s forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.eyebrow-rule {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
}

.eyebrow-text {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold-l);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6.5vw, 100px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--ivory-warm);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 1.1s var(--ease-lux) 0.4s forwards;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-h1 strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ivory-warm) 0%, var(--champagne) 35%, var(--gold-l) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.95;
  color: var(--champagne);
  max-width: 540px;
  margin-bottom: 52px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s var(--ease-lux) 0.65s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s var(--ease-lux) 0.85s forwards;
}

.btn-gold,
.btn-ghost,
.btn-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: transparent;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0px;
  /* Sharp high-fashion edges */
  transition: all 0.5s var(--ease-lux);
}

.btn-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold-l);
  background: rgba(223, 186, 95, 0.04);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  color: var(--ivory-warm);
}

.btn-ghost:hover {
  border-color: var(--ivory-warm);
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

.btn-crimson {
  background: var(--crimson);
  border: 1.5px solid var(--crimson);
  color: var(--ivory-warm);
}

.btn-crimson:hover {
  background: var(--crimson-l);
  border-color: var(--crimson-l);
  box-shadow: 0 0 30px var(--crim-glow);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s var(--ease-lux) 1s forwards;
}

.hs-item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-l);
}

.hs-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   HERO SHOWCASE — product card carousel (right column)
   ═══════════════════════════════════════════════════════ */
.hero-showcase-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  justify-self: center;
  align-self: center;
  opacity: 0;
  /* Use dedicated keyframes so we don't fight layout transforms */
  animation: heroShowcaseIn 1.1s var(--ease-lux) 0.55s forwards;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes heroShowcaseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-showcase-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 88%;
  height: 70%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(223, 186, 95, 0.34) 0%, rgba(178, 142, 61, 0.12) 45%, transparent 72%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlowPulse 5.5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-showcase-orbit {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Fixed stage height so cards center reliably */
  height: clamp(340px, 48vh, 460px);
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.hero-showcase-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* Float on a wrapper property that won't conflict with card math */
  animation: heroStackFloat 6s ease-in-out infinite;
}

@keyframes heroStackFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.hero-card {
  --tx: 0px;
  --ty: 0px;
  --tz: 0px;
  --scale: 0.82;
  --tilt: 0deg;
  --opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 260px);
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #140e18;
  border: 1px solid rgba(223, 186, 95, 0.2);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 36px rgba(223, 186, 95, 0.08);
  transform:
    translate3d(calc(-50% + var(--tx)), calc(-50% + var(--ty)), var(--tz))
    rotateY(var(--tilt))
    scale(var(--scale));
  opacity: var(--opacity);
  transition:
    transform 0.85s var(--ease-lux),
    opacity 0.55s ease,
    box-shadow 0.55s ease,
    border-color 0.55s ease;
  will-change: transform, opacity;
  pointer-events: none;
  transform-origin: center center;
  backface-visibility: hidden;
}

.hero-card.is-active {
  border-color: rgba(223, 186, 95, 0.45);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 230, 170, 0.08) inset,
    0 0 48px rgba(223, 186, 95, 0.18);
}

/* Full-bleed image only — no text overlays */
.hero-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1018;
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-lux);
  user-select: none;
  -webkit-user-drag: none;
}

.hero-card.is-active .hero-card-media img {
  animation: heroCardKen 8s ease-in-out infinite alternate;
}

@keyframes heroCardKen {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1%); }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.scroll-cue:hover {
  opacity: 1
}

.sc-text {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 4px
}

.sc-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.sc-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: var(--ivory);
  animation: cueLine 2s infinite var(--ease-lux);
}

@keyframes cueLine {
  0% {
    left: -20px
  }

  100% {
    left: 60px
  }
}

/* ═══════════════════════════════════════════════════════
   TRUST MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee-wrap {
  background: rgba(8, 5, 14, 0.80);
  border-top: 1px solid rgba(223, 186, 95, 0.15);
  border-bottom: 1px solid rgba(223, 186, 95, 0.15);
  padding: 20px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  z-index: 3;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeRun 38s linear infinite;
  width: max-content;
}

.mi {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-right: 64px;
}

.mi-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 16px;
}

@keyframes marqueeRun {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════════════════
   EDITORIAL PANELS
   ═══════════════════════════════════════════════════════ */
.editorial-sec {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 120px 10%;
  position: relative;
  z-index: 3;
  gap: 80px;
  align-items: center;
}

.editorial-sec.rev {
  grid-template-columns: 1fr 1.2fr;
}

.ed-panel {
  max-width: 560px;
  background: rgba(14, 11, 16, 0.68);
  border: 1px solid var(--border);
  padding: 64px;
  position: relative;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  order: 1;
}

.editorial-sec.rev .ed-panel {
  order: 2;
}

.ed-image-wrap {
  width: 100%;
  height: 520px;
  position: relative;
  order: 2;
}

.editorial-sec.rev .ed-image-wrap {
  order: 1;
}

.ed-image-frame {
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--border);
  background: rgba(14, 11, 16, 0.72);
  padding: 12px;
  position: relative;
  box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.65);
  transform: rotate(3deg);
  transition: transform 0.8s var(--ease-lux);
}

.editorial-sec.rev .ed-image-frame {
  transform: rotate(-3deg);
}

.ed-image-frame:hover {
  transform: rotate(1deg) scale(1.02);
}

.editorial-sec.rev .ed-image-frame:hover {
  transform: rotate(-1deg) scale(1.02);
}

.ed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(0.9) contrast(1.05);
  transition: opacity 0.6s ease;
}

.ed-image-frame:hover .ed-img {
  opacity: 1.0;
}

.ed-img-pattern {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.ed-tag {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-l);
  margin-bottom: 24px;
  font-weight: 600;
}

.ed-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory-warm);
  margin-bottom: 28px;
}

.ed-h strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--ivory-warm) 30%, var(--gold-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ed-p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-on-dark);
  margin-bottom: 36px;
  font-weight: 400;
}

.ed-list {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ed-list li {
  font-size: 11.5px;
  letter-spacing: 1px;
  color: var(--ivory-warm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.ed-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

/* ═══════════════════════════════════════════════════════
   B2B VAULT / CATALOG
   ═══════════════════════════════════════════════════════ */
.sec {
  padding: 120px 8%;
  position: relative;
  z-index: 3;
}

.sh {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-l);
  margin-bottom: 20px;
  font-weight: 600;
}

.sec-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ivory-warm);
}

.sec-h strong,
.sec-h em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, var(--ivory-warm) 0%, var(--gold-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-p {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--champagne);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.7);
}

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

.v-card {
  background: rgba(14, 11, 16, 0.72);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  transition: all 0.6s var(--ease-lux);
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.v-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--gold-glow-s), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.v-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-h);
  box-shadow: 0 15px 40px rgba(223, 186, 95, 0.12);
}

.v-card:hover .v-card-glow {
  opacity: 1
}

.v-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 24px;
}

.v-badge {
  position: absolute;
  top: 48px;
  right: 48px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-l);
  border: 1.5px solid var(--gold);
  padding: 4px 10px;
  font-weight: 600;
  background: rgba(3, 1, 3, 0.6);
}

.v-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--ivory-warm);
}

.v-body {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 32px;
}

.v-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-s);
  padding-top: 24px;
  margin-bottom: 32px;
}

.vs {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px
}

.vs label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-l);
  font-weight: 500;
  opacity: 0.9
}

.vs span {
  color: var(--ivory-warm);
  font-weight: 600
}

.v-action {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  width: max-content;
  padding-bottom: 4px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.v-card:hover .v-action {
  color: var(--gold-l);
  border-color: var(--gold-l)
}

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stats-sec {
  background: rgba(8, 5, 14, 0.88);
  border-top: 1px solid rgba(223, 186, 95, 0.18);
  border-bottom: 1px solid rgba(223, 186, 95, 0.18);
  padding: 80px 6%;
  position: relative;
  z-index: 3;
}

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

.sc {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-l);
}

.sc-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ivory);
  font-weight: 500;
}

.sc-sub {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   WHY CARDS
   ═══════════════════════════════════════════════════════ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.why-header {
  max-width: 520px;
}

.why-header .sec-label {
  justify-content: flex-start;
}

.why-header .sec-h {
  text-align: left;
}

.why-header-guarantee {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  margin-bottom: 44px;
  border-top: 1px solid rgba(223, 186, 95, 0.15);
  padding-top: 28px;
}

.wh-item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wh-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-l);
}

.wh-label {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--champagne);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7);
}

.why-grid-asym {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 60px;
}

.why-card-luxe {
  background: rgba(14, 11, 16, 0.80);
  border: 1px solid rgba(223, 186, 95, 0.16);
  padding: 40px;
  position: relative;
  transition: all 0.6s var(--ease-lux);
  box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.why-card-luxe:nth-child(even) {
  transform: translateY(48px);
}

.why-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 20px;
}

.why-card-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 24px;
}

.why-card-luxe h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ivory-warm);
  margin-bottom: 12px;
}

.why-card-luxe p {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
}

.why-card-luxe:hover {
  border-color: rgba(223, 186, 95, 0.45);
  box-shadow: 0 15px 40px rgba(223, 186, 95, 0.12);
}

.why-card-luxe:nth-child(odd):hover {
  transform: translateY(-8px);
}

.why-card-luxe:nth-child(even):hover {
  transform: translateY(40px);
}

/* ═══════════════════════════════════════════════════════
   HERITAGE
   ═══════════════════════════════════════════════════════ */

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

.h-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hsw-main {
  width: 250px;
  height: 400px;
  background: #0d0b0f;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.75), inset 0 0 30px rgba(255, 255, 255, 0.05);
  transform: rotate(4deg) translate(20px, 15px);
  transition: transform 0.6s var(--ease-lux);
}

.hsw-main:hover {
  transform: rotate(2deg) translate(20px, 5px) scale(1.02);
}

.hsw-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eae5d8, #c8bfaa)
}

.hsw-border-strip {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-d);
}

.hsw-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, #961828, #6a101b);
}

.hsw-pallu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(0deg, #961828, #6a101b);
  border-top: 2px solid var(--gold);
}

.hsw-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.15)
}

.hsw-sec {
  position: absolute;
  width: 180px;
  height: 300px;
  left: calc(50% - 210px);
  top: calc(50% - 170px);
  z-index: 1;
  opacity: 0.96;
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.8);
  transform: rotate(-6deg);
  transition: transform 0.6s var(--ease-lux);
}

.hsw-sec:hover {
  transform: rotate(-8deg) scale(1.02);
}

.hsw-sec-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9e1c2e, #751220)
}

.hsw-sec-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background: var(--gold-d)
}

.hsw-sec-pallu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--gold-d)
}

.h-tag {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 190px);
  z-index: 3;
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-l);
  background: rgba(8, 5, 14, 0.92);
  padding: 6px 14px;
  border: 1px solid rgba(223, 186, 95, 0.30);
  transform: rotate(-3deg);
}

.h-year-badge {
  position: absolute;
  top: 50px;
  right: calc(50% - 170px);
  z-index: 3;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(223, 186, 95, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 5, 14, 0.92);
  transform: rotate(6deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.h-year-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold-l);
  font-weight: 700;
}

.h-year-badge span:last-child {
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.h-content {
  max-width: 540px
}

.h-content .sec-label {
  justify-content: flex-start
}

.h-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 28px;
  color: var(--ivory-warm);
}

.h-title strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ivory-warm) 0%, var(--gold-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-body {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.7);
}

.h-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(223, 186, 95, 0.15);
  padding-top: 28px;
}

.h-spec {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.h-spec label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.h-spec span {
  font-size: 14.5px;
  color: var(--gold-l);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   MANUFACTURING PROCESS
   ═══════════════════════════════════════════════════════ */

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 186, 95, 0.45), transparent);
  z-index: 1;
}

.ps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 12%;
  text-align: center;
}

.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--crimson-l);
  font-weight: 700;
}

.ps-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(20, 16, 24, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.5s var(--ease-lux);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ps:hover .ps-circle {
  border-color: var(--gold-l);
  box-shadow: 0 0 20px rgba(223, 186, 95, 0.45), 0 0 10px rgba(176, 34, 53, 0.3);
  transform: scale(1.1);
}

.ps-lbl {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--champagne);
  font-weight: 600;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   TECH METRICS
   ═══════════════════════════════════════════════════════ */

.spec-rows {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(14, 11, 16, 0.82);
  border: 1.5px solid rgba(223, 186, 95, 0.22);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -15px 25px 50px rgba(0, 0, 0, 0.65);
}

.spec-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 110px;
  align-items: center;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(223, 186, 95, 0.10);
  transition: all 0.5s var(--ease-lux);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: rgba(223, 186, 95, 0.04);
  transform: translateX(12px);
  border-bottom-color: rgba(223, 186, 95, 0.22);
}

.spec-lbl {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-l);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-lbl::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

.spec-val {
  font-size: 13.5px;
  color: var(--ivory-warm);
  font-weight: 400;
}

.spec-chip {
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 12px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════
   EXPORT MAP
   ═══════════════════════════════════════════════════════ */

.export-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: center;
}

.export-map-placeholder {
  height: 400px;
  background: rgba(14, 11, 16, 0.55);
  border: 1px solid rgba(223, 186, 95, 0.14);
  position: relative;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-l);
  animation: mapPulse 2s infinite ease-in-out;
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 0.4
  }

  50% {
    transform: scale(2.2);
    opacity: 1
  }

  100% {
    transform: scale(1);
    opacity: 0.4
  }
}

.map-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.map-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-l);
}

.map-label p {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.export-countries {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ec-row {
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(14, 11, 16, 0.72);
  border: 1px solid rgba(223, 186, 95, 0.12);
}

.ec-flag {
  font-size: 16px;
  margin-right: 16px
}

.ec-name {
  font-size: 11.5px;
  color: var(--ivory-warm);
  font-weight: 500;
  letter-spacing: 1px;
}

.ec-tag {
  margin-left: auto;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS & FAQ
   ═══════════════════════════════════════════════════════ */

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.t-card {
  background: rgba(14, 11, 16, 0.80);
  border: 1px solid rgba(223, 186, 95, 0.16);
  padding: 48px;
  position: relative;
}

.t-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: rgba(223, 186, 95, 0.22);
  line-height: 0.1;
  position: absolute;
  top: 40px;
  left: 24px;
}

.t-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-on-dark);
  font-weight: 300;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.t-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(223, 186, 95, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold-l);
  background: rgba(14, 11, 16, 0.90);
}

.t-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ivory-warm);
}

.t-role {
  font-size: 8.5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.t-loc {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
}

.partner-strip {
  border-top: 1px solid rgba(223, 186, 95, 0.12);
  padding: 48px 0 20px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(223, 186, 95, 0.04) 0%, transparent 80%);
}

.ps-lbl-text {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.85;
}

.ps-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.ps-pill {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--ivory-warm);
  border: 1px solid rgba(223, 186, 95, 0.20);
  background: rgba(14, 11, 16, 0.80);
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s var(--ease-lux);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ps-pill::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}

.ps-pill:hover {
  border-color: rgba(223, 186, 95, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(223, 186, 95, 0.08);
  color: var(--gold-l);
}

/* ═══════════════════════════════════════════════════════
   ENQUIRY CTA — premium B2B access panel
   ═══════════════════════════════════════════════════════ */
.enquiry-sec {
  position: relative;
  overflow: hidden;
  padding: 110px 8%;
  min-height: auto;
  display: block;
}

.eq-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.eq-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(223, 186, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 186, 95, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.7;
}

.eq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.eq-orb-a {
  width: 420px;
  height: 420px;
  left: -6%;
  top: 10%;
  background: radial-gradient(circle, rgba(154, 31, 50, 0.35), transparent 68%);
}

.eq-orb-b {
  width: 480px;
  height: 480px;
  right: -8%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(223, 186, 95, 0.28), transparent 70%);
}

.eq-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.eq-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background:
    linear-gradient(145deg, rgba(18, 12, 24, 0.92) 0%, rgba(10, 7, 16, 0.88) 55%, rgba(20, 14, 28, 0.9) 100%);
  border: 1px solid rgba(223, 186, 95, 0.22);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px rgba(223, 186, 95, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
}

.eq-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 226, 154, 0.55), transparent);
  z-index: 3;
}

.eq-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(223, 186, 95, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(154, 31, 50, 0.1), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.eq-main {
  position: relative;
  z-index: 1;
  padding: 56px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(223, 186, 95, 0.12);
}

.eq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-l);
  font-weight: 600;
  border: 1px solid rgba(223, 186, 95, 0.3);
  background: rgba(223, 186, 95, 0.06);
  padding: 9px 16px 9px 12px;
  margin-bottom: 28px;
  border-radius: 999px;
}

.eq-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55);
  animation: eqPulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes eqPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(61, 220, 132, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
    transform: scale(1);
  }
}

.eq-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory-warm);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-align: left;
}

.eq-h strong {
  display: block;
  font-weight: 700;
  margin-top: 4px;
  background: linear-gradient(120deg, var(--ivory-warm) 0%, var(--gold-l) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eq-p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--champagne);
  font-weight: 400;
  max-width: 520px;
  margin: 0 0 36px;
  opacity: 0.95;
  text-align: left;
}

.eq-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin-bottom: 36px;
}

.eq-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), border-color 0.35s ease, background 0.35s ease;
  border-radius: 2px;
}

.eq-btn-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.eq-btn-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.eq-btn-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.eq-btn-sub {
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: none;
  opacity: 0.72;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eq-btn-primary {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 48%, var(--gold-d) 100%);
  color: #1a1008;
  box-shadow: 0 10px 28px rgba(223, 186, 95, 0.22);
}

.eq-btn-primary .eq-btn-ico {
  background: rgba(10, 7, 16, 0.14);
  color: #1a1008;
}

.eq-btn-primary .eq-btn-sub {
  color: rgba(26, 16, 8, 0.72);
  opacity: 1;
}

.eq-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(223, 186, 95, 0.35);
}

.eq-btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory-warm);
  border: 1px solid rgba(223, 186, 95, 0.28);
}

.eq-btn-ghost .eq-btn-ico {
  background: rgba(223, 186, 95, 0.1);
  color: var(--gold-l);
  border: 1px solid rgba(223, 186, 95, 0.22);
}

.eq-btn-ghost .eq-btn-sub {
  color: var(--text-faint);
  opacity: 1;
}

.eq-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 186, 95, 0.55);
  background: rgba(223, 186, 95, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.eq-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 4px;
}

.eq-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.eq-trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid rgba(223, 186, 95, 0.35);
  color: var(--gold-l);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(223, 186, 95, 0.06);
}

/* Side privilege card */
.eq-side {
  position: relative;
  z-index: 1;
  padding: 36px 36px 36px 32px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(160deg, rgba(223, 186, 95, 0.07) 0%, transparent 42%),
    rgba(8, 5, 12, 0.35);
}

.eq-card {
  width: 100%;
  border: 1px solid rgba(223, 186, 95, 0.28);
  background:
    linear-gradient(165deg, rgba(28, 20, 36, 0.95) 0%, rgba(12, 8, 18, 0.98) 100%);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 230, 170, 0.08);
  position: relative;
}

.eq-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(223, 186, 95, 0.1);
  pointer-events: none;
}

.eq-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.eq-card-kicker {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
}

.eq-card-seal {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(223, 186, 95, 0.45);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-l);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 226, 154, 0.2), transparent 55%),
    rgba(223, 186, 95, 0.08);
  box-shadow: 0 0 18px rgba(223, 186, 95, 0.15);
}

.eq-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ivory-warm);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  line-height: 1.15;
}

.eq-card-lead {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-faint);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.eq-perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.eq-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(223, 186, 95, 0.1);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ivory-dim);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.eq-perk:hover {
  border-color: rgba(223, 186, 95, 0.28);
  background: rgba(223, 186, 95, 0.05);
}

.eq-perk-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(223, 186, 95, 0.12);
  color: var(--gold-l);
  border: 1px solid rgba(223, 186, 95, 0.28);
  margin-top: 0;
}

.eq-card-foot {
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.eq-foot-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 186, 95, 0.4), transparent);
  margin-bottom: 12px;
}

.eq-card-foot p {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-faint);
  line-height: 1.5;
  margin: 0;
}

/* Legacy class aliases (in case referenced elsewhere) */
.eq-inner { max-width: none; }
.eq-badge { display: none; }
.eq-btns,
.eq-guarantees,
.eq-g,
.eq-chk,
.btn-wa,
.btn-em { /* kept harmless */ }

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.faq-sec .sec-p {
  margin-bottom: 24px;
}

.faq-accordion {
  max-width: 840px;
  margin: 54px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 3;
}

.faq-item {
  background: rgba(14, 11, 16, 0.80);
  border: 1px solid rgba(223, 186, 95, 0.14);
  transition: all 0.4s var(--ease-lux);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(223, 186, 95, 0.45);
  box-shadow: 0 12px 30px rgba(223, 186, 95, 0.08);
}

.faq-item.active {
  border-left: 3px solid var(--gold);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 26px 36px;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ivory-warm);
  transition: color 0.4s ease;
}

.faq-trigger:hover .faq-q,
.faq-item.active .faq-q {
  color: var(--gold-l);
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s ease;
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}

.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-lux);
}

.faq-content {
  padding: 0 36px 30px 36px;
}

.faq-content p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   HOME CATEGORY PORTFOLIOS
   ═══════════════════════════════════════════════════════ */
.home-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 54px auto 0 auto;
  position: relative;
  z-index: 3;
}

.home-cat-card {
  display: block;
  position: relative;
  height: 390px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(14, 11, 16, 0.65);
  text-decoration: none;
  transition: all 0.5s var(--ease-lux);
}

.home-cat-img-box {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.home-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.8s var(--ease-lux), opacity 0.6s ease;
}

.home-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 16, 0.92) 0%, transparent 70%);
}

.home-cat-details {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-s);
  background: rgba(14, 11, 16, 0.5);
  transition: background 0.4s ease;
}

.home-cat-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ivory-warm);
  font-weight: 600;
  margin: 0;
  transition: color 0.4s ease;
}

.home-cat-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-l);
  transition: transform 0.4s ease;
}

.home-cat-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 15px 35px rgba(223, 186, 95, 0.08);
}

.home-cat-card:hover .home-cat-img {
  transform: scale(1.05);
  opacity: 0.95;
}

.home-cat-card:hover .home-cat-details h3 {
  color: var(--gold-l);
}

.home-cat-card:hover .home-cat-link {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   PREMIUM PRODUCTS SECTION
   ═══════════════════════════════════════════════════════ */
.prem-products-sec {
  position: relative;
  z-index: 3;
}

.prem-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 48px auto;
  flex-wrap: wrap;
  max-width: 800px;
  position: relative;
  z-index: 3;
}

.prem-tab {
  background: rgba(14, 11, 16, 0.45);
  border: 1px solid var(--border-s);
  color: var(--text-muted);
  padding: 12px 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-lux);
}

.prem-tab:hover {
  border-color: var(--border);
  color: var(--ivory);
}

.prem-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 0 15px var(--gold-glow);
}

.prem-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.prem-cat-group {
  display: none;
}

.prem-cat-group.active {
  display: block;
  animation: premFadeIn 0.6s ease forwards;
}

@keyframes premFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}