/* Victoria — estático HTML/CSS/JS (sin Node) */

:root {
  --ink: #050506;
  --ink-soft: #0a0a0c;
  --ink-card: #0f0f12;
  --ivory: #f7f3eb;
  --ivory-dim: rgba(247, 243, 235, 0.65);
  --champagne: #e8dcc8;
  --champagne-muted: #c9b89a;
  --gold: #c9a962;
  --gold-whisper: #b8954a;
  --rose: #d4a89a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-nav: "Montserrat", system-ui, sans-serif;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(247, 243, 235, 0.92);
  background-color: var(--ink);
  background-image:
    radial-gradient(900px 500px at 15% -10%, rgba(201, 169, 98, 0.08), transparent 60%),
    radial-gradient(700px 400px at 95% 10%, rgba(212, 168, 154, 0.05), transparent 55%);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 169, 98, 0.35);
  color: var(--ivory);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease-luxury), border-color 0.45s, padding 0.45s;
  border-bottom: 1px solid transparent;
  padding: 1.25rem 0;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding: 0.65rem 0;
}

.site-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

/* Logo oficial: PNG blanco sobre negro — encaja con el fondo del header */
.brand__logo {
  height: clamp(3.35rem, 12vw, 5.35rem);
  width: auto;
  max-width: min(500px, 78vw);
  display: block;
  object-fit: contain;
}

.nav--desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav--desktop {
    display: flex;
  }
}

.nav--desktop a {
  position: relative;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.65);
  transition: color 0.3s;
}

.nav--desktop a:hover {
  color: var(--ivory);
}

.nav--desktop a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transition: width 0.45s var(--ease-luxury);
}

.nav--desktop a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-nav) !important;
  font-size: 0.6rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne) !important;
}

.nav__cta:hover {
  border-color: rgba(201, 169, 98, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.nav__cta::after {
  display: none !important;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-menu-open .nav-toggle__bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 6, 0.96);
  backdrop-filter: blur(16px);
  padding: 6rem 1.5rem 2rem;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile__inner a {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ivory);
}

.nav-mobile__cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.4);
  font-family: var(--font-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--champagne) !important;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  transform-origin: center top;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 85% at 50% 0%, rgba(201, 169, 98, 0.2) 0%, transparent 52%),
    radial-gradient(ellipse 95% 55% at 50% 22%, rgba(160, 100, 50, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.28) 0%, rgba(5, 5, 6, 0.48) 42%, rgba(5, 5, 6, 0.9) 100%),
    radial-gradient(ellipse 90% 50% at 75% 92%, rgba(212, 168, 154, 0.09) 0%, transparent 48%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.55;
  mix-blend-mode: overlay;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(232, 220, 200, 0.5), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(232, 220, 200, 0.4), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(232, 220, 200, 0.45), transparent),
    radial-gradient(1px 1px at 85% 65%, rgba(232, 220, 200, 0.35), transparent);
  animation: sparkle 6s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 7rem 1.25rem 4rem;
}

@media (min-width: 640px) {
  .hero__content {
    padding-bottom: 5rem;
  }
}

.hero__kicker {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(232, 220, 200, 0.95);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  font-style: italic;
  color: rgba(232, 220, 200, 0.92);
  margin: 0.35rem 0 0;
  text-wrap: balance;
}

.hero__lead {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247, 243, 235, 0.7);
}

@media (min-width: 640px) {
  .hero__lead {
    font-size: 1rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 243, 235, 0.45);
}

.hero__dot {
  display: none;
}

@media (min-width: 640px) {
  .hero__dot {
    display: inline;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: filter 0.3s, background 0.3s, border-color 0.3s;
}

.btn--primary {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.95), rgba(184, 149, 74, 0.95));
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.btn--line {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--champagne);
}

.btn--line:hover {
  border-color: rgba(201, 169, 98, 0.55);
}

.btn--block {
  width: 100%;
}

/* ——— Sections ——— */
.wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6.5rem 0;
  }
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section__head--center {
  text-align: center;
  align-items: center !important;
  justify-content: center !important;
}

