/* ==========================================================================
   NOVA LAUNDRY — Casa de cuidado textil
   Dirección de arte: Tema oscuro editorial de alta gama (Luxury Dark Mode)
   100% Responsivo en Mobile, Tablet y Desktop
   ========================================================================== */

:root {
  /* Paleta cruda */
  --black: #000000;
  --carbon: #0c0908;
  --wood: #72624f;
  --wood-accent: #c4a480;
  --taupe: #9a9588;
  --marble: #c4c5ba;
  --champagne: #f9e7d2;
  --ivory: #fef7e7;
  --green-live: #4ade80;

  /* Tokens semánticos — Tema Oscuro Integral */
  --bg: #0c0908;               /* fondo base carbón oscuro */
  --bg-warm: #14100d;          /* fondo rítmico para alternar secciones */
  --surface: #1a1512;          /* tarjetas y superficies elevadas */
  --surface-hover: #241e19;    /* interacción hover en tarjetas */
  --surface-card: #181310;
  --ink: #e2ddd4;              /* texto principal claro / marfil suave */
  --ink-strong: #fef7e7;       /* titulares de máximo contraste */
  --ink-soft: rgba(226, 221, 212, 0.72); /* texto secundario */
  --accent: #c4a480;           /* bronce/champán: líneas finas, eyebrows, detalles */
  --line: rgba(249, 231, 210, 0.12);
  --line-strong: rgba(249, 231, 210, 0.22);

  /* Tokens oscuros compartidos */
  --d-bg: #000000;
  --d-surface: #14100d;
  --d-line: rgba(249, 231, 210, 0.14);
  --d-ink: #fef7e7;
  --d-soft: rgba(196, 197, 186, 0.75);

  /* Tipografías */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Spline Sans Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.45s var(--ease);

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "ss01";
}

body.menu-locked {
  overflow: hidden !important;
  touch-action: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }

::selection { background: var(--champagne); color: var(--black); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--wood); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   TIPOGRAFÍA COMPARTIDA
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1.8vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(1.85rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  font-optical-sizing: auto;
}
.section-title em {
  font-style: italic;
  font-weight: 420;
  color: var(--champagne);
}

.lead {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 820px; }

.section {
  padding: clamp(64px, 10vw, 130px) 0;
  position: relative;
  background: var(--bg);
}
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--bg); color: var(--d-ink); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5.5vw, 68px);
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .lead { margin-top: 18px; }

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.btn i { font-size: 0.95em; }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; min-height: 38px; }
.btn-block { width: 100%; }

/* Sólido */
.btn-solid {
  background: var(--champagne);
  color: var(--carbon);
}
.btn-solid:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(249, 231, 210, 0.3);
}

/* Fantasma */
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink-strong);
}
.btn-ghost:hover {
  border-color: var(--champagne);
  background: var(--surface-hover);
  color: var(--champagne);
}

/* Champán */
.btn-champagne {
  background: var(--champagne);
  color: var(--carbon);
}
.btn-champagne:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(249, 231, 210, 0.35);
}

/* Contorno claro */
.btn-outline-light {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ivory);
}
.btn-outline-light:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--carbon);
}

