/* ═══════════════════════════════════════
   Equipment Pages — Premium Shared Styles
═══════════════════════════════════════ */

/* ── INTRO SECTION ── */
.equip-intro { background: var(--white); position: relative; }
.equip-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.equip-feature-img {
  width: 100%; height: 500px; object-fit: cover;
  position: relative;
  box-shadow: 24px 24px 0 rgba(201,168,76,0.12), 0 32px 80px rgba(0,0,0,0.15);
}
.equip-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 36px; border-top: 1px solid rgba(10,28,48,0.08);
}
.equip-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1;
}
.equip-stat-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ── CATEGORIES ── */
.equip-categories { position: relative; overflow: hidden; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.cat-card {
  background: var(--white); overflow: hidden;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.14); z-index: 2; }
.cat-img-wrap { position: relative; overflow: hidden; }
.cat-img {
  width: 100%; height: 220px; object-fit: cover;
  filter: saturate(0.65) brightness(0.85);
  transition: filter 0.5s, transform 0.5s;
  display: block;
}
.cat-card:hover .cat-img { filter: saturate(0.9) brightness(0.95); transform: scale(1.06); }
/* Gold overlay on hover */
.cat-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,28,48,0.7) 100%);
}
.cat-body { padding: 28px 28px 32px; border-top: 2px solid transparent; transition: border-color 0.3s; }
.cat-card:hover .cat-body { border-top-color: var(--gold); }
.cat-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 10px;
}
.cat-body p { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.cat-specs { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── ADVANTAGE LIST ── */
.advantage-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.advantage-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid rgba(201,168,76,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.advantage-item:hover { background: rgba(201,168,76,0.06); border-left-color: var(--gold); }
.adv-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; font-weight: 600; }
.advantage-item p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.65; }
.advantage-item p strong { color: rgba(255,255,255,0.88); font-weight: 500; }

/* ── PROMO SECTION (dark with image) ── */
.equip-promo {
  background: var(--navy); position: relative; overflow: hidden;
}
.equip-promo::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(201,168,76,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.equip-promo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.equip-promo .section { position: relative; z-index: 1; }
.equip-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.equip-promo-img {
  width: 100%; height: 440px; object-fit: cover;
  filter: brightness(0.78) saturate(0.65);
  box-shadow: -16px 16px 0 rgba(201,168,76,0.1), 0 24px 60px rgba(0,0,0,0.4);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy); padding: 88px 72px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), transparent);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 300;
  color: var(--white); max-width: 560px; line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── SPECS TABLE ── */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.specs-table th { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.03); }
.specs-table td { padding: 12px 18px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
.specs-table tr:hover td { color: rgba(255,255,255,0.82); }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-promo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .equip-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .equip-feature-img { height: 260px; box-shadow: none; }
  .equip-stats { flex-wrap: wrap; gap: 24px; padding-top: 24px; margin-top: 24px; }
  .equip-stat-num { font-size: 30px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-img { height: 180px; }
  .cat-body { padding: 18px 18px 22px; }
  .cat-body h3 { font-size: 18px; }
  .specs-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .advantage-item { padding: 12px 14px; gap: 12px; }
  .cta-band { padding: 48px 18px; flex-direction: column; text-align: center; }
  .equip-promo-img { height: 260px; box-shadow: none; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-img { height: 200px; }
  .equip-stats { gap: 20px; }
}