.section__head--center > div {
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.section__desc {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 243, 235, 0.6);
}

.section__desc--narrow {
  max-width: 22rem;
}

.section__aside {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(247, 243, 235, 0.4);
  margin: 0;
}

.accent {
  color: var(--champagne);
}

.collections .section__desc a {
  color: rgba(201, 169, 98, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.collections .section__desc a:hover {
  color: var(--champagne);
}

/* ——— Collections ——— */
.collections__foot {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid:not(.card-grid--two) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-grid.card-grid--two {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.card-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .card-grid:not(.card-grid--two) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card--visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink-soft);
  aspect-ratio: 3 / 4;
}

.card--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-luxury);
}

.card--visual:hover img {
  transform: scale(1.05);
}

.card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, transparent 55%);
  opacity: 0.88;
  z-index: 1;
  transition: opacity 0.45s;
}

.card--visual:hover::before {
  opacity: 0.94;
}

.card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  z-index: 2;
}

.card__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(232, 220, 200, 0.8);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0.35rem 0 0;
}

.card__text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.55);
}

.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s, transform 0.45s var(--ease-luxury);
}

.card--visual:hover .card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Taller / costura (Lo que hacemos) ——— */
.collections__taller {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.75rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 900px) {
  .collections__taller {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    padding: 2rem 2.25rem;
  }
}

.collections__taller-visual {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.collections__taller-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.collections__taller-kicker {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.collections__taller-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}

.collections__taller-text {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.62);
}

/* ——— Experience: foto más compacta ——— */
.experience__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.experience__visual {
  margin: 0;
  position: relative;
  border: none;
  overflow: visible;
  border-radius: 0;
}

.experience__visual-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  max-height: 22rem;
}

@media (min-width: 1024px) {
  .experience__visual-frame {
    max-height: 20rem;
  }
}

.experience__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(5, 5, 6, 0.55), transparent 55%);
  pointer-events: none;
}

/* ——— Galería (un solo carrusel) ——— */
.gallery-single {
  width: 100%;
  max-width: min(52rem, 100%);
  margin: 0 auto;
}

.gcar {
  position: relative;
  padding: 0 3rem;
  isolation: isolate;
}

@media (max-width: 639px) {
  .gcar {
    padding: 0 2.4rem;
  }
}

.gcar__viewport {
  overflow: hidden;
  width: 100%;
  max-height: min(72vh, 640px);
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-card);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

.gcar__track {
  display: flex;
  transition: transform 0.85s var(--ease-luxury);
  will-change: transform;
}

.gcar__slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.gcar__slide img {
  width: 100%;
  max-height: min(72vh, 640px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #111;
}

.gcar__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 6, 0.55);
  backdrop-filter: blur(12px);
  color: var(--champagne);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.gcar__btn:hover {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.gcar__btn--prev {
  left: 0;
}

.gcar__btn--next {
  right: 0;
}

.gcar__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.gcar__dots button {
  width: 2.25rem;
  height: 3px;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.gcar__dots button[aria-current="true"] {
  background: linear-gradient(90deg, var(--gold), var(--gold-whisper));
  transform: scaleY(1.35);
}

/* ——— Mapa ——— */
.map-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.45);
}

.map-frame {
  margin-top: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  min-height: clamp(26rem, 52vh, 36rem);
  aspect-ratio: 16 / 9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(26rem, 52vh, 36rem);
  border: 0;
  display: block;
}

.map-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

/* ——— Banner redes / descuento ——— */
.social-promo {
  border-top: 1px solid rgba(201, 169, 98, 0.22);
  background:
    linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.95), rgba(5, 5, 6, 0.98));
}

.social-promo__inner {
  display: grid;
  gap: 1.75rem;
  padding: 3rem 0;
  align-items: center;
}

@media (min-width: 900px) {
  .social-promo__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }
}

.social-promo__kicker {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.social-promo__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  margin: 0;
  line-height: 1.2;
}

.social-promo__desc {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 243, 235, 0.62);
}

.social-promo__desc strong {
  color: rgba(232, 220, 200, 0.95);
  font-weight: 600;
}