/* ==========================================================================
   HEADER / NAVBAR (Integrado, transparente y compresión al scroll)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 24px var(--gutter);
  transition: padding 0.4s var(--ease);
}

/* Estado al hacer scroll */
.navbar.scrolled {
  background: rgba(10, 8, 7, 0.92);
  border-bottom-color: rgba(249, 231, 210, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}
.navbar.scrolled.mobile-active {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.navbar.scrolled .nav-container {
  padding: 12px var(--gutter);
}

.brand-logo {
  display: flex;
  align-items: center;
  z-index: 92;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease), transform 0.4s var(--ease);
}
.navbar.scrolled .logo-img {
  height: 30px;
}
.brand-logo:hover .logo-img { transform: scale(1.04); }

/* Enlaces Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marble);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--champagne);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--champagne); }
.nav-link:hover::after { width: 100%; }

/* Elementos solo móviles ocultos en desktop */
.mobile-menu-header,
.mobile-menu-actions,
.mobile-menu-footer,
.mobile-only-icon {
  display: none;
}
.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Botón Hamburguesa Animado */
.mobile-toggle {
  display: none;
  background: rgba(26, 21, 18, 0.8);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  z-index: 92;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.mobile-toggle:hover {
  background: var(--surface-hover);
  border-color: var(--champagne);
}
.mobile-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s var(--ease);
  transform-origin: center;
}

/* Hamburguesa convertida en 'X' al activarse */
.mobile-toggle.is-active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.is-active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay de fondo para el Drawer Móvil */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO — SCROLLYTELLING CON VIDEO (Negro Absoluto continuo y sin costuras)
   ========================================================================== */
.video-scroll-section {
  position: relative;
  height: 480vh;
  background: #000000;
}
.video-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.nova-video {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(290px, 64vw, 900px);
  max-height: 56vh;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  background: #000000;
  box-shadow: none;
  z-index: 2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}
.video-gradient-top {
  position: absolute; top: 0; left: 0; width: 100%; height: 160px; z-index: 3;
  background: linear-gradient(180deg, #000000 0%, transparent 100%);
  pointer-events: none;
}
.video-gradient-bottom {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 220px; z-index: 3;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(12, 9, 8, 0.8) 45%, transparent 100%);
  pointer-events: none;
}

/* Eslóganes sincronizados con el scroll */
.scroll-captions-container {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 780px;
  padding: 0 20px;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.scroll-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  will-change: opacity, transform, filter;
}
.slogan-title {
  font-family: var(--serif);
  font-weight: 440;
  font-size: clamp(1.45rem, 3.8vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ivory);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95);
}
.slogan-title em { font-style: italic; color: var(--champagne); }
.slogan-sub {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: var(--marble);
  font-weight: 400;
  margin-top: 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

/* Indicador de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.scroll-indicator-text {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--wood), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -50%; left: 0;
  width: 1px; height: 50%;
  background: var(--champagne);
  animation: scrollTrace 2.2s var(--ease) infinite;
}
@keyframes scrollTrace {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ==========================================================================
   MANIFIESTO + TIRA DE DATOS
   ========================================================================== */
.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.manifesto-statement {
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(1.5rem, 3.5vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.manifesto-statement em { font-style: italic; color: var(--champagne); }
.manifesto-side .eyebrow { margin-bottom: 18px; }
.manifesto-side p { color: var(--ink-soft); font-size: clamp(0.92rem, 1.1vw, 1rem); }

/* Tira de especificaciones */
.spec-strip {
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(26, 21, 18, 0.4);
}
.spec-item {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}
.spec-item:last-child { border-right: none; }
.spec-num {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}
.spec-num span { font-family: var(--mono); font-size: 0.88rem; color: var(--champagne); font-weight: 500; }
.spec-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 10px;
}

/* ==========================================================================
   SERVICIOS — HOJA DE ESPECIFICACIONES
   ========================================================================== */
.section-services {
  background: var(--bg-warm);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.feature-card {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-card);
  position: relative;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.feature-card:hover {
  background: var(--surface-hover);
}
.card-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.card-icon-box {
  margin: 18px 0 20px;
  font-size: 1.45rem;
  color: var(--champagne);
  transition: transform 0.4s var(--ease);
}
.feature-card:hover .card-icon-box { transform: translateY(-3px); }
.card-title {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  margin-bottom: 10px;
}
.card-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   TARIFAS
   ========================================================================== */
.section-pricing {
  background: var(--bg);
}
.pricing-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: clamp(32px, 4.5vw, 48px);
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
}
.pricing-tab-btn {
  padding: 10px 24px;
  min-height: 40px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.pricing-tab-btn.active {
  background: var(--champagne);
  color: var(--carbon);
  font-weight: 600;
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-grid.active { display: grid; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: clamp(28px, 3.5vw, 36px) clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}

/* Tarjeta destacada */
.pricing-card.featured {
  background: linear-gradient(180deg, #241c16 0%, #1a1410 100%);
  border: 1px solid rgba(249, 231, 210, 0.38);
  box-shadow: 0 24px 60px -25px rgba(0, 0, 0, 0.85), 0 0 40px -15px rgba(249, 231, 210, 0.08);
}
.pricing-card.featured:hover {
  border-color: var(--champagne);
}
.pricing-card.featured .pricing-machine,
.pricing-card.featured .price-box .amount,
.pricing-card.featured .price-box .currency { color: var(--ivory); }
.pricing-card.featured .badge-size { color: var(--champagne); }
.pricing-card.featured .price-box .period { color: var(--taupe); }
.pricing-card.featured .pricing-duration { color: var(--champagne); }
.pricing-card.featured .pricing-features { border-top-color: var(--line-strong); }
.pricing-card.featured .pricing-features li { color: var(--ink); }
.pricing-card.featured .pricing-features li i { color: var(--champagne); }

.card-ribbon {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(249, 231, 210, 0.12);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid rgba(249, 231, 210, 0.25);
}
.badge-size {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-machine {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  margin: 12px 0 16px;
}
.price-box { display: flex; align-items: baseline; gap: 4px; }
.price-box .currency { font-family: var(--serif); font-size: 1.4rem; color: var(--champagne); }
.price-box .amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-strong);
  font-variant-numeric: tabular-nums;
}
.price-box .period { font-family: var(--mono); font-size: 0.82rem; color: var(--ink-soft); }
.pricing-duration {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 12px 0 22px;
  display: flex; align-items: center; gap: 8px;
}
.pricing-features {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-features li i { color: var(--champagne); font-size: 0.72rem; margin-top: 5px; }

/* ==========================================================================
   CÓMO FUNCIONA — SECUENCIA NUMERADA
   ========================================================================== */
.section-how {
  background: var(--bg-warm);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.step-card {
  padding: clamp(28px, 3.5vw, 40px) clamp(18px, 2.5vw, 34px) clamp(28px, 3.5vw, 40px) 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-number {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}
.step-icon {
  font-size: 1.45rem;
  color: var(--champagne);
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  margin-bottom: 8px;
}
.step-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* ==========================================================================
   FAQ — ACORDEÓN CON LÍNEAS FINAS
   ========================================================================== */
.section-faq {
  background: var(--bg);
}
.faq-accordion { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-question {
  width: 100%;
  padding: 24px 4px;
  min-height: 52px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  touch-action: manipulation;
  text-align: left;
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--champagne); }
.faq-toggle-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); color: var(--champagne); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 340px; padding: 0 4px 28px; }
.faq-answer p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.7; max-width: 62ch; }

/* ==========================================================================
   UBICACIÓN — BANDA OSCURA
   ========================================================================== */
.section-location {
  background: var(--bg-warm);
}
.section-location .eyebrow { color: var(--champagne); }
.section-location .eyebrow::before { background: var(--champagne); }
.section-location .section-title { color: var(--ivory); }
.section-location .section-title em { color: var(--champagne); }

.location-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
}
.location-desc { color: var(--ink-soft); margin: 18px 0 32px; max-width: 46ch; font-size: 0.96rem; }

.info-items-list { display: flex; flex-direction: column; }
.info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.info-item:last-of-type { border-bottom: 1px solid var(--line); }
.info-icon {
  font-size: 1rem;
  color: var(--champagne);
  padding-top: 3px;
}
.info-heading {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}
.info-detail { font-size: 0.96rem; color: var(--ivory); line-height: 1.5; }
.info-detail strong { color: var(--champagne); font-weight: 600; }

.location-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* Tarjeta visual de ubicación */
.location-visual-card { display: flex; width: 100%; }
.map-placeholder {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(180deg, #181310 0%, #0d0a08 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
  opacity: 0.6;
}
.map-card-content { position: relative; z-index: 2; text-align: center; }
.map-pin-pulse {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--carbon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 0 0 rgba(249, 231, 210, 0.5);
  animation: mapPulse 2.4s var(--ease) infinite;
}
@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 231, 210, 0.55); }
  70% { box-shadow: 0 0 0 20px rgba(249, 231, 210, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 231, 210, 0); }
}
.map-logo-preview { height: 40px; margin: 0 auto 14px; }
.map-place-title {
  font-family: var(--serif);
  font-weight: 480;
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 4px;
}
.map-place-subtitle {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}
.rating-stars {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; color: var(--champagne); font-size: 0.8rem;
}
.rating-stars span {
  margin-left: 8px; color: var(--marble);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em;
}

/* ==========================================================================
   FOOTER BIEN ESTRUCTURADO (4 Columnas + Barra de estado + Enlaces legales)
   ========================================================================== */
.footer {
  background: #000000;
  color: var(--d-soft);
  padding: clamp(56px, 7vw, 90px) 0 0;
  border-top: 1px solid var(--line);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr 1.15fr;
  gap: clamp(28px, 3.8vw, 54px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link { display: inline-block; margin-bottom: 18px; }
.footer-logo { height: 42px; width: auto; object-fit: contain; }
.footer-tagline {
  color: var(--taupe);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 20px;
}

/* Tarjeta de estado en vivo */
.footer-status-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 21, 18, 0.75);
  border: 1px solid rgba(249, 231, 210, 0.16);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 22px;
  width: fit-content;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-live);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.footer-status-text { display: flex; flex-direction: column; font-size: 0.78rem; line-height: 1.35; }
.footer-status-text strong { color: var(--ivory); font-weight: 600; }
.footer-status-text span { color: var(--taupe); font-family: var(--mono); font-size: 0.7rem; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--marble);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all 0.35s var(--ease);
}
.social-links a:hover {
  background: var(--champagne);
  color: var(--carbon);
  border-color: var(--champagne);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group ul li a {
  color: var(--marble);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-links-group ul li a i { font-size: 0.7rem; color: var(--wood-accent); transition: transform 0.25s var(--ease); }
.footer-links-group ul li a:hover { color: var(--champagne); transform: translateX(3px); }
.footer-links-group ul li a:hover i { color: var(--champagne); transform: translateX(2px); }

/* Lista de contacto estructurada */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--marble);
  font-size: 0.88rem;
  line-height: 1.45;
}
.footer-contact-list li i {
  color: var(--champagne);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-lbl { display: block; font-family: var(--mono); font-size: 0.66rem; color: var(--taupe); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1px; }
.contact-val { color: var(--ivory); font-size: 0.88rem; }
.contact-link { color: var(--champagne); transition: color 0.25s var(--ease); }
.contact-link:hover { color: var(--ivory); text-decoration: underline; }

/* Barra inferior de footer */
.footer-bottom { border-top: 1px solid rgba(249, 231, 210, 0.08); padding: 22px 0; }
.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--taupe);
  gap: 14px;
}
.footer-legal-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-links a { color: var(--taupe); transition: color 0.25s var(--ease); }
.footer-legal-links a:hover { color: var(--champagne); }
.legal-sep { color: var(--wood); }

