/* ============================================================
   BASE.CSS � Shared across ALL pages
   ============================================================ */

/* ---- RESET ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ---- COLOR SYSTEM ---- */
:root {
  --accent:       #C4622D;
  --accent-light: #E8845A;
  --accent-dim:   rgba(196, 98, 45, 0.08);
  --warm:         #C4622D;
  --warm-dim:     rgba(196, 98, 45, 0.12);
  --bg:           #F5EFE8;
  --bg-2:         #EDE4D8;
  --bg-3:         #E4D8C8;
  --bg-4:         #D9C9B4;
  --dark:         #1E1208;
  --dark-deep:    #120B04;
  --text:         #1E1208;
  --text-dim:     #5A4A3A;
  --text-muted:   #9A8070;
  --text-light:   #F7F0E8;
  --border:       rgba(196, 98, 45, 0.14);
  --radius:       16px;
  --shadow:       0 8px 40px rgba(196, 98, 45, 0.12);
}

/* ---- TYPOGRAPHY ---- */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 73px;
}
body.home-page { padding-top: 0; }
h1, h2, h3 { font-family: "Raleway", sans-serif; color: var(--text); }
.accent { color: var(--accent); }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 18px 50px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(196, 98, 45, 0.12);
  box-shadow: 0 2px 20px rgba(196, 98, 45, 0.08);
  transition: background 0.4s ease, padding 0.35s ease, box-shadow 0.4s ease;
}
body.home-page #navbar {
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom-color: transparent;
  box-shadow: none;
}
body.home-page #navbar.scrolled {
  padding: 14px 50px;
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(196, 98, 45, 0.15);
  box-shadow: 0 2px 24px rgba(196, 98, 45, 0.1);
}
body.home-page #navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
body.home-page #navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
body.home-page #navbar:not(.scrolled) .nav-logo { color: #fff; }
body.home-page #navbar:not(.scrolled) .hamburger span { background: #fff; }
body.home-page #navbar:not(.scrolled) .nav-cta { border-color: rgba(255,255,255,0.6); background: rgba(196,98,45,0.85); }

.nav-logo {
  font-family: "Raleway", sans-serif;
  font-size: 1.15rem; font-weight: 700; letter-spacing: 2px;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img {
  height: 44px; width: auto;
  border-radius: 6px; object-fit: contain;
  border: 1px solid var(--border);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--warm);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--warm);
  border: 1px solid var(--warm);
  color: #fff;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: #A04E22;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.nav-cta:hover { color: #fff; }
.nav-cta:hover::before { transform: translateX(0); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; cursor: pointer;
  flex-direction: column; gap: 6px;
  background: none; border: none; padding: 10px; z-index: 2100;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
  pointer-events: all; position: relative;
}
.hamburger span {
  display: block; border-radius: 3px;
  background: var(--accent);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger span:nth-child(1) { width: 26px; height: 2px; }
.hamburger span:nth-child(2) { width: 18px; height: 2px; align-self: flex-end; }
.hamburger span:nth-child(3) { width: 26px; height: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); width: 26px; }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); width: 26px; }
body.home-page #navbar:not(.scrolled) .hamburger span { background: #fff; }

/* ---- MOBILE OVERLAY ---- */
.mobile-overlay {
  position: fixed; inset: 0;
  z-index: 1900;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.mobile-overlay.show {
  pointer-events: all;
  opacity: 1;
}

/* ---- FULL-SCREEN MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex; flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
}

/* Animated background panels */
.mm-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}
.mm-bg-panel {
  height: 100%;
  background: var(--dark-deep);
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.mm-bg-panel:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.open .mm-bg-panel { transform: translateY(0); }

/* Decorative grain */
.mm-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.025; pointer-events: none;
}

/* Accent glow orb */
.mm-bg::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,98,45,0.18) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
  border-radius: 50%;
}

/* Inner content wrapper */
.mm-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%; padding: 0 36px 36px;
  overflow-y: auto;
}

/* Top bar inside menu */
.mm-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 0;
  opacity: 0; transform: translateY(-16px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.mobile-menu.open .mm-top { opacity: 1; transform: translateY(0); }
.mm-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
}
.mm-logo img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(232,132,90,0.4);
}
.mm-logo span { color: var(--accent-light); }
.mm-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.7);
  font-size: 1.3rem; line-height: 1;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s;
  flex-shrink: 0;
}
.mm-close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }

/* Divider line */
.mm-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(232,132,90,0.5), rgba(232,132,90,0.1) 60%, transparent);
  margin: 20px 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.mobile-menu.open .mm-divider { transform: scaleX(1); }

