:root {
  --bg-main: #0A0A0A;
  --bg-panel: #121212;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-mid: rgba(212, 175, 55, 0.28);
  --gold-strong: rgba(212, 175, 55, 0.5);
  --white: #FFFFFF;
  --white-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(212, 175, 55, 0.42);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.12);
  --shadow-gold-strong: 0 0 60px rgba(212, 175, 55, 0.18);
  --tracking-logo: 0.4em;
  --tracking-sub: 0.3em;
  --transition-smooth: 0.35s ease;
  --header-height: 78px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
  background: var(--bg-main);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--white);
  position: relative;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,0.08), transparent 24%),
    linear-gradient(180deg, #070707 0%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  padding: 20px;
}

.loader-bars {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  height: 60px;
  margin-bottom: 24px;
}

.loader-bars span {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--gold));
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
  animation: loaderEqualizer 1s ease-in-out infinite;
}

.loader-bars span:nth-child(1) { height: 16px; animation-delay: 0.05s; }
.loader-bars span:nth-child(2) { height: 38px; animation-delay: 0.12s; }
.loader-bars span:nth-child(3) { height: 24px; animation-delay: 0.19s; }
.loader-bars span:nth-child(4) { height: 46px; animation-delay: 0.26s; }
.loader-bars span:nth-child(5) { height: 20px; animation-delay: 0.33s; }

.loader-brand {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  text-indent: 0.42em;
}

.loader-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.03), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(212,175,55,0.08), transparent 24%),
    linear-gradient(180deg, #080808 0%, #0A0A0A 55%, #090909 100%);
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.35) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.custom-cursor span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--gold));
  box-shadow: 0 0 10px rgba(212,175,55,0.18);
  transform-origin: bottom center;
  animation: cursorBars 1.2s ease-in-out infinite;
}

.custom-cursor span:nth-child(1) { height: 8px; animation-delay: 0.04s; }
.custom-cursor span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.custom-cursor span:nth-child(3) { height: 11px; animation-delay: 0.16s; }
.custom-cursor span:nth-child(4) { height: 18px; animation-delay: 0.22s; }
.custom-cursor span:nth-child(5) { height: 9px; animation-delay: 0.28s; }

.custom-cursor.cursor-active span {
  animation-duration: 0.5s;
  filter: brightness(1.15);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.header-brand:hover {
  color: var(--gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  position: relative;
  text-decoration: none;
  color: var(--white-soft);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color var(--transition-smooth), opacity var(--transition-smooth);
  padding-bottom: 6px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
  opacity: 1;
}

.header-nav a.active::after,
.header-nav a:hover::after {
  transform: scaleX(1);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-height) + 30px) 20px 80px;
  z-index: 1;
}

.hero-inner {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-mark {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  height: 110px;
  margin-bottom: 22px;
}

.logo-mark .bar {
  width: 10px;
  border-radius: 999px;
  display: inline-block;
  position: relative;
  box-shadow: var(--shadow-gold);
  transform-origin: bottom center;
  animation: equalizerIntro 1.6s ease forwards, equalizerFloat 3.6s ease-in-out infinite;
}

.logo-mark .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent 35%);
  opacity: 0.8;
}

.bar-1 {
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(212,175,55,0.78));
  animation-delay: 0.05s, 0.1s;
}

.bar-2 {
  height: 84px;
  background: linear-gradient(180deg, var(--white) 0%, #f4df98 42%, var(--gold) 100%);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
  animation-delay: 0.15s, 0.2s;
}

.bar-3 {
  height: 58px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(212,175,55,0.85));
  animation-delay: 0.25s, 0.3s;
}

.bar-4 {
  height: 94px;
  background: linear-gradient(180deg, var(--gold) 0%, #f1dc93 55%, var(--white) 100%);
  box-shadow: 0 0 24px rgba(212,175,55,0.18);
  animation-delay: 0.35s, 0.4s;
}

.bar-5 {
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(212,175,55,0.78));
  animation-delay: 0.45s, 0.5s;
}

.city {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: var(--tracking-sub);
  color: var(--gold);
  margin-bottom: 18px;
}

.brand {
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--tracking-logo);
  line-height: 1;
  color: var(--white);
  text-indent: var(--tracking-logo);
  text-shadow:
    0 0 20px rgba(255,255,255,0.04),
    0 0 40px rgba(212,175,55,0.05);
  margin-bottom: 28px;
}

.subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.subtitle-wrap .line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px rgba(212,175,55,0.24);
}

.subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-sub);
  color: var(--gold);
  white-space: nowrap;
}

.description {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-bars,
.five-bars-divider {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.hero-bars {
  height: 36px;
  margin-bottom: 34px;
}

.hero-bars span,
.five-bars-divider span {
  display: inline-block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), var(--gold));
  box-shadow: 0 0 14px rgba(212,175,55,0.2);
  animation: miniEqualizer 1.4s ease-in-out infinite;
}

