/* ========================================
   NAILS BY NANY — STYLE
   Colores del logo: blush crema + dorado
   ======================================== */

:root {
  --cream: #FBF1EB;          /* fondo principal */
  --cream-light: #FFF9F5;    /* tarjetas */
  --blush: #F3D9CB;          /* acentos suaves */
  --blush-deep: #E7C1AC;     /* acento rosado cálido */
  --gold: #CEA26E;           /* dorado principal del logo */
  --gold-dark: #A97C4B;      /* dorado profundo */
  --gold-soft: #E7CDA8;
  --ink: #4A352B;            /* texto principal */
  --muted: #977F6F;          /* texto secundario */
  --line: #EAD8C9;           /* bordes */
  --card-shadow: rgba(176, 124, 75, 0.18);

  --font-heading: 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(251, 241, 235, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(176, 124, 75, 0.16);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream-light);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(206, 162, 110, 0.25);
  padding: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  white-space: nowrap;
}

.logo-text span {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  padding: 0.25rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep));
  transition: width 0.3s ease;
}

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

.nav a:hover {
  color: var(--gold-dark);
}

.nav-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-instagram::after {
  display: none;
}

.nav-instagram:hover {
  background: linear-gradient(135deg, var(--gold), var(--blush-deep));
  color: #fff;
  border-color: transparent;
}

.close-menu {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  background: var(--blush);
  border: 1px solid var(--gold);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: var(--gold);
  color: #fff;
}

.header-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(176, 124, 75, 0.3);
}

.header-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 124, 75, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(251, 241, 235, 0.82) 0%,
    rgba(251, 241, 235, 0.62) 45%,
    rgba(251, 241, 235, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.76rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.eyebrow-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  margin-bottom: 1.4rem;
  color: var(--ink);
}

.hero-word {
  display: block;
}

.hero-word.script {
  font-family: var(--font-script);
  font-size: 5.6rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1.1;
}

.hero p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #6b5546;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(176, 124, 75, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(176, 124, 75, 0.42);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 253, 248, 0.6);
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: all 0.3s;
}

.ghost-btn:hover {
  border-color: var(--gold-dark);
  background: var(--blush);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   DIVIDER
   ======================================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.45;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem auto;
  border-radius: 3px;
}

.section-sub {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 3rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about-quote {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.6;
  font-style: italic;
  color: #6f4636;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  min-width: 200px;
  padding: 2rem 1rem;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all 0.4s;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 34px rgba(176, 124, 75, 0.14);
  border-color: var(--gold);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-number i {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================================
   SERVICES
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(176, 124, 75, 0.16);
  border-color: var(--gold);
}

.service-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold-soft));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

.service-icon i {
  color: var(--gold-dark);
  font-size: 1.55rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.deposit-note {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.6rem;
  background: var(--blush);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}

.deposit-note i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

/* ========================================
   GALLERY — CARRUSEL CIRCULAR
   ======================================== */
.gallery-section {
  max-width: 1400px;
}

.gallery-carousel {
  position: relative;
  margin: 0 auto;
  padding: 0 70px;
  max-width: 1200px;
}

.carousel-viewport {
  overflow: hidden;
  height: 380px;
  cursor: grab;
}

.carousel-viewport.dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 380px;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 350px;
  margin-left: -130px;
  margin-top: -175px;
  --off-1: 195px;
  --off-2: 390px;
  --off-3: 585px;
  transform: translateX(0) scale(0.55);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(206, 162, 110, 0.25);
  background: var(--cream-light);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.3, 1), box-shadow 0.6s ease;
  transform: rotate(0deg);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.15);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.3, 1);
}

/* Posición central */
.carousel-slide.is-center {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 5;
  filter: none;
}

.carousel-slide.is-center .slide-inner {
  border-width: 8px;
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(176, 124, 75, 0.35), 0 0 0 6px rgba(206, 162, 110, 0.25);
}

.carousel-slide.is-center img {
  transform: scale(1.04);
}

/* Posiciones laterales */
.carousel-slide.side-right-1 {
  transform: translateX(var(--off-1)) scale(0.82);
  opacity: 0.9;
  z-index: 4;
}

.carousel-slide.side-left-1 {
  transform: translateX(calc(var(--off-1) * -1)) scale(0.82);
  opacity: 0.9;
  z-index: 4;
}

.carousel-slide.side-right-2 {
  transform: translateX(var(--off-2)) scale(0.66);
  opacity: 0.62;
  z-index: 3;
}

.carousel-slide.side-left-2 {
  transform: translateX(calc(var(--off-2) * -1)) scale(0.66);
  opacity: 0.62;
  z-index: 3;
  filter: blur(1px);
}

.carousel-slide.side-right-3 {
  transform: translateX(var(--off-3)) scale(0.5);
  opacity: 0.3;
  z-index: 2;
  filter: blur(2px);
}

.carousel-slide.side-left-3 {
  transform: translateX(calc(var(--off-3) * -1)) scale(0.5);
  opacity: 0.3;
  z-index: 2;
  filter: blur(2px);
}