/* Nav items */
.mm-nav {
  display: flex; flex-direction: column;
  gap: 0; flex: 1;
  padding: 8px 0;
}
.mm-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open .mm-nav-item:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.30s; }
.mobile-menu.open .mm-nav-item:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.37s; }
.mobile-menu.open .mm-nav-item:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.44s; }
.mobile-menu.open .mm-nav-item:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.51s; }
.mobile-menu.open .mm-nav-item:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.58s; }

/* Hover fill sweep */
.mm-nav-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(196,98,45,0.08), transparent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mm-nav-item:hover::before { transform: translateX(0); }

.mm-nav-left {
  display: flex; align-items: center; gap: 18px;
}
.mm-nav-num {
  font-family: "Raleway", sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: rgba(232,132,90,0.5);
  letter-spacing: 1px; min-width: 20px;
  transition: color 0.3s;
}
.mm-nav-item:hover .mm-nav-num { color: var(--accent-light); }
.mm-nav-text {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mm-nav-item:hover .mm-nav-text {
  color: #fff;
  transform: translateX(8px);
}
.mm-nav-item.mm-active .mm-nav-text { color: var(--accent-light); }
.mm-nav-item.mm-active .mm-nav-num { color: var(--accent-light); }

.mm-nav-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mm-nav-item:hover .mm-nav-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(-4px) rotate(-45deg);
}

/* Stats row */
.mm-stats {
  display: flex; gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.65s, transform 0.5s ease 0.65s;
}
.mobile-menu.open .mm-stats { opacity: 1; transform: translateY(0); }
.mm-stat {
  flex: 1; padding: 16px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.mm-stat:last-child { border-right: none; }
.mm-stat-num {
  font-family: "Raleway", sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--accent-light); display: block; line-height: 1;
}
.mm-stat-label {
  font-size: 0.52rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); display: block; margin-top: 5px;
}

/* Bottom contact row */
.mm-footer {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease 0.72s, transform 0.5s ease 0.72s;
}
.mobile-menu.open .mm-footer { opacity: 1; transform: translateY(0); }
.mm-footer-cta {
  flex: 1;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-align: center;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  display: block;
}
.mm-footer-cta:hover { background: #A04E22; transform: translateY(-2px); }
.mm-footer-wa {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.mm-footer-wa:hover { background: #25d366; transform: translateY(-2px); }
.mm-footer-wa svg { fill: #25d366; transition: fill 0.3s; }
.mm-footer-wa:hover svg { fill: #fff; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: var(--warm);
  color: #fff;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
  border: none; cursor: pointer;
  border-radius: 8px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.3);
}
.btn-primary:hover {
  background: #A04E22;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196, 98, 45, 0.4);
}
.btn-outline {
  display: inline-block;
  padding: 14px 34px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
  border-radius: 8px; transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* ---- SECTION TAG ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 18px; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(196, 98, 45, 0.2);
  border-radius: 20px;
  background: var(--accent-dim);
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -2px;
}
footer::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232,132,90,0.4) 25%,
    rgba(232,132,90,0.6) 50%,
    rgba(232,132,90,0.4) 75%,
    transparent 100%
  );
  z-index: 4; pointer-events: none;
}
footer::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 18% 55%, rgba(196,98,45,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 82% 30%, rgba(232,132,90,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(18,11,4,0.6) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.footer-inner {
  position: relative; z-index: 3;
  max-width: 100%; margin: 0 auto;
  padding: 28px 50px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 0.9fr 1.2fr;
  gap: 12px 36px;
  padding-bottom: 18px;
  position: relative;
}
.footer-grid::after {
  content: "";
  position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.1) 80%,
    transparent 100%
  );
}