.social-promo__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .social-promo__actions {
    align-items: stretch;
  }
}

/* ——— Booking datos premium ——— */
.booking__dl--lux dt {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
}

.booking__addr {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(247, 243, 235, 0.88) !important;
}

.booking__hours {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking__hours-line {
  display: block;
  font-size: 0.92rem;
  color: rgba(247, 243, 235, 0.78);
}

.booking__hours-line strong {
  color: var(--champagne);
  font-weight: 600;
}

.booking__hours-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(247, 243, 235, 0.48);
  font-style: italic;
}
.experience {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.85);
}

.experience__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .experience__grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.experience__quote {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(247, 243, 235, 0.95);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.experience__visual::after {
  display: none;
}

.pillars {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}

.pillar {
  border-left: 1px solid rgba(201, 169, 98, 0.25);
  padding-left: 1.1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
}

.pillar p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.55);
}

/* ——— Film ——— */
.film {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.55);
}

.film__frame {
  margin-top: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.film__video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

/* ——— Carrusel clientas ——— */
.vcarousel {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vcar {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 3.25rem;
}

@media (max-width: 639px) {
  .vcar {
    padding: 0 2.35rem;
  }
}

.vcar__viewport {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 6, 0.9));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.vcar__track {
  display: flex;
  transition: transform 0.75s var(--ease-luxury);
  will-change: transform;
}

.vcar__slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.vcar__slide-inner {
  padding: 0.85rem 0.85rem 1.15rem;
}

@media (min-width: 900px) {
  .vcar__slide-inner {
    padding: 1.15rem 1.5rem 1.5rem;
  }
}

.vcar__slide video {
  width: 100%;
  border-radius: 0.85rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.vcar__cap {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.45);
}

.vcar__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 6, 0.55);
  backdrop-filter: blur(12px);
  color: var(--champagne);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
  z-index: 5;
}

.vcar__btn:hover {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
}

.vcar__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.vcar__btn--prev {
  left: 0;
}

.vcar__btn--next {
  right: 0;
}

.vcar__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.vcar__dots button {
  width: 2.5rem;
  height: 3px;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.vcar__dots button[aria-current="true"] {
  background: linear-gradient(90deg, var(--gold), var(--gold-whisper));
  transform: scaleY(1.4);
}

/* ——— Quotes ——— */
.quotes__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .quotes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  margin: 0;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(201, 169, 98, 0.22);
  display: block;
}

.quote__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0.25rem 0 0;
  color: rgba(247, 243, 235, 0.9);
}

.quote footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote__name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--champagne);
  margin: 0;
}

.quote__role {
  font-size: 0.75rem;
  color: rgba(247, 243, 235, 0.45);
  margin: 0.35rem 0 0;
}

/* ——— Booking ——— */
.booking__panel {
  position: relative;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--ink-card) 0%, var(--ink-soft) 50%, var(--ink) 100%);
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .booking__panel {
    padding: 3rem;
  }
}

.booking__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.booking__glow--a {
  width: 24rem;
  height: 24rem;
  top: -6rem;
  right: -6rem;
  background: rgba(201, 169, 98, 0.12);
}

.booking__glow--b {
  width: 18rem;
  height: 18rem;
  bottom: -4rem;
  left: -4rem;
  background: rgba(212, 168, 154, 0.1);
}

.booking__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .booking__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.booking__dl {
  margin: 2rem 0 0;
}

.booking__dl div {
  margin-bottom: 1rem;
}

.booking__dl dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(232, 220, 200, 0.8);
}

.booking__dl dd + dd {
  margin-top: 0.35rem;
}

.booking__dl a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking__form {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .booking__form {
    padding: 2rem;
  }
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking__form label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 243, 235, 0.45);
}

.booking__form input,
.booking__form select,
.booking__form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 6, 0.6);
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}

.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  border-color: rgba(201, 169, 98, 0.45);
}

.form-hint {
  min-height: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(232, 220, 200, 0.9);
  margin: 0;
}

