.container-xl{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.navbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(11,11,12,.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* Nav links except gold button */
.nav-links a:not(.btn-gold){
  color:var(--muted);
  text-decoration:none;
  margin-left:18px;
  font-weight:500;
}

.nav-links a:not(.btn-gold):hover{
  color:var(--gold);
}

.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  color:#120f0a;
  font-weight:700;
  border:0;
  text-decoration:none;
  box-shadow:0 10px 22px rgba(214,177,94,.18);
  transition:transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.btn-gold:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  text-decoration:none;
}

.btn-outline:hover{
  border-color:rgba(214,177,94,.55);
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* ✅ FIXED:
   only direct image of card gets this styling
   not nested images like studio gallery */
.card > img{
  display:block;
  width:100%;
  height:320px;
  object-fit:cover;
}

.card-body{
  padding:18px;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--gold);
  font-size:12px;
  letter-spacing:.3px;
}

/* Navbar gold button exact size */
.navbar a.btn-gold,
.navbar a.btn-gold:visited,
.navbar a.btn-gold:hover{
  color:#120f0a;
}

.navbar .nav-links a.btn-gold{
  padding:10px 16px !important;
  margin-left:12px !important;
  line-height:1.1 !important;
  font-size:14px !important;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
}

.footer-top{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
  align-items:start;
  padding-bottom:18px;
}

.footer-brand{
  font-size:14px;
  line-height:1.6;
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 34px;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  line-height:1.6;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-col-title{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:650;
  margin:0 0 10px;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-bottom-left{
  white-space:nowrap;
}

.footer-bottom-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-bottom-right a{
  color:var(--muted);
  text-decoration:none;
  white-space:nowrap;
}

.footer-bottom-right a:hover{
  color:var(--gold);
}

.social-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.social-icon{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  text-decoration:none;
  transition:all .18s ease;
}

.social-icon:hover{
  border-color:rgba(212,175,55,.45);
  color:var(--gold);
  transform:translateY(-1px);
}

.social-icon svg{
  width:18px;
  height:18px;
  display:block;
}

/* =========================
   UNIVERSAL STUDIO IMAGE FIX
   ========================= */
/* This safely overrides old .card img behavior for studio gallery only */
.studio-card .studio-img{
  width:100%;
  height:660px;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:16px;
}

.studio-card .studio-media{
  padding:12px;
  background:#0d0d0e;
  border-bottom:1px solid rgba(255,255,255,.06);
}

/* =========================
   MOBILE
   ========================= */
@media (max-width:980px){
  .nav-links{
    display:none;
  }

  section .grid-3{
    grid-template-columns:1fr;
  }

  /* direct image of normal card only */
  .card > img{
    height:420px;
  }

  .studio-card .studio-img{
    height:490px;
    object-fit:cover;
    object-position:center;
  }

  .footer-top{
    grid-template-columns:1fr;
  }

  .footer-links{
    grid-template-columns:1fr;
    gap:10px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bottom-left{
    white-space:normal;
  }
}

/* =========================
   FLOATING WHATSAPP BUTTON
   ========================= */
.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9997;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:58px;
  height:58px;
  padding:0 18px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.14);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  -webkit-tap-highlight-color:transparent;
}

.floating-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.34);
  opacity:.98;
}

.floating-whatsapp:active{
  transform:translateY(0);
}

.floating-whatsapp svg{
  width:26px;
  height:26px;
  flex:0 0 auto;
  display:block;
}

.floating-whatsapp-label{
  font-size:14px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

/* pulse animation */
@keyframes whatsappPulse{
  0%{
    transform:scale(1);
    box-shadow:0 12px 30px rgba(0,0,0,.28);
  }
  50%{
    transform:scale(1.06);
    box-shadow:0 16px 38px rgba(37,211,102,.35);
  }
  100%{
    transform:scale(1);
    box-shadow:0 12px 30px rgba(0,0,0,.28);
  }
}

.floating-whatsapp.pulse{
  animation:whatsappPulse 1.8s ease-in-out infinite;
}

@media (max-width:768px){
  .floating-whatsapp{
    right:14px;
    bottom:14px;
    width:58px;
    min-width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
  }

  .floating-whatsapp-label{
    display:none;
  }

  @supports (bottom:max(0px)){
    .floating-whatsapp{
      bottom:max(14px, env(safe-area-inset-bottom));
    }
  }
}