/* =============================================================================
   MONSTERCAR — Stylesheet
   Versión: 2.0.0
   Autor:   webonada.studio
   Fuente:  https://webonada.studio
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. RESET & CUSTOM PROPERTIES
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
}

:root {
  /* Gold palette */
  --gold:        #C8A94F;
  --gold-lt:     #E5C97A;
  --gold-dk:     #7A6020;
  --gold-shine:  linear-gradient(90deg, #8B6914 0%, #C8A94F 30%, #F0D98A 50%, #C8A94F 70%, #8B6914 100%);
  --gold-flat:   linear-gradient(135deg, #C8A94F 0%, #E5C97A 50%, #A07830 100%);

  /* Neutrals */
  --black:  #060606;
  --ink:    #0c0c0c;
  --deep:   #111111;
  --panel:  #171717;
  --border: rgba(200, 169, 79, 0.18);
  --chrome: #7a7a7a;
  --light:  #e8dfc8;
  --white:  #ffffff;

  /* Typography */
  --fd: 'Big Shoulders Display', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --fn: 'Bebas Neue', cursive;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --t:    0.4s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  /* Subtle industrial grid texture — CSS only */
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 40px, rgba(200, 169, 79, .013) 40px, rgba(200, 169, 79, .013) 41px),
    repeating-linear-gradient(90deg,  transparent, transparent 80px, rgba(255, 255, 255, .006) 80px, rgba(255, 255, 255, .006) 81px);
}

/* Custom scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* =============================================================================
   2. UTILITIES
============================================================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Gold shimmer text */
.gold-text {
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
}

@keyframes gShimmer {
  to { background-position: 300% center; }
}

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  height: 1px;
  width: 28px;
}

.eyebrow::before { background: linear-gradient(to right,  transparent, var(--gold)); }
.eyebrow::after  { background: linear-gradient(to left,   transparent, var(--gold)); }

/* Section heading */
.sh {
  font-family: var(--fd);
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Section subtext */
.ssub {
  color: var(--chrome);
  font-size: .94rem;
  line-height: 1.8;
  max-width: 520px;
}

/* =============================================================================
   3. REVEAL ANIMATIONS
============================================================================= */
.rv  { opacity: 0; transform: translateY(36px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rvl { opacity: 0; transform: translateX(-44px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rvr { opacity: 0; transform: translateX(44px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }

.rv.on,
.rvl.on,
.rvr.on { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* =============================================================================
   4. BUTTONS
============================================================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-flat);
  color: var(--black);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: filter .3s, transform .25s;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.btn-gold:hover  { filter: brightness(1.15); transform: translateY(-2px); }
.btn-gold:active { transform: scale(.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--light);
  padding: 13px 32px;
  border: 1px solid rgba(232, 223, 200, .22);
  text-decoration: none;
  border-radius: 1px;
  transition: border-color .3s, color .3s, transform .25s;
  cursor: pointer;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Touch ripple effect */
.rip-wrap { position: relative; overflow: hidden; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 169, 79, .22);
  transform: scale(0);
  animation: ripAnim .55s linear;
  pointer-events: none;
}

@keyframes ripAnim { to { transform: scale(3.5); opacity: 0; } }

/* =============================================================================
   5. NAVBAR
============================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s, height .4s, box-shadow .4s;
}

.navbar.stuck {
  background: rgba(6, 6, 6, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(0, 0, 0, .6);
  height: 62px;
}

.nav-logo {
  font-family: var(--fn);
  font-size: 2rem;
  letter-spacing: 4px;
  text-decoration: none;
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232, 223, 200, .65);
  text-decoration: none;
  padding: 8px 16px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}

.nav-links a:hover { color: var(--gold-lt); border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--gold-flat) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  border-radius: 1px;
  border-bottom: none !important;
  padding: 9px 20px !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: filter .3s, transform .2s !important;
}

.nav-cta:hover { filter: brightness(1.15); transform: translateY(-1px); border-bottom: none !important; }

/* Hamburger button */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--t) var(--ease);
}

.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   6. MOBILE DRAWER
============================================================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  pointer-events: none;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .4s;
  pointer-events: none;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--panel);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  pointer-events: none;
  overflow-y: auto;
}

/* Gold side strip */
.drawer-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-flat);
}