.form-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(247, 243, 235, 0.4);
  margin: 0;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer__logo {
  height: clamp(3.25rem, 9vw, 4.5rem);
  width: auto;
  max-width: 340px;
  display: block;
  object-fit: contain;
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0;
}

.site-footer__tag {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--champagne-muted);
  margin: 1rem 0 0;
}

.site-footer__desc {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(247, 243, 235, 0.5);
  max-width: 18rem;
}

.site-footer__h {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 243, 235, 0.35);
  margin: 0 0 1rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.6);
  transition: color 0.25s;
}

.site-footer__list a:hover {
  color: var(--champagne);
}

.site-footer__list--meta li {
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.55);
}

.site-footer__list--meta a {
  font-size: inherit;
  color: rgba(247, 243, 235, 0.72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.site-footer__list--meta a:hover {
  color: var(--champagne);
  border-bottom-color: rgba(201, 169, 98, 0.35);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social li {
  margin: 0;
}

.site-footer__soc {
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(10, 10, 12, 0.65));
  color: rgba(247, 243, 235, 0.82);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.site-footer__soc svg {
  flex-shrink: 0;
}

.site-footer__soc:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.site-footer__soc:focus-visible {
  outline: 2px solid rgba(201, 169, 98, 0.65);
  outline-offset: 3px;
}

.site-footer__soc--instagram:hover {
  border-color: rgba(228, 64, 95, 0.45);
  color: #f09492;
}

.site-footer__soc--facebook:hover {
  border-color: rgba(24, 119, 242, 0.45);
  color: #1877f2;
}

.site-footer__soc--maps:hover {
  border-color: rgba(66, 133, 244, 0.45);
  color: #4285f4;
}

.site-footer__soc--tiktok:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.site-footer__soc--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
  color: #25d366;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(247, 243, 235, 0.35);
}

.site-footer__legal {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 235, 0.42);
}

.site-footer__legal a {
  color: rgba(201, 169, 98, 0.9);
}

.site-footer__legal a:hover {
  color: var(--champagne);
}

.site-footer__social-text {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(247, 243, 235, 0.38);
}

.site-footer__social-text a {
  color: rgba(247, 243, 235, 0.55);
  text-decoration: none;
}

.site-footer__social-text a:hover {
  color: var(--champagne);
}

/* ——— WhatsApp FAB ——— */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 120;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background:
    radial-gradient(ellipse at 30% 25%, rgba(37, 211, 102, 0.22), transparent 55%),
    rgba(5, 5, 6, 0.88);
  color: #25d366;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.18),
    0 22px 56px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.wa-fab__ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.22);
  animation: wa-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

.wa-fab__icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 12px rgba(37, 211, 102, 0.35));
}

.wa-fab:hover {
  border-color: rgba(37, 211, 102, 0.55);
  transform: scale(1.06);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.28),
    0 26px 64px rgba(0, 0, 0, 0.55);
}

.wa-fab:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.65);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab__ring {
    animation: none;
    opacity: 0.5;
  }
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— FAQ (SEO + UX) ——— */
.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.75);
}

.faq__list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  background: rgba(5, 5, 6, 0.5);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.95);
  position: relative;
  padding-right: 2.5rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease-luxury);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__body {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.62);
}

/* ——— Páginas interiores SEO ——— */
.page-hero {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.42);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(201, 169, 98, 0.85);
}

.breadcrumb a:hover {
  color: var(--champagne);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.12;
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.62);
}

.seo-prose {
  max-width: 42rem;
  margin: 0 auto;
}

.seo-prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
}

.seo-prose p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.78;
  color: rgba(247, 243, 235, 0.68);
}

.seo-prose .seo-cta {
  margin-top: 2rem;
}

.site-footer--minimal {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer--minimal p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 243, 235, 0.55);
}

.site-footer--minimal a {
  color: rgba(201, 169, 98, 0.95);
}

.site-footer--minimal a:hover {
  color: var(--champagne);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--ink-card);
  color: var(--champagne);
  border-radius: 0.35rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* offset anchors for fixed header */
section[id] {
  scroll-margin-top: 5rem;
}
