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

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 0 8%;
  position: relative;
  overflow: hidden;
}

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

.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);
}

.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
   ═══════════════════════════════════════════════════════ */
.enquiry-sec {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.eq-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(223, 186, 95, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 186, 95, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  opacity: 0.5;
}

.eq-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.eq-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-l);
  border: 1px solid var(--border);
  padding: 6px 16px;
  margin-bottom: 32px;
  background: var(--black-rich);
}

.eq-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: eqPulse 1.8s infinite;
}

@keyframes eqPulse {
  0% {
    transform: scale(1);
    opacity: 0.5
  }

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

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

.eq-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 24px;
}

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

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

.eq-btns {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-wa,
.btn-em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s var(--ease-lux);
}

.btn-wa {
  background: #22c55e;
  color: #fff;
}

.btn-wa:hover {
  background: #16a34a;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.3);
}

.btn-em {
  border: 1px solid var(--border);
  color: var(--gold-l);
  background: var(--black-rich);
}

.btn-em:hover {
  border-color: var(--gold-l);
  background: rgba(201, 168, 76, 0.05);
}

.eq-guarantees {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.eq-g {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.eq-chk {
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   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);
  }
}