.drawer.open .drawer-overlay { background: rgba(0, 0, 0, .75); pointer-events: all; }
.drawer.open .drawer-panel   { transform: none;                 pointer-events: all; }
.drawer.open                 { pointer-events: all; }

.drawer-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--chrome);
  font-size: 1.2rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s, border-color .3s, background .3s;
  margin-bottom: 32px;
}

.drawer-close:hover { color: var(--gold); border-color: var(--gold); background: rgba(200, 169, 79, .08); }

.drawer-logo {
  font-family: var(--fn);
  font-size: 1.8rem;
  letter-spacing: 4px;
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
  margin-bottom: 36px;
}

.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232, 223, 200, .7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .3s, padding-left .3s;
}

.drawer-nav a i { color: var(--gold); font-size: .9rem; width: 20px; }
.drawer-nav a:hover { color: var(--gold-lt); padding-left: 6px; }

.drawer-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-flat);
  color: var(--black) !important;
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 24px;
  transition: filter .3s;
}

.drawer-cta:hover { filter: brightness(1.12); }

/* =============================================================================
   7. MOBILE BOTTOM NAVIGATION (App-style)
============================================================================= */
.mob-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  background: rgba(10, 10, 10, .97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 0 env(safe-area-inset-bottom, 8px);
}

.mob-nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
}

.mob-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--chrome);
  font-size: 9px;
  letter-spacing: 1px;
  font-family: var(--fb);
  padding: 6px 10px;
  transition: color .25s;
  -webkit-tap-highlight-color: transparent;
}

.mob-nav a i       { font-size: 1.05rem; display: block; }
.mob-nav a.active,
.mob-nav a:hover   { color: var(--gold); }
.mob-nav a.active i { filter: drop-shadow(0 0 6px var(--gold)); }

/* =============================================================================
   8. HERO / CAROUSEL
============================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}

.hero-slide.on { opacity: 1; z-index: 2; pointer-events: all; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}

.hero-slide.on .hero-bg { transform: scale(1); }

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6, 6, 6, .88) 0%, rgba(6, 6, 6, .5) 55%, rgba(6, 6, 6, .15) 100%),
    linear-gradient(to top,   rgba(6, 6, 6, .65) 0%, transparent 55%);
}

/* Bottom gold accent line */
.hero-veil::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-flat);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 28px;
  max-width: 780px;
  margin-left: 8vw;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(200, 169, 79, .07);
  padding: 7px 16px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s .3s, transform .6s .3s;
}

.hero-badge i { font-size: .6rem; }
.hero-slide.on .hero-badge { opacity: 1; transform: none; }

.hero-h {
  font-family: var(--fd);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s .5s, transform .7s .5s;
}

.hero-h em {
  font-style: normal;
  display: block;
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
}

.hero-slide.on .hero-h { opacity: 1; transform: none; }

.hero-acts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s .8s, transform .6s .8s;
}

.hero-slide.on .hero-acts { opacity: 1; transform: none; }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 8vw;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(200, 169, 79, .28);
  cursor: pointer;
  border: none;
  transition: background .3s, width .4s;
}

.hero-dot.on { background: var(--gold); width: 50px; }

/* Carousel arrows */
.hero-arr {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, .4);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 1px;
  transition: background .3s, border-color .3s;
}

.hero-arr:hover  { background: rgba(200, 169, 79, .15); border-color: var(--gold); }
.hero-arr.prev   { left: 24px; }
.hero-arr.next   { right: 24px; }

/* =============================================================================
   9. SERVICES
============================================================================= */
.services { padding: 110px 0 80px; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.svc-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 48px;
  overflow: hidden;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: filter .4s;
}