/* ==========================================================================
   RESPONSIVIDAD Y COMPORTAMIENTO MÓVIL (Media Queries)
   ========================================================================== */

/* Tablets y pantallas intermedias */
@media (max-width: 980px) {
  .nav-desktop-btn { display: none; }
  .mobile-toggle { display: flex; }

  /* Menú lateral Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: #14100d;
    border-left: 1px solid rgba(249, 231, 210, 0.18);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    gap: 0;
  }
  .nav-links.mobile-open {
    transform: translateX(0);
  }

  /* Cabecera del Drawer */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
  }
  .mobile-menu-logo { height: 32px; width: auto; }
  .mobile-close-btn {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ivory);
    width: 36px; height: 36px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .mobile-close-btn:hover { background: var(--surface-hover); border-color: var(--champagne); }

  /* Enlaces dentro del Drawer */
  .nav-links-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    margin-bottom: 24px;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 13px 14px;
    border-radius: 4px;
    background: rgba(26, 21, 18, 0.5);
    border: 1px solid rgba(249, 231, 210, 0.06);
    color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link:active {
    background: var(--surface-hover);
    border-color: rgba(249, 231, 210, 0.24);
    color: var(--champagne);
    transform: translateX(4px);
  }
  .mobile-only-icon {
    display: inline-block;
    color: var(--champagne);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
  }

  /* Acciones y pie del Drawer */
  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .mobile-cta-btn { min-height: 46px; font-size: 0.9rem; }

  .mobile-menu-footer {
    display: block;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .status-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--marble);
  }

  /* Grids en Tablet */
  .manifesto-grid { grid-template-columns: 1fr; align-items: start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2) { border-right: none; }
  .step-card { border-bottom: 1px solid var(--line); }
  .step-card:nth-last-child(-n+2) { border-bottom: none; }
  .location-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-item:nth-child(2n) { border-right: none; }
  .spec-item { border-bottom: 1px solid var(--line); }
  .spec-item:nth-last-child(-n+1) { border-bottom: none; }
}

