/* ============================================================
   Satté La Princesa del Caribe — Static Landing Page
   Design: Noir Cabaret — Theatrical Luxury
   Colors: Dark #0A0A0A + Gold #D4AF37
   Fonts: Playfair Display, Raleway, Cormorant Garamond
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: #0A0A0A;
  color: #F0EDE8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

img, video {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #B8975A; }

/* --- Container --- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* --- Typography --- */
.font-display { font-family: "Playfair Display", serif; }
.font-body { font-family: "Raleway", sans-serif; }
.font-accent { font-family: "Cormorant Garamond", serif; }

/* --- Keyframes --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.2); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin-in {
  from { opacity: 0; transform: rotate(-180deg) scale(0.5); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

/* --- Utility Classes --- */
.gold-gradient-text {
  background: linear-gradient(135deg, #D4AF37, #F5E6C8, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animate-shimmer {
  background: linear-gradient(90deg, #D4AF37 0%, #F5E6C8 25%, #D4AF37 50%, #F5E6C8 75%, #D4AF37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-gold { animation: pulse-gold 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1.5s ease-in-out infinite; }

/* --- Video Container --- */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Gold Border Glow --- */
.gold-border-glow {
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1), inset 0 0 15px rgba(212, 175, 55, 0.05);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Gold Divider --- */
.gold-divider {
  width: 100%;
  padding: 0.25rem 0;
}

.gold-divider .line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar .brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #D4AF37;
}

.navbar .brand-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8975A;
}

.navbar .desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar .desktop-nav { display: flex; }
}

.navbar .nav-link {
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.7);
  transition: color 0.3s ease;
}

.navbar .nav-link:hover { color: #D4AF37; }

.navbar .nav-cta {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #D4AF37;
  color: #0A0A0A;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar .nav-cta:hover {
  background: #F5E6C8;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.navbar .mobile-toggle {
  display: block;
  color: #D4AF37;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .navbar .mobile-toggle { display: none; }
}

.navbar .mobile-menu {
  display: none;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .navbar .mobile-menu { display: none !important; }
}

.navbar .mobile-menu.open { display: block; }

.navbar .mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: color 0.3s ease;
}

.navbar .mobile-link:hover { color: #D4AF37; }

.navbar .mobile-cta {
  display: block;
  margin-top: 1rem;
  text-align: center;
  background: #D4AF37;
  color: #0A0A0A;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar .mobile-cta:hover { background: #F5E6C8; }

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

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), #0A0A0A);
}

.hero .vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px rgba(0,0,0,0.8);
}

.hero .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1.5rem;
}

.hero .top-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, #D4AF37);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(-1rem);
  transition: all 1s ease 0.2s;
}

.hero.loaded .top-line {
  opacity: 1;
  transform: translateY(0);
}

.hero .subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B8975A;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 0.5s;
}

@media (min-width: 640px) { .hero .subtitle { font-size: 1.125rem; } }

.hero.loaded .subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero .artist-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease 0.7s;
}

.hero.loaded .artist-name {
  opacity: 1;
  transform: translateY(0);
}

.hero .artist-name .first {
  display: block;
  font-size: 2.5rem;
}