.carousel-slide.inactive-back {
  transform: translateX(0) scale(0.4);
  opacity: 0;
  z-index: 1;
  filter: blur(4px);
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--cream-light);
  color: var(--gold-dark);
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(176, 124, 75, 0.2);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 4px;
}

.carousel-next {
  right: 4px;
}

/* Puntos */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel-dot:hover {
  opacity: 0.7;
}

.carousel-dot.active {
  opacity: 1;
  width: 26px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(176, 124, 75, 0.14);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon.wa {
  background: linear-gradient(135deg, #d9f0c9, #a9dd8f);
  border-color: #8ccf6e;
}

.info-icon.wa i {
  color: #2b8e43;
}

.info-icon i {
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.info-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.info-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.map {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(176, 124, 75, 0.12);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.92);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3faf62, #25d366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55);
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--cream), var(--blush));
  border-top: 1px solid var(--line);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream-light);
  border: 2px solid var(--gold);
  padding: 2px;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 2px;
}

.footer-name span {
  font-family: var(--font-script);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.footer-loc {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(176, 124, 75, 0.3);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .header {
    padding: 0.8rem 1.5rem;
  }

  .logo-text {
    font-size: 1.28rem;
  }

  .logo-text span {
    font-size: 1.5rem;
  }

  .logo-img {
    height: 44px;
    width: 44px;
  }

  .lang-toggle {
    width: 40px;
    height: 40px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 380px;
    height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--line);
    gap: 0;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.06);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 0.92rem;
    padding: 0.95rem 1.25rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .nav-instagram {
    margin-top: 1.5rem;
    justify-content: center;
    align-self: center;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blush);
    border: 1px solid var(--line);
  }

  .menu-toggle {
    display: flex;
  }

  .header-book-btn {
    display: none;
  }

  .carousel-slide {
    width: 210px;
    height: 285px;
    margin-left: -105px;
    margin-top: -143px;
    --off-1: 155px;
    --off-2: 310px;
    --off-3: 465px;
  }

  .carousel-viewport,
  .carousel-track {
    height: 310px;
  }

  .gallery-carousel {
    padding: 0 56px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.25rem 4rem;
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-word.script {
    font-size: 3.8rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .primary-btn, .ghost-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.76rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 3px;
  }

  .about-quote {
    font-size: 1.25rem;
  }

  .stats-row {
    gap: 1rem;
  }

  .stat {
    min-width: 130px;
    padding: 1.4rem 0.75rem;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .service-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 2rem 1.25rem;
  }

  .gallery-carousel {
    padding: 0 0;
  }

  .carousel-slide {
    width: 170px;
    height: 230px;
    margin-left: -85px;
    margin-top: -115px;
    --off-1: 105px;
    --off-2: 210px;
    --off-3: 315px;
  }

  .carousel-viewport,
  .carousel-track {
    height: 255px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 2px;
  }

  .carousel-next {
    right: 2px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .map {
    height: 260px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-word.script {
    font-size: 3.2rem;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .eyebrow-line {
    width: 36px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .carousel-slide {
    width: 140px;
    height: 190px;
    margin-left: -70px;
    margin-top: -95px;
    --off-1: 85px;
    --off-2: 170px;
    --off-3: 255px;
  }

  .carousel-viewport,
  .carousel-track {
    height: 210px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
    bottom: 20px;
    right: 20px;
  }

  .footer-links {
    gap: 1rem;
  }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  display: flex;
  justify-content: center;
}

.preloader-logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream-light);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(206, 162, 110, 0.18), 0 16px 40px rgba(176, 124, 75, 0.3);
  padding: 4px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.preloader-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-top: 1.1rem;
}

.preloader-name span {
  font-family: var(--font-script);
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--gold-dark);
}

.preloader-bar {
  width: 230px;
  height: 4px;
  background: rgba(206, 162, 110, 0.25);
  border-radius: 3px;
  margin: 1.4rem auto 1rem;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--blush-deep));
  border-radius: 3px;
  animation: preloaderBar 1.8s ease-in-out forwards;
}

@keyframes preloaderBar {
  0% { width: 0; }
  70% { width: 82%; }
  100% { width: 100%; }
}

.preloader-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  padding-left: 2.2rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-track i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.55rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========================================
   LIVE VIEWERS
   ======================================== */
.live-viewers {
  position: fixed;
  left: 24px;
  bottom: 26px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(176, 124, 75, 0.18);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulseDot 1.6s ease infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.lv-count {
  font-weight: 600;
  color: var(--gold-dark);
}

/* ========================================
   FOOTER VISITS
   ======================================== */
.footer-visits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-visits i {
  color: var(--gold-dark);
}

.visits-count {
  font-weight: 600;
  color: var(--gold-dark);
}

@media (max-width: 480px) {
  .live-viewers {
    left: 16px;
    bottom: 20px;
    padding: 0.5rem 0.9rem;
    font-size: 0.74rem;
  }
}