:root {
  --gold: #d4af37;
  --gold-soft: #f1dc94;
  --black: #0e0e10;
  --white: #ffffff;
  --gray: #dcdce2;
  --bg-card: #17171b;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

[data-theme="vibrante"] {
  --gold: #ff9f1c;
  --gold-soft: #ffd37c;
  --black: #15062f;
  --white: #ffffff;
  --gray: #f0e9ff;
  --bg-card: #251046;
  --shadow: 0 12px 35px rgba(20, 5, 45, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
}

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

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 12, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.6rem;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.2rem 0.35rem 0.2rem 0.1rem;
}

.brand-logo {
  display: block;
  height: clamp(2.15rem, 5.4vw, 2.9rem);
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  object-position: left center;
}

.nav {
  position: fixed;
  top: 4.1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 15, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 35;
}

.nav a {
  opacity: 0.95;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.52rem 0.65rem;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
}

body.menu-open .nav {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.nav-toggle {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  margin-inline: auto;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.theme-switch {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem;
  flex-shrink: 0;
}

.theme-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.theme-btn.is-active {
  background: linear-gradient(135deg, var(--gold), #f7d774);
  color: #111;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(212, 175, 55, 0.24), transparent 32%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.76), rgba(14, 14, 16, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo-wrap {
  margin: 0 auto 1.1rem;
  max-width: min(300px, 88vw);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(4.5rem, 18vw, 7.5rem);
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.hero-kicker {
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  margin: 0;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 1rem auto 1.6rem;
  color: var(--gray);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #f7d774);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.36);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-soft);
}

section {
  padding: 4.4rem 0;
}

.card,
.stats,
.social-card,
.service-card,
.booking-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.bio {
  position: relative;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.bio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
  pointer-events: none;
}

.bio > .section-title,
.bio-shell {
  position: relative;
}

.bio-kicker {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}

.bio-shell {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.bio-figure-wrap {
  max-width: 420px;
  margin-inline: auto;
}

.bio-figure {
  margin: 0;
}

.bio-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(212, 175, 55, 0.12);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.bio-figcaption {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

.bio-content {
  min-width: 0;
}

.bio-chapter {
  margin-bottom: 2.1rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
}

.bio-chapter--closing {
  border-left-color: rgba(212, 175, 55, 0.55);
  margin-bottom: 0;
}

.bio-chapter h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  color: var(--gold-soft);
  line-height: 1.35;
}

.bio-chapter p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 68ch;
  line-height: 1.72;
  font-size: clamp(0.95rem, 1.9vw, 1.02rem);
}

.bio-chapter p:last-child {
  margin-bottom: 0;
}

.bio-credits {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.85rem;
}

.bio-credit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1rem 1.05rem 0.95rem;
}

.bio-credit-card h4 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 800;
}

.bio-credit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.bio-credit-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bio-credit-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bio-credit-prose {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.bio-credit-prose p {
  margin: 0 0 0.65rem;
  max-width: none;
}

.bio-credit-prose p:last-child {
  margin-bottom: 0;
}

.bio-credit-prose strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.bio-credit-channels {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.experience {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.4rem;
}

.stats {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 1rem 0.6rem;
}

.stat-item strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
}

.section-title p {
  color: var(--gray);
  margin-top: 0.6rem;
}

.social-grid,
.service-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.social-card,
.service-card {
  padding: 1.2rem;
}

.social-embed {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin: 0.5rem 0 0.9rem;
}

.social-note {
  color: #b8b8c3;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.gallery-grid {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.2rem 0.45rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.gallery-carousel {
  margin-top: 0.9rem;
  overflow: hidden;
}

.gallery-head {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-sub {
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
}

.gallery-controls {
  display: inline-flex;
  gap: 0.85rem;
}

.gallery-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-item {
  margin: 0;
  position: relative;
  flex: 0 0 clamp(220px, 62vw, 330px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: clamp(260px, 55vw, 380px);
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.65rem;
  z-index: 1;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700;
}

.gallery-note {
  margin: 0.9rem 0 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  justify-self: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: min(76vh, 860px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  display: block;
}

.lightbox-caption {
  margin-top: 0.7rem;
  text-align: center;
  color: #f4f4f6;
  font-weight: 600;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(20, 20, 25, 0.75);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(33, 33, 40, 0.94);
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  font-size: 1rem;
}

.lightbox-nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.65rem;
  line-height: 1;
}

.testimonial-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.testimonial-card p {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--gold-soft);
  font-weight: 600;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--gray);
}

.booking {
  padding-bottom: 6rem;
}

.booking-wrap {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.booking-kicker {
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.booking-logo {
  display: block;
  width: min(200px, 70%);
  height: auto;
  max-height: 3.2rem;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 0.9rem;
  opacity: 0.98;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.site-footer {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

.site-footer-logo {
  display: block;
  height: 3rem;
  width: auto;
  max-width: 200px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  color: #a8a8b2;
  letter-spacing: 0.02em;
}

.booking-contact {
  display: grid;
  gap: 0.8rem;
  align-content: center;
}

.phone {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--gold-soft);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 4.7rem;
  z-index: 40;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 39;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.45rem;
  padding: 0.5rem;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 12, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-cta a {
  text-align: center;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.7rem 0.6rem;
  font-size: 0.88rem;
}

.mobile-cta a:first-child {
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.mobile-cta a:last-child {
  color: #111;
  background: linear-gradient(135deg, var(--gold), #f7d774);
}

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

.reveal.active {
  opacity: 1;
  transform: none;
}

.pulse {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.52);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0);
  }
}

@media (min-width: 760px) {
  .topbar {
    padding: 0.9rem 2.5rem;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    font-size: 0.92rem;
  }

  .nav a {
    padding: 0;
    border-radius: 0;
  }

  .nav a:hover {
    background: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .theme-btn {
    font-size: 0.76rem;
    padding: 0.4rem 0.78rem;
  }

  .experience {
    grid-template-columns: 1.2fr 1fr;
  }

  .social-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-wrap {
    grid-template-columns: 1.4fr 1fr;
    padding: 2rem;
  }

  .mobile-cta {
    display: none;
  }

  .whatsapp-float {
    bottom: 1rem;
  }

  .lightbox {
    padding: 1.5rem 2.5rem;
  }

  .lightbox-nav {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 900px) {
  .bio-shell {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: start;
  }

  .bio-figure-wrap {
    margin-inline: 0;
    max-width: none;
    position: sticky;
    top: 5.75rem;
  }

  .bio-figcaption {
    text-align: left;
  }

  .bio-credits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .gallery-item {
    flex-basis: clamp(240px, 23vw, 310px);
  }
}
