/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:3px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:85px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(12px);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  z-index:999;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
  height:105px;
}

.nav-links{
  display:flex;
  gap:38px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b68b2d;
}

.nav-btn{
  background:#08210f;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
  transition:0.3s;
  font-size:14px;
}

.nav-btn:hover{
  background:#b68b2d;
}

.menu-btn{
  display:none;
}




/*==========================================
BRANDS HERO (matches Contact Hero system)
==========================================*/

.bh-hero {
  position: relative;
  background: linear-gradient(180deg, #060c18 0%, #0a1628 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background */
.bh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 200, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 66, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}

.bh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.bh-glow-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  left: 8%;
  background: radial-gradient(circle, #f5c842, transparent 70%);
}

.bh-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -180px;
  right: 6%;
  background: radial-gradient(circle, #f09a28, transparent 70%);
  opacity: 0.18;
}

/* Content */
.bh-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 200, 66, 0.35);
  border-radius: 999px;
  background: rgba(245, 200, 66, 0.06);
  color: #f5c842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bh-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.bh-title span {
  display: block;
  background: linear-gradient(90deg, #f5c842, #f09a28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bh-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 0 44px;
}

/* Buttons row (kept from your original brands hero) */
.brands-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .bh-hero {
    padding: 96px 20px 56px;
  }

  .brands-hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .bh-subtext {
    font-size: 15px;
  }

  .bh-eyebrow {
    font-size: 11px;
    padding: 7px 14px;
  }
}


/* Buttons */
.bh-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.bh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    background: linear-gradient(135deg, #f5c842 0%, #f09a28 100%);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, gap 0.22s ease;
    box-shadow: 0 4px 24px rgba(245, 200, 66, 0.30);
}

.bh-btn-primary svg { transition: transform 0.22s ease; }

.bh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 200, 66, 0.42);
    gap: 12px;
}

.bh-btn-primary:hover svg { transform: translateX(2px); }

.bh-btn-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.bh-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.30);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bh-buttons {
    flex-direction: column;
    width: 75%;
    max-width: 260px;
    margin-top: -14px;

  }

  .bh-btn-primary,
  .bh-btn-secondary {
    width: 75%;
    justify-content: center;
  }
}