@media (min-width: 640px) { .hero .artist-name .first { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero .artist-name .first { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero .artist-name .first { font-size: 6rem; } }

.hero .artist-name .second {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  color: #F0EDE8;
  margin-top: 0.5rem;
  font-weight: 400;
  font-style: italic;
}

@media (min-width: 640px) { .hero .artist-name .second { font-size: 1.5rem; } }
@media (min-width: 768px) { .hero .artist-name .second { font-size: 1.875rem; } }

.hero .tagline {
  margin-top: 1.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: rgba(240, 237, 232, 0.8);
  max-width: 36rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 1s;
}

@media (min-width: 640px) { .hero .tagline { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero .tagline { font-size: 1.25rem; } }

.hero.loaded .tagline {
  opacity: 1;
  transform: translateY(0);
}

.hero .gold-hr {
  margin-top: 2rem;
  height: 1px;
  width: 5rem;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: all 1s ease 1.2s;
}

.hero.loaded .gold-hr {
  opacity: 1;
  transform: scaleX(1);
}

.hero .ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease 1.4s;
}

@media (min-width: 640px) {
  .hero .ctas { flex-direction: row; }
}

.hero.loaded .ctas {
  opacity: 1;
  transform: translateY(0);
}

.hero .cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #D4AF37;
  color: #0A0A0A;
  padding: 1rem 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: pulse-gold 2s ease-in-out infinite;
}

@media (min-width: 640px) { .hero .cta-primary { font-size: 1rem; } }

.hero .cta-primary:hover {
  background: #F5E6C8;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.hero .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  padding: 1rem 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

@media (min-width: 640px) { .hero .cta-secondary { font-size: 1rem; } }

.hero .cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.hero .scroll-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(212, 175, 55, 0.6);
  transition: color 0.3s ease;
  opacity: 0;
  transition: all 1s ease 1.8s;
}

.hero.loaded .scroll-btn { opacity: 1; }
.hero .scroll-btn:hover { color: #D4AF37; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .section { padding: 8rem 0; }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label.center { justify-content: center; }
.section-label.right { justify-content: flex-end; }

.section-label .line {
  height: 1px;
  width: 3rem;
  background: #D4AF37;
}

.section-label span {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B8975A;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #F0EDE8;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-title .accent {
  font-style: italic;
}

.section-text {
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  color: rgba(240, 237, 232, 0.7);
  line-height: 1.7;
  max-width: 32rem;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
}

.radial-glow {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

/* --- Aspect Ratio --- */
.aspect-video {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-video > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aspect-square {
  position: relative;
  padding-bottom: 100%;
}

.aspect-square > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience .grid-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .experience .grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.experience .text-col { order: 2; }
.experience .video-col { order: 1; }

@media (min-width: 1024px) {
  .experience .text-col { order: 1; }
  .experience .video-col { order: 2; }
}

.experience .sparkle-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #D4AF37;
}

.experience .sparkle-row span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: #B8975A;
}

/* ============================================================
   KARAOKE SECTION
   ============================================================ */
.karaoke { text-align: center; }

.karaoke .video-wrap {
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.karaoke .cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #D4AF37;
  color: #0A0A0A;
  padding: 1rem 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-gold:hover {
  background: #F5E6C8;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.cta-gold svg { transition: transform 0.3s ease; }
.cta-gold:hover svg { transform: scale(1.1); }

/* ============================================================
   PERFORMANCE SECTION
   ============================================================ */
.performance .grid-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .performance .grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.genre-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.genre-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: 1fr 1fr 1fr; } }

.events-grid-bottom {
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 1.5rem auto 0;
}

@media (min-width: 640px) { .events-grid-bottom { grid-template-columns: 1fr 1fr; } }

.event-card {
  padding: 2rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s ease;
}

.event-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.event-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #D4AF37;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.event-card:hover .icon { transform: scale(1.1); }

.event-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F0EDE8;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  color: rgba(240, 237, 232, 0.6);
  line-height: 1.6;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) { .gallery-grid { gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.gallery-item:hover .play-overlay { background: rgba(0,0,0,0.1); }

.gallery-item .play-overlay svg {
  color: rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
}

.gallery-item:hover .play-overlay svg {
  color: #D4AF37;
  transform: scale(1.1);
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location { text-align: center; }

.location .pin-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location .pin-circle svg { color: #D4AF37; }

.location .state {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #B8975A;
}

.location .areas {
  margin-top: 1.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: rgba(240, 237, 232, 0.6);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr 1fr; } }

.contact-card {
  padding: 2rem;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: all 0.5s ease;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.contact-card .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s ease;
}

.contact-card .icon-circle.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-card:hover .icon-circle.whatsapp { background: rgba(37, 211, 102, 0.2); }
.contact-card .icon-circle.whatsapp svg { color: #25D366; }

.contact-card .icon-circle.gold {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-card:hover .icon-circle.gold { background: rgba(212, 175, 55, 0.2); }
.contact-card .icon-circle.gold svg { color: #D4AF37; }

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #F0EDE8;
  margin-bottom: 0.25rem;
}

.contact-card .value {
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  color: #D4AF37;
  word-break: break-all;
}

.contact-card .helper {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: rgba(240, 237, 232, 0.4);
  margin-top: 0.5rem;
}

.contact-artist {
  max-width: 28rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.contact-artist img {
  width: 100%;
  object-fit: contain;
}

.contact-artist .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #0A0A0A, rgba(10,10,10,0.8), transparent);
  padding: 4rem 1.5rem 1.5rem;
}

.contact-artist .overlay .name {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #D4AF37;
  text-align: center;
}

.contact-artist .overlay .loc {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #B8975A;
  text-align: center;
  margin-top: 0.25rem;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta { text-align: center; }

.final-cta .section {
  padding: 7rem 0;
}

@media (min-width: 640px) {
  .final-cta .section { padding: 9rem 0; }
}

.final-cta .gold-line-top,
.final-cta .gold-line-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.final-cta .gold-line-top { top: 0; }
.final-cta .gold-line-bottom { bottom: 0; }

.final-cta .crown {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 2rem;
}

.final-cta .title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) { .final-cta .title { font-size: 3rem; } }
@media (min-width: 1024px) { .final-cta .title { font-size: 3.75rem; } }

.final-cta .sub {
  margin-top: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #B8975A;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .cta-wrap { margin-top: 2.5rem; }

.final-cta .secondary-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .final-cta .secondary-contact {
    flex-direction: row;
    justify-content: center;
  }
}

.final-cta .secondary-contact a {
  color: rgba(240, 237, 232, 0.5);
  font-family: "Raleway", sans-serif;
  transition: color 0.3s ease;
}

.final-cta .secondary-contact a:hover { color: #D4AF37; }

.final-cta .secondary-contact .sep {
  display: none;
  color: rgba(212, 175, 55, 0.3);
}

@media (min-width: 640px) {
  .final-cta .secondary-contact .sep { display: inline; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer .brand-row {
  margin-bottom: 1rem;
}

.footer .brand-row .name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D4AF37;
}

.footer .brand-row .sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #B8975A;
  margin-left: 0.5rem;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-family: "Raleway", sans-serif;
  color: rgba(240, 237, 232, 0.4);
  margin-bottom: 1rem;
}

.footer .links a { transition: color 0.3s ease; }
.footer .links a:hover { color: #D4AF37; }
.footer .links .sep { color: rgba(212, 175, 55, 0.2); }

.footer .location-text {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: rgba(240, 237, 232, 0.25);
  margin-bottom: 0.5rem;
}

.footer .copyright {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: rgba(240, 237, 232, 0.2);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.5s ease;
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

.floating-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp.hidden {
  opacity: 0;
  transform: translateY(2rem);
  pointer-events: none;
}

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

@media (min-width: 640px) {
  .floating-whatsapp .label { display: inline; }
}

/* ============================================================
   SVG ICON SIZING
   ============================================================ */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }
.icon-2xl { width: 2rem; height: 2rem; }
.icon-3xl { width: 2.5rem; height: 2.5rem; }
.icon-hero { width: 3rem; height: 3rem; }

#soundBtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    z-index: 10;
}