/* Teléfonos Móviles (< 640px) */
@media (max-width: 640px) {
  .nav-container { padding: 16px var(--gutter); }
  .navbar.scrolled .nav-container { padding: 10px var(--gutter); }
  .logo-img { height: 36px; }
  .navbar.scrolled .logo-img { height: 28px; }

  .services-grid { grid-template-columns: 1fr; border-left: none; border-top: none; }
  .feature-card {
    border-right: none;
    border-left: none;
    border-top: 1px solid var(--line-strong);
    padding: 24px 16px;
  }

  .steps-container { grid-template-columns: 1fr; }
  .step-card { border-right: none; padding-right: 0; padding: 26px 0; }
  .step-card:nth-child(2) { border-right: none; }

  .footer-content { grid-template-columns: 1fr; gap: 34px; }
  .footer-tagline { max-width: 100%; }

  .spec-strip { grid-template-columns: 1fr; }
  .spec-item { border-right: none; padding: 18px 0; }

  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }

  .bottom-flex {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal-links { justify-content: center; }

  .nova-video {
    width: 92vw;
    max-height: 44vh;
  }
  .scroll-captions-container {
    top: 76%;
  }

  .pricing-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .pricing-tab-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.74rem;
  }
}

/* Móviles muy compactos (< 380px) */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .logo-img { height: 32px; }
  .section-title { font-size: 1.7rem; }
  .manifesto-statement { font-size: 1.38rem; }
  .price-box .amount { font-size: 2.5rem; }
  .nav-links { width: 92vw; padding: 20px 16px; }
}

/* ==========================================================================
   MOVIMIENTO REDUCIDO
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