/* Brand column */
.footer-brand .footer-logo {
  font-family: "Raleway", sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 2px; color: #fff;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.footer-brand .footer-logo img {
  width: 54px; height: 54px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(232,132,90,0.4);
}
.footer-brand .footer-logo span { color: #E8845A; }
.footer-brand p {
  color: rgba(237,232,220,0.6);
  font-size: 0.82rem; line-height: 1.55;
  max-width: 280px; margin-bottom: 8px;
}
.footer-badges {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px;
}
.footer-badge {
  padding: 4px 12px;
  background: rgba(232,132,90,0.12);
  border: 1px solid rgba(232,132,90,0.25);
  border-radius: 20px;
  font-size: 0.62rem; letter-spacing: 1.5px;
  color: #E8845A; text-transform: uppercase;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,132,90,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social a::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--warm);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.footer-social a svg { stroke: currentColor; position: relative; z-index: 1; }
.footer-social a:hover { color: #fff; border-color: var(--warm); transform: translateY(-3px); }
.footer-social a:hover::before { transform: translateY(0); }

/* Nav columns */
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: #E8845A;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 2px solid rgba(232,132,90,0.5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(237,232,220,0.5);
  transition: all 0.3s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: "→";
  width: 0;
  overflow: hidden;
  background: none;
  color: #E8845A;
  transition: width 0.3s;
  display: inline-block;
  font-size: 0.78rem;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a:hover::before { width: 14px; }

/* Contact column */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 7px;
}
.footer-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(196,98,45,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg { stroke: #E8845A; }
.footer-contact-item p {
  font-size: 0.82rem; color: rgba(237,232,220,0.5); line-height: 1.5;
}
.footer-contact-item a {
  font-size: 0.88rem; color: rgba(237,232,220,0.75);
  font-weight: 500; transition: color 0.3s;
}
.footer-contact-item a:hover { color: #E8845A; }

/* Bottom bar */
.footer-bottom {
  padding: 8px 50px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  max-width: 100%; margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: #E8845A; font-weight: 600; transition: color 0.3s; }
.footer-credit a:hover { color: #fff; }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.6fr 0.85fr 0.85fr 1.1fr; gap: 10px 24px; }
  .footer-inner { padding: 28px 30px 0; }
  .footer-bottom { padding: 8px 30px; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 8px 18px; }
  .footer-inner { padding: 24px 20px 0; }
  .footer-bottom { padding: 8px 20px; }
}
@media (max-width: 768px) {
  .footer-inner { padding: 24px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom { padding: 10px 20px; flex-direction: column; text-align: center; }
}

/* ---- WHATSAPP FAB ---- */
.whatsapp-fab {
  position: fixed; bottom: 25px; right: 25px;
  width: 48px; height: 48px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ---- MUSIC TOGGLE BUTTON ---- */
#musicToggleBtn {
  position: fixed; bottom: 80px; right: 25px;
  width: 48px; height: 48px;
  background: rgba(196, 98, 45, 0.85);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 98, 45, 0.35);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  color: #fff;
}
#musicToggleBtn:hover {
  transform: scale(1.1);
  background: var(--accent);
  box-shadow: 0 8px 28px rgba(196, 98, 45, 0.5);
}
#musicToggleBtn.muted {
  background: rgba(90, 74, 58, 0.75);
}
#musicToggleBtn.awaiting {
  animation: musicPulse 1.4s ease-in-out infinite;
}
@keyframes musicPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(196,98,45,0.35); transform: scale(1); }
  50%       { box-shadow: 0 4px 32px rgba(196,98,45,0.7); transform: scale(1.12); }
}
@media (max-width: 768px) {
  #musicToggleBtn { right: 12px; bottom: 68px; width: 44px; height: 44px; }
}

/* ---- SCROLL TO TOP ---- */
#scrollTopBtn {
  position: fixed; top: 50%; right: 25px;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.15);
  border: none;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-sizing: border-box;
  padding: 0; line-height: 0;
  z-index: 999; cursor: pointer;
  transition: background 0.3s;
}
#scrollTopBtn svg { display: block; margin: auto; }
#scrollTopBtn:hover { background: rgba(0,0,0,0.25); }

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0; transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

body:not(.home-page) .footer-inner { padding-top: 28px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  #navbar { padding: 12px 16px; }
  #navbar.scrolled { padding: 10px 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  body { padding-top: 58px; }
  body.home-page { padding-top: 0; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; font-size: 0.88rem; }
  .section-tag { font-size: 0.58rem; letter-spacing: 2px; padding: 5px 10px; }
  /* FAB stack: scroll-top hidden on mobile (redundant), WA at bottom-right */
  #scrollTopBtn { display: none !important; }
  .whatsapp-fab { right: 14px; bottom: 16px; width: 50px; height: 50px; }
  #musicToggleBtn { right: 14px; bottom: 74px; width: 44px; height: 44px; }
  /* Mobile menu */
  .mm-nav-text { font-size: 1.6rem; }
  .mm-inner { padding: 0 18px 24px; }
  .mm-stat-num { font-size: 0.9rem; }
  .mm-stat-label { font-size: 0.48rem; }
  .mm-stats { margin-top: 20px; }
  .mm-footer { margin-top: 16px; }
  .mm-footer-cta { padding: 13px 16px; font-size: 0.68rem; }
  /* Nav logo smaller on mobile */
  .nav-logo { font-size: 0.9rem; letter-spacing: 1px; }
  .nav-logo img { height: 36px; width: auto; }
  /* Footer */
  .footer-inner { padding: 20px 16px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand p { font-size: 0.8rem; }
  .footer-badges { gap: 5px; }
  .footer-badge { font-size: 0.58rem; padding: 3px 9px; }
  .footer-col h4 { font-size: 0.58rem; }
  .footer-col ul li a { font-size: 0.84rem; }
  .footer-contact-item a { font-size: 0.82rem; word-break: break-all; }
  .footer-bottom { padding: 10px 16px; flex-direction: column; text-align: center; gap: 4px; }
  .footer-bottom p, .footer-credit { font-size: 0.7rem; }
}