.hero-bars span:nth-child(1),
.five-bars-divider span:nth-child(1) { height: 12px; animation-delay: 0.1s; }

.hero-bars span:nth-child(2),
.five-bars-divider span:nth-child(2) { height: 28px; animation-delay: 0.2s; }

.hero-bars span:nth-child(3),
.five-bars-divider span:nth-child(3) { height: 18px; animation-delay: 0.3s; }

.hero-bars span:nth-child(4),
.five-bars-divider span:nth-child(4) { height: 32px; animation-delay: 0.4s; }

.hero-bars span:nth-child(5),
.five-bars-divider span:nth-child(5) { height: 14px; animation-delay: 0.5s; }

.actions,
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 190px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    color var(--transition-smooth);
  overflow: hidden;
}

.btn-gold {
  color: #111111;
  background:
    linear-gradient(180deg, #f4df98 0%, #e3c35e 35%, var(--gold) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 10px 30px rgba(212,175,55,0.16),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(212,175,55,0.22),
    0 0 24px rgba(212,175,55,0.18),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn-outline {
  color: var(--white);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 8px 24px rgba(0,0,0,0.3);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.75);
  color: var(--gold);
  box-shadow:
    0 12px 30px rgba(212,175,55,0.1),
    inset 0 0 24px rgba(212,175,55,0.04);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-btn:hover .whatsapp-icon {
  transform: scale(1.08);
  color: #f4df98;
}

.btn-label {
  display: inline-block;
}

.btn-bars {
  display: inline-flex;
  align-items: end;
  gap: 3px;
  height: 16px;
}

.btn-bars i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--gold));
  animation: pulseBars 1.2s ease-in-out infinite;
}

.btn-bars i:nth-child(1) { height: 6px; animation-delay: 0.05s; }
.btn-bars i:nth-child(2) { height: 13px; animation-delay: 0.12s; }
.btn-bars i:nth-child(3) { height: 9px; animation-delay: 0.19s; }
.btn-bars i:nth-child(4) { height: 15px; animation-delay: 0.26s; }
.btn-bars i:nth-child(5) { height: 7px; animation-delay: 0.33s; }

.whatsapp-btn:hover .btn-bars i,
.magnetic:hover .btn-bars i {
  animation-duration: 0.55s;
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 120px 20px;
}

.section-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(18,18,18,0.9), rgba(18,18,18,0.72));
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 28px;
  padding: 56px 42px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.section-shell-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-shell h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.section-shell p {
  max-width: 760px;
  color: var(--white-soft);
  line-height: 1.9;
  font-size: 1rem;
}

.section-divider {
  margin: 0 0 28px;
}

.floor-glow {
  position: absolute;
  left: 50%;
  bottom: 4vh;
  transform: translateX(-50%);
  width: min(900px, 88vw);
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center,
      rgba(212,175,55,0.22) 0%,
      rgba(212,175,55,0.12) 28%,
      rgba(212,175,55,0.05) 48%,
      transparent 72%);
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 36px 20px 44px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, rgba(10,10,10,0.32), rgba(10,10,10,0.75));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-divider {
  justify-content: center;
  margin-bottom: 24px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 8px;
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-meta a,
.footer-meta span {
  color: var(--white-soft);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.footer-meta a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderEqualizer {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(1.45);
    opacity: 1;
  }
}

@keyframes equalizerIntro {
  0% {
    transform: scaleY(0.15);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes equalizerFloat {
  0%, 100% {
    transform: translateY(0) scaleY(1);
  }
  25% {
    transform: translateY(-2px) scaleY(1.04);
  }
  50% {
    transform: translateY(1px) scaleY(0.97);
  }
  75% {
    transform: translateY(-1px) scaleY(1.02);
  }
}

@keyframes miniEqualizer {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleY(1.35);
    opacity: 1;
  }
}

@keyframes pulseBars {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

@keyframes cursorBars {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleY(1.4);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .section-shell-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none;
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav a {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero {
    padding: calc(var(--header-height) + 10px) 18px 60px;
  }

  .logo-mark {
    gap: 10px;
    height: 90px;
    margin-bottom: 18px;
  }

  .logo-mark .bar {
    width: 8px;
  }

  .brand {
    font-size: clamp(2.4rem, 12vw, 4.6rem);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    margin-bottom: 22px;
  }

  .subtitle-wrap {
    gap: 12px;
  }

  .subtitle-wrap .line {
    width: 42px;
  }

  .description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .actions,
  .contact-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .content-section {
    padding: 80px 18px;
  }

  .section-shell {
    padding: 40px 24px;
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    gap: 10px;
  }

  .floor-glow {
    width: 95vw;
    height: 140px;
    bottom: 2vh;
  }
}