/* ============================================================
   RESET & ROOT VARIABLES
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a8873c;
  --white: #ffffff;
  --muted: #888888;
  --border: rgba(201, 168, 76, .25);
  --border-hover: rgba(201, 168, 76, .65);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--black);
  box-shadow: 0 0 80px rgba(0, 0, 0, .8);
  overflow: hidden;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 64px;
  background: rgba(10, 10, 10, .08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 168, 76, .08);
  transition: background .35s, padding .35s, border-color .35s;
}

.navbar .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, .96);
  border-color: rgba(201, 168, 76, .18);
  padding: 14px 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Phone CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 9s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 10, 10, .72) 0%,
      rgba(10, 10, 10, .45) 45%,
      rgba(10, 10, 10, .82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: fadeUp .9s ease both;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7.5vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 0;
}

.hero-heading .line1 {
  color: var(--white);
  display: block;
}

.hero-heading .line2 {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 26px;
}

.divider-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.r {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-gem {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.hero-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
  max-width: 480px;
  margin: 0 auto 38px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .3s;
  color: var(--gold);
  background: transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-filled {
  background: var(--gold);
  color: var(--black);
}

.btn-filled::before {
  background: var(--gold-light);
}

.btn-filled:hover {
  color: var(--black);
}

/* ============================================================
   BAND IMAGE SECTION
============================================================ */
.band-section {
  padding: 56px 64px 40px;
}

.band-split {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 56px;
  align-items: center;
}

.band-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.band-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.band-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.band-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.band-tel {
  align-self: flex-start;
  margin-top: 8px;
}

.band-wrap {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  max-height: 480px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  transition: border-color .3s, box-shadow .3s;
}

.band-wrap:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 24px rgba(201, 168, 76, .12);
}

.band-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.band-wrap:hover img {
  transform: scale(1.04);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .98);
  z-index: 998;
}

.mobile-overlay.open {
  display: block;
}

position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10, 10, 10, .55) 0%, transparent 55%);
}

/* ============================================================
   VIDEO SECTION
============================================================ */
.videos-section {
  padding: 40px 64px 56px;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45), 0 0 18px rgba(201, 168, 76, .12);
}

.video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb-link {
  display: block;
  text-decoration: none;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.video-thumb-link:hover .video-thumb {
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s;
  opacity: .85;
}

.video-thumb-link:hover .video-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
  padding: 72px 64px 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: linear-gradient(140deg, #1c1c1c 0%, #141414 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 52px 36px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}

.svc-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.svc-card:hover {
  transform: translateY(-9px);
  border-color: var(--border-hover);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .45), 0 0 24px rgba(201, 168, 76, .09);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 26px;
  color: var(--gold);
}

.svc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 18px;
}

.svc-rule {
  width: 38px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
  opacity: .55;
}

.svc-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: linear-gradient(to bottom, #0e0e0e, #090909);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 64px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1fr 1.5fr;
  gap: 52px;
  margin-bottom: 52px;
}

/* Footer logo */
.f-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
}

.f-logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

.f-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 26px;
  max-width: 270px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: color .3s, transform .3s;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Footer columns */
.f-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
}

.f-contact-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.f-contact-row span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  transition: color .3s;
}

.f-contact-row:hover span {
  color: var(--gold);
}

.f-links {
  list-style: none;
}

.f-links li {
  margin-bottom: 11px;
}

.f-links a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s, transform .3s;
}

.f-links a::before {
  content: '—';
  color: var(--gold);
  font-size: 11px;
}

.f-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.f-hours-highlight {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 7px;
}

.f-hours-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .4px;
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
/* ============================================================
   FLOATING BUTTONS
============================================================ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-btn,
.viber-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.wa-btn {
  background: #25D366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .38);
  animation: waPulse 2.5s infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .55);
}

.viber-btn {
  background: #7360F2;
  box-shadow: 0 6px 22px rgba(115, 96, 242, .38);
  animation: viberPulse 2.5s infinite;
}

.viber-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(115, 96, 242, .55);
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 22px rgba(37, 211, 102, .38);
  }

  50% {
    box-shadow: 0 6px 34px rgba(37, 211, 102, .62);
  }
}

@keyframes viberPulse {

  0%,
  100% {
    box-shadow: 0 6px 22px rgba(115, 96, 242, .38);
  }

  50% {
    box-shadow: 0 6px 34px rgba(115, 96, 242, .62);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {

  .navbar,
  .navbar.scrolled {
    padding-inline: 32px;
  }

  .band-section,
  .videos-section,
  .services-section {
    padding-inline: 32px;
  }

  .band-split {
    gap: 36px;
  }

  .footer-inner {
    padding-inline: 32px;
  }

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

@media (max-width: 768px) {

  .navbar,
  .navbar.scrolled {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    padding-top: 185px;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1001;
  }

  .navbar .nav-links {
    position: fixed;
    left: 0;
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 17px;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .logo-img {
    height: 48px;
  }

  .f-logo-img {
    height: 52px;
  }

  .band-section,
  .videos-section,
  .services-section {
    padding: 36px 18px;
  }

  .band-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    padding: 48px 20px 22px;
  }

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

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-name {
    font-size: clamp(18px, 5vw, 32px);
  }

  .hero-heading {
    font-size: clamp(34px, 11vw, 60px);
  }
}