.svc-card.a::before { background: linear-gradient(145deg, #181408 0%, #1e1a0e 100%); }
.svc-card.b::before { background: linear-gradient(145deg, #0e0e0e 0%, #1a1a1a 100%); }

/* Gold top edge on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-flat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.svc-card:hover::after  { transform: scaleX(1); }
.svc-card:hover::before { filter: brightness(1.15); }

.svc-glyph {
  position: absolute;
  font-size: 300px;
  line-height: 1;
  bottom: -40px;
  right: -30px;
  color: rgba(200, 169, 79, .04);
  pointer-events: none;
  transition: transform .6s ease, color .4s;
}

.svc-card:hover .svc-glyph { transform: scale(1.08) rotate(6deg); color: rgba(200, 169, 79, .07); }

.svc-inner { position: relative; z-index: 2; }

.svc-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border: 1px solid var(--border);
  background: rgba(200, 169, 79, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background .4s, border-color .4s, transform .4s;
}

.svc-card:hover .svc-icon-wrap { background: rgba(200, 169, 79, .14); border-color: var(--gold); transform: translateY(-5px); }

.svc-icon-wrap i { font-size: 1.8rem; color: var(--gold); }

.svc-title {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.svc-desc {
  color: var(--chrome);
  font-size: .92rem;
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto 28px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 10px 26px;
  border-radius: 1px;
  text-decoration: none;
  transition: background .3s, border-color .3s, gap .3s;
}

.svc-link:hover { background: rgba(200, 169, 79, .1); border-color: var(--gold); gap: 14px; }

/* =============================================================================
   10. STATS BAR
============================================================================= */
.stats {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-box { position: relative; }

.stat-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-box:last-child::after { display: none; }

.stat-n {
  font-family: var(--fn);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-l {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chrome);
  display: block;
}

/* =============================================================================
   11. ABOUT
============================================================================= */
.about { padding: 110px 0; }

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

.about-img-box { position: relative; }

.about-img-box img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.08) brightness(.88);
  position: relative;
  z-index: 1;
}

/* Corner ornaments */
.about-img-box::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

.about-img-box::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40%;
  height: 40%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: .3;
  pointer-events: none;
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--gold-flat);
  color: var(--black);
  font-family: var(--fd);
  text-align: center;
  padding: 18px 22px;
  z-index: 3;
}

.about-badge .n { font-size: 2.6rem; font-weight: 900; line-height: 1; display: block; }
.about-badge .l { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.af {
  padding: 22px;
  border: 1px solid rgba(200, 169, 79, .1);
  background: rgba(200, 169, 79, .03);
  transition: border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.af::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-flat);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease);
}

.af:hover::before { transform: scaleY(1); }
.af:hover { border-color: rgba(200, 169, 79, .3); background: rgba(200, 169, 79, .05); }

.af i      { font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; display: block; }
.af h4     { font-family: var(--fd); font-size: .92rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 7px; }
.af p      { color: var(--chrome); font-size: .85rem; line-height: 1.7; }

/* =============================================================================
   12. FEATURES STRIP
============================================================================= */
.fstrip { background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.fstrip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.fb {
  padding: 54px 38px;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.fb:last-child { border-right: none; }

.fb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-flat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.fb:hover::after { transform: scaleX(1); }
.fb:hover        { background: rgba(200, 169, 79, .025); }

.fb-icon { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.fb h3   { font-family: var(--fd); font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.fb p    { color: var(--chrome); font-size: .88rem; line-height: 1.75; }

/* =============================================================================
   13. LOCATION
============================================================================= */
.location { padding: 110px 0; }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.loc-item {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(200, 169, 79, .08);
}

.loc-item:last-of-type { border-bottom: none; }
.loc-item i      { color: var(--gold); font-size: 1rem; margin-top: 4px; flex-shrink: 0; width: 18px; }
.loc-item strong { display: block; font-family: var(--fd); font-size: .82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-lt); margin-bottom: 4px; }
.loc-item span   { color: var(--chrome); font-size: .9rem; line-height: 1.7; }

.map-box { position: relative; border: 1px solid var(--border); }

.map-box::before {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(200, 169, 79, .12);
  pointer-events: none;
  z-index: 1;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: none;
  filter: grayscale(40%) contrast(1.1) brightness(.82);
  transition: filter .5s;
}

.map-box:hover iframe { filter: grayscale(10%) contrast(1.05) brightness(.95); }

/* =============================================================================
   14. FOOTER
============================================================================= */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--fn);
  font-size: 2rem;
  letter-spacing: 4px;
  background: var(--gold-shine);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gShimmer 4s linear infinite;
  display: block;
  margin-bottom: 14px;
}

.footer-tag { color: var(--chrome); font-size: .88rem; line-height: 1.8; max-width: 280px; margin-bottom: 26px; }

.socials { display: flex; gap: 10px; }

.soc {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 79, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome);
  font-size: .85rem;
  text-decoration: none;
  border-radius: 1px;
  transition: background .3s, border-color .3s, color .3s, transform .25s;
}

.soc:hover { background: rgba(200, 169, 79, .12); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.fh {
  font-family: var(--fd);
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.fli { display: flex; gap: 11px; margin-bottom: 13px; }
.fli i    { color: var(--gold); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.fli span { color: var(--chrome); font-size: .88rem; line-height: 1.6; }

.srow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .86rem;
}

.srow .day { color: var(--chrome); }
.srow .hrs { color: var(--white); font-weight: 500; font-size: .82rem; }
.srow .cls { color: var(--gold-dk); letter-spacing: 1px; text-transform: uppercase; font-size: .75rem; }

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 79, .08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p    { color: var(--chrome); font-size: .82rem; }
.footer-bottom a    { color: var(--gold); text-decoration: none; font-weight: 500; }
.footer-bottom a:hover { color: var(--gold-lt); }

.studio-credit {
  font-size: .72rem;
  color: rgba(200, 169, 79, .45);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.studio-credit a       { color: rgba(200, 169, 79, .75) !important; transition: color .3s; }
.studio-credit a:hover { color: var(--gold-lt) !important; }

/* =============================================================================
   15. WHATSAPP FLOATING BUTTON
============================================================================= */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 800;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  opacity: 0;
  transform: translateY(20px) scale(.85);
  transition: opacity .4s, transform .4s, background .3s, box-shadow .3s;
}

.wa-float.show  { opacity: 1; transform: none; }
.wa-float:hover { background: #128c7e; box-shadow: 0 6px 28px rgba(37, 211, 102, .5); transform: translateY(-3px) scale(1.06); }

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .3);
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0%,  100% { transform: scale(1);    opacity: .8; }
  60%        { transform: scale(1.25); opacity: 0;  }
}

/* =============================================================================
   16. RESPONSIVE — TABLET & MOBILE
============================================================================= */
@media (max-width: 860px) {
  /* Navbar */
  .navbar    { padding: 0 20px; }
  .nav-links { display: none; }
  .ham       { display: flex; }

  /* Bottom nav */
  .mob-nav { display: block; }
  body      { padding-bottom: 68px; }

  /* Sections */
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .loc-grid   { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* WhatsApp float */
  .wa-float { bottom: 82px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 680px) {
  /* Hero */
  .hero-content  { margin-left: 0; text-align: center; }
  .hero-acts     { justify-content: center; }
  .hero-arr      { display: none; }
  .hero-dots     { left: 50%; transform: translateX(-50%); bottom: 78px; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* Features strip */
  .fstrip-inner { grid-template-columns: 1fr; }
  .fb           { border-right: none; border-bottom: 1px solid var(--border); }
  .fb:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .footer-top   { grid-template-columns: 1fr; gap: 36px; }
  .about-feats  { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); gap: 36px 12px; }
  .stat-box:nth-child(2)::after,
  .stat-box:nth-child(4)::after { display: none; }
  .about-badge  { left: 0; bottom: 20px; }
  .about-img-box::before,
  .about-img-box::after { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
