/* 
   QUIERO KEBAB — MICHELIN-STAR STREETWEAR
   Identity: Unorthodox, Asymmetrical, High-End Brutalism
   Dependency: global.css structure + new premium assets
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Montserrat:wght@400;500&display=swap');

:root {
  --nav-h: 90px;
  --p-safe: clamp(1.5rem, 5vw, 4rem);
  --max-w: 1600px;

  /* The New Palette */
  --bg-void: #030303;
  --bg-surface: #0a0a0a;
  --bg-elevated: #111111;
  --text-pure: #ffffff;
  --text-muted: #666666;
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-harsh: 2px solid #333333;

  /* Typos */
  --font-serif: 'Cinzel', serif;

  /* Brand */
  --brand-orange: #FF9900;
}

/* ==========================================================================
   1. RESET & SAFETY LOCKS
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

/* ── Premium Scrollbar (WebKit) ── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 26, 26, 0.35);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-orange, #FF9900);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

html,
body {
  background: var(--bg-void);
  color: var(--text-pure);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

::selection {
  background: var(--primary);
  color: var(--bg-void);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* The Line Grid Background (Subtle Architecture) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   1b. LIQUID GLASS (Utility Panel)
   Fallback first → backdrop-filter when supported
   ========================================================================== */
.liquid-glass {
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .liquid-glass {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
  }
}

@media (hover: hover) and (pointer: fine) {
  .liquid-glass:hover {
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
  }
}

/* Header should not "float" on hover (keeps UX stable) */
#main-nav.liquid-glass:hover {
  transform: none;
}

/* ==========================================================================
   2. REVEAL MATRICES & UTILS
   ========================================================================== */
.reveal-on-scroll,
.reveal-item,
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.is-visible,
.reveal-item.is-visible,
[data-reveal].is-visible,
.reveal-item.revealed,
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   2b. FOOTER REVEAL ("BAJO EL SUELO")
   Estructura: contenido encima + footer fijo debajo
   ========================================================================== */
.content-wrapper {
  position: relative;
  z-index: 1;
  background: var(--bg-void);
  margin-bottom: var(--footer-h, 0px);
}

footer.footer-reveal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ==========================================================================
   3. SITE LOADER
   ========================================================================== */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#site-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  height: 70px;
  margin-bottom: 2rem;
  animation: pulseLogo 3s infinite alternate;
}

@keyframes pulseLogo {
  0% {
    opacity: 0.3;
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    filter: drop-shadow(0 0 10px var(--primary));
  }
}

/* ==========================================================================
   4. PREMIUM DARK GLASSMORPHISM NAVBAR
   ========================================================================== */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  justify-content: center;
  background-color: rgba(10, 10, 10, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background-color 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.28s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.28s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Liquid-glass overrides for the floating header */
.nav-glass.liquid-glass {
  background-color: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-glass.liquid-glass {
    background-color: rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
  }
}

.nav-glass.is-scrolled {
  background-color: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  height: calc(var(--nav-h) - 18px);
}

.nav-glass.liquid-glass.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-glass.liquid-glass.is-scrolled {
    background-color: rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
  }
}

.nav-glass .nav-inner {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 var(--p-safe);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

/* ZONA 1: Izquierda (Estado Minimalista) */
.nav-status-minimal {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Slightly closer */
  cursor: pointer;
}

.nav-status-dot-minimal {
  width: 6px;
  height: 6px;
  background-color: #FF3333;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 51, 51, 0.6);
  transition: background-color 0.3s, box-shadow 0.3s;
}

[data-shop="open"] .nav-status-dot-minimal {
  background-color: #00E676;
  /* Vibrant Green */
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
}

.nav-status-text-minimal {
  color: rgba(255, 255, 255, 0.8);
  /* Semi-transparent white */
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ZONA 2: Centro (Logo) */
.nav-logo-box-glass {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  height: 65px;
  transition: filter 0.3s, opacity 0.3s;
  opacity: 0.95;
}

.nav-glass.is-scrolled .nav-logo-img {
  height: 52px;
}

.nav-logo-box-glass:hover .nav-logo-img {
  filter: drop-shadow(0 0 15px var(--primary));
  opacity: 1;
}

/* ZONA 3: Derecha (Iconos) */
.nav-right-cluster-glass {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
  opacity: 0.85;
}

.nav-icon-btn svg {
  width: 24px;
  height: 24px;
}

.nav-icon-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ── Branded MENÚ button (replaces generic hamburger) ── */
.nav-menu-btn {
  flex-direction: row;
  gap: 10px;
  padding: 6px 0;
  opacity: 1;
  position: relative;
}

.menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  width: 20px;
}

.menu-line {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1),
              background 0.2s ease,
              transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.2s ease;
  transform-origin: left center;
}

.menu-line--long  { width: 20px; }
.menu-line--short { width: 12px; }

.menu-btn-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
}

/* Hover state */
.nav-menu-btn:hover .menu-line {
  background: var(--primary);
}
.nav-menu-btn:hover .menu-line--short {
  width: 20px;
}
.nav-menu-btn:hover .menu-btn-label {
  color: var(--primary);
  letter-spacing: 0.2em;
}

/* Open / active state (JS adds .is-open to #hamburger) */
#hamburger.is-open .menu-line--long {
  transform: rotate(45deg) translateY(4.5px);
  background: var(--primary);
}
#hamburger.is-open .menu-line--short {
  transform: rotate(-45deg) translateY(-4.5px);
  width: 20px;
  background: var(--primary);
}
#hamburger.is-open .menu-btn-label {
  color: var(--primary);
  letter-spacing: 0.25em;
}

@media (max-width: 768px) {

  .nav-logo-img {
    height: 45px;
    /* Smaller logo on mobile */
  }

  .nav-glass.is-scrolled .nav-logo-img {
    height: 38px;
  }

  .menu-btn-label {
    display: none;
  }
}


/* ==========================================================================
   5. UNORTHODOX HERO (ASYMMETRICAL LAYOUT)
   ========================================================================== */
.hero-avant {
  width: 100%;
  min-height: 0;
  padding-top: calc(var(--nav-h) + 2rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background Atmospheric Gradient */
.hero-avant::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 106, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  width: 100%;
  max-width: var(--max-w);
  padding: 1rem var(--p-safe) 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.hero-avant--minimal .hero-grid {
  max-width: 960px;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Typography Overhaul */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-avant--minimal .hero-content {
  width: 100%;
  max-width: 860px;
  align-items: flex-start;
  text-align: left;
}

.hero-avant--minimal .avant-desc {
  max-width: 56ch;
  margin-left: 0;
  margin-right: auto;
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
}

.hero-avant--minimal .hero-stats {
  max-width: 600px;
  justify-content: flex-start;
}

/* ── POSTER TYPOGRAPHY HERO BLOCK ── */
.poster-hero-block {
  position: relative;
  width: 100%;
  padding: 3rem 0 1rem;
  /* Align left cleanly without lateral padding disrupting the grid */
  background-color: #0A0A0A;
  /* Deep black background */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

/* 1. Pre-title: subtle and elegant */
.poster-pretitle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  /* Using body font for simple small text or keeping a clean sans */
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  /* approx 12px */
  font-weight: 600;
  color: #FF9900;
  letter-spacing: 3px;
  /* 3px approx */
  text-transform: uppercase;
  margin-bottom: 2rem;
  /* Margin bottom to separate from title */
  padding-bottom: 0.5rem;
  /* Space for the border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle separator line */
  opacity: 0.95;
  width: 100%;
  max-width: max-content;
}

.poster-pretitle-dot {
  font-size: 0.6em;
  color: #FF9900;
  flex-shrink: 0;
}

/* Main typography stack */
.poster-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 2rem 0;
  line-height: 0.85;
  /* Extremely tight line height */
}

/* 2. Line 1: 'EL' */
.poster-line-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: -2px;
  /* Optical alignment */
  line-height: 0.85;
  /* Extremely tight line height */
}

/* 3. Line 2: 'KEBAB,' */
.poster-line-2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  /* Slightly smaller than the rest */
  font-weight: 400;
  /* Playfair standard weight for elegance */
  color: #A0A0A0;
  /* Light grey/silver */
  text-transform: uppercase;
  margin-top: -0.1em;
  line-height: 0.85;
  /* Extremely tight line height */
}

/* 4. Line 3: 'QUE NUNCA' */
.poster-line-3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: -2px;
  /* Optical alignment */
  margin-top: -0.05em;
  line-height: 0.85;
  /* Extremely tight line height */
}

/* 5. Line 4: 'FALLA' */
.poster-line-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: #FF9900;
  /* Vibrant Orange */
  text-transform: uppercase;
  margin-left: -2px;
  /* Optical alignment */
  margin-top: -0.05em;
  line-height: 0.85;
  /* Extremely tight line height */
  /* 3D Block / Relief Effect */
  text-shadow:
    4px 4px 0px #000000,
    5px 5px 0px rgba(0, 0, 0, 0.8),
    6px 6px 15px rgba(255, 153, 0, 0.4);
}

.avant-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #aaaaaa;
  max-width: 45ch;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
}


.kicker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.avant-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  line-height: 0.9;
  position: relative;
}

/* ── LINE 1: EL — Massive wide block letter ── */
.line-1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 3px;
}

/* ── LINE 2: KEBAB, — elegant italic serif, slightly smaller than EL ── */
.line-2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 600;
  color: #e5e5e5;
  /* Lighter silver for better visibility */
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.9;
  margin-left: -2px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  /* Stronger shadow to pop against the dark bg */
}

/* ── LINE 3: QUE NUNCA — overlapping solid white sans ── */
.line-3 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 0.85;
  margin-top: -1.2rem;
  /* Pull up to overlap KEBAB */
  margin-left: 1rem;
  /* Push slightly to the right */
  position: relative;
  z-index: 4;
  /* Above line 2 */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  /* Strong shadow to pop over KEBAB */
}

.avant-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #aaaaaa;
  max-width: 45ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
}

/* ── HYBRID BRUTALIST SPLIT-BLOCK ── */
.hybrid-split-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 72px;
  margin-bottom: 3.5rem;
  border-radius: 50px !important;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hybrid-split-block:hover {
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(255, 153, 0, 0.1);
}

.hero-cta-shell {
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 20;
  --hero-cta-bottom-offset: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  --hero-cta-overlay-offset: 0px;
  opacity: 1;
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.hero-cta-shell.btn-landing--hero {
  position: relative;
  left: auto;
  bottom: auto;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* Sentinel */
.sticky-sentinel {
  position: absolute;
  top: -1px;
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}

/* Wrapper to maintain height when CTA becomes fixed */
.btn-hero-wrapper {
  width: 100%;
  min-height: 105px;
  /* height of CTA block */
  display: flex;
  justify-content: center;
}

/* New fixed sticky logic for mobile */
.premium-stacked-cta.is-fixed {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 20px) + 20px);
  width: min(560px, calc(100vw - 32px));
  z-index: 1000;
  transform: translateX(-50%);
  /* Visible */
  animation: heroCtaSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.premium-stacked-cta.is-fixed .btn-stacked-white {
  margin-bottom: 0;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.premium-stacked-cta.is-fixed .wait-info-stacked {
  display: none !important;
}

@keyframes heroCtaSlideUp {
  0% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* ── PREMIUM STACKED CTA LAYOUT ── */
.premium-stacked-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center everything */
  gap: 10px;
  /* Reduced gap for compact feel */
  width: 100%;
  max-width: 280px;
  /* Keep the button compact and sharp */
  margin: 0 auto;
}

/* ── ACTION BUTTON (MATTE WHITE) ── */
.btn-stacked-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  background-color: #ffffff;
  color: #050505;
  border-radius: 4px;
  /* Clean rectangular shape with slight softening */
  padding: 1rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease, background-color 0.2s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn-stacked-white:hover {
  background-color: #f8f8f8;
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.btn-stacked-white:active {
  background-color: #f0f0f0;
  transform: translateY(0) scale(0.98);
}

/* Text Grouping */
.stacked-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.btn-label-top {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333;
  /* Slightly softer black for hierarchy */
}

.btn-label-bottom {
  font-size: 1.4rem;
  font-weight: 900;
  /* Bolder as requested */
  color: #000000;
  text-transform: uppercase;
  margin-top: -2px;
}

/* Arrow Icon */
.btn-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #000000;
}

.btn-icon-arrow svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.btn-stacked-white:hover .btn-icon-arrow svg {
  transform: translateX(4px);
}

/* ── BOTTOM PART: INFO STACKED ── */
.wait-info-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}

.wait-info-stacked.hidden {
  display: none !important;
}

.icon-flame-clean {
  width: 22px;
  height: 22px;
  color: var(--brand-orange);
  animation: cleanFlamePulse 2.5s ease-in-out infinite;
}

.icon-flame-clean svg {
  width: 100%;
  height: 100%;
}

.wait-minutes-stacked {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-orange);
  letter-spacing: 0.5px;
}

@keyframes cleanFlamePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* ── MINIMALIST PREMIUM BUTTON ── */
.btn-minimalist {
  background: transparent;
  color: var(--brand-orange);
  font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brand-orange);
  border-radius: 50px !important;
  padding: 0 3rem;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.btn-minimalist::before {
  content: none;
}

.btn-minimalist::after {
  content: none;
}

.btn-minimalist:hover {
  background-color: rgba(255, 153, 0, 0.05);
  /* Extra border ring via box-shadow — no layout shift */
  box-shadow: 0 0 0 1px var(--brand-orange);
  transform: translateY(-2px);
}

.btn-minimalist:active {
  background-color: rgba(255, 153, 0, 0.09);
  transform: translateY(0) scale(0.98);
  transition: transform 0.08s ease;
}

.btn-label {
  line-height: 1;
  font-size: inherit;
  letter-spacing: inherit;
}

.split-cta:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

@keyframes btnHeroSheen {
  0% {
    transform: translateX(0%) skewX(-20deg);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  36% {
    transform: translateX(500%) skewX(-20deg);
    opacity: 0;
  }

  100% {
    transform: translateX(500%) skewX(-20deg);
    opacity: 0;
  }
}

.hidden-js-safe {
  display: none !important;
}

/* ── HIGH-END PERFORMANCE ANIMATIONS ── */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  will-change: transform, opacity;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.04);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.slow-zoom {
  animation: slowZoom 1.5s ease-out forwards;
  will-change: transform, opacity;
}

/* The Floating Visual Aspect */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.draggable-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  animation: float 8s ease-in-out infinite;
  z-index: 50;
  will-change: transform;
}

.draggable-wrapper.interacted {
  animation: none !important;
  /* Detiene levitación al tocar */
}

.draggable-sticker {
  cursor: grab;
  touch-action: none;
  position: relative;
  display: inline-block;
  /* Animamos solo escala y filtro nativos, el arrastre de transform queda 100% libre y fluido */
  transition: scale 0.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.2s ease;
  will-change: transform, scale;
}

.draggable-sticker.dragging {
  cursor: grabbing;
  scale: 1.06;
  filter: drop-shadow(0 30px 40px rgba(255, 106, 0, 0.2));
  z-index: 999 !important;
}

.duo-burger {
  flex: 0 0 50%;
  margin-right: -10%;
  scale: 0.9;
  z-index: 1;
}

.duo-kebab {
  flex: 0 0 65%;
  scale: 1.05;
  z-index: 2;
}

.draggable-sticker img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.8));
  transition: filter 0.4s ease;
  pointer-events: none;
  /* Previene el ghost drag nativo del navegador */
}

/* ── BRUTALIST FLOATING BADGES ── */
.brutalist-tag {
  position: absolute;
  top: 5%;
  right: 5%;
  background: #000;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  z-index: 2;
  letter-spacing: 1px;
}

.quality-badge {
  position: absolute;
  bottom: 10%;
  left: 5%;
  background: #FFF;
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Technical Decoration */
.tech-decor {
  position: absolute;
  right: -20px;
  top: 20%;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  transform: rotate(90deg);
  transform-origin: right center;
  letter-spacing: 4px;
  opacity: 0.5;
}


/* ==========================================================================
   6. THE MARQUEE (SLEEK LINEAR TAPE)
   ========================================================================== */
.marquee-wrapper {
  background: var(--primary);
  color: #000;
  width: 100%;
  overflow: hidden;
  padding: 0.8rem 0;
  display: flex;
  position: relative;
  z-index: 20;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 20s linear infinite;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-content .star {
  font-size: 0.8rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   7. STAGGERED ARCHITECTURE (ADVANTAGES)
   ========================================================================== */
.arch-sec {
  padding: 10rem 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 var(--p-safe);
  margin: 0 auto;
}

.arch-header {
  margin-bottom: 6rem;
  max-width: 800px;
}

.arch-sub {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.arch-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.arch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .arch-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .arch-grid> :nth-child(2) {
    margin-top: 4rem;
  }

  .arch-grid> :nth-child(3) {
    margin-top: -2rem;
  }
}

.arch-card {
  background: var(--bg-surface);
  border: 1px solid #1a1a1a;
  padding: 3rem;
  position: relative;
  transition: 0.4s ease;
}

.arch-card:hover {
  background: var(--bg-elevated);
  border-color: #333;
  transform: translateY(-10px);
}

.arch-num {
  position: absolute;
  top: -1rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: #111;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
  transition: color 0.4s;
}

.arch-card:hover .arch-num {
  color: var(--primary);
  opacity: 0.2;
}

.arch-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  letter-spacing: 1px;
}

.arch-card-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 10;
}


/* ==========================================================================
   8. LUXURY REVIEWS (BRUTALIST TICKET STYLE)
   ========================================================================== */
.crit-sec {
  padding: 8rem 0;
  background: var(--bg-void);
  border-top: var(--border-harsh);
  border-bottom: var(--border-harsh);
  overflow: hidden;
}

/* Brutalist Reviews Grid */
.brutalist-reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  /* Mobile scrollbar buffer */
  width: 100%;
}

.brutalist-reviews-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .brutalist-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
    gap: 2rem;
  }
}

/* Card Styling - The Brutalist Receipt */
.brutalist-reviews-grid .review-card {
  flex: 0 0 85vw;
  /* Mobile swipe */
  scroll-snap-align: start;
  background: #000000;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 0 !important;
  padding: 3.5rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  min-height: 380px;
}

.brutalist-reviews-grid .review-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  z-index: 5;
}

/* Giant Quote Mark */
.brutalist-reviews-grid .review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

.brutalist-reviews-grid .review-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.brutalist-reviews-grid .review-avatar,
.brutalist-reviews-grid .review-g-icon,
.brutalist-reviews-grid .review-date {
  display: none !important;
}

.brutalist-reviews-grid .review-author {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.brutalist-reviews-grid .review-stars {
  display: flex;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 1.3rem;
}

.brutalist-reviews-grid .review-quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  font-style: italic;
  margin: 0;
}

#reviews-dots {
  display: none !important;
}

/* ==========================================================================
   9. MAIN FOOTER — LIGHT THEME
   ========================================================================== */
.main-footer {
  background: var(--bg-card, #0A0A0A);
  border-top: 1px solid var(--border-light, rgba(255, 255, 255, 0.06));
  padding: 60px 20px 20px;
  margin-top: auto;
  margin-bottom: 0;
  color: var(--text-main, #ffffff);
}

.footer-light-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-light-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
}

.footer-light-logo {
  width: auto;
  height: auto;
  max-width: 170px;
  opacity: 0.95;
}

.footer-light-tagline {
  margin: 12px 0 0;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.92rem;
  color: var(--text-muted, #888888);
  line-height: 1.5;
  max-width: 34ch;
}

.footer-light-title {
  margin: 0 0 14px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FF9900;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-light-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.footer-light-link i {
  width: 18px;
  min-width: 18px;
  text-align: center;
  color: inherit;
  opacity: 0.9;
}

.footer-light-link:hover {
  color: var(--primary, #FF6A00);
}

.footer-light-bottom {
  margin-top: 44px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-light-copy {
  margin: 0;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-light-credits {
  margin: 0;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .main-footer {
    padding: 46px 20px 18px;
  }

  .footer-light-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-light-bottom {
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   10. AUTH MODAL — NOIR GLASS (Matches Menu)
   ========================================================================== */
.modal-backdrop-glass {
  /* Local vars keep the noir modal isolated from the landing system */
  --surface-2: var(--bg-elevated, #111111);
  --border: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 140, 0, 0.30);
  --accent: var(--primary-hover, var(--brand-orange, var(--primary)));
  --text-primary: var(--text-pure, #ffffff);
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.45);
  --radius-md: 12px;
  --radius-xl: 20px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.60);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 20px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.glass-card-center {
  width: 100%;
  max-width: 400px;
  background: rgba(10, 10, 10, 0.90) !important;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: var(--radius-xl) !important;
  padding: 32px 24px;
  position: relative;
  animation: cardFadeIn 0.28s ease both;
  max-height: 92dvh;
  overflow-y: auto;
  will-change: transform, opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.btn-close-glass {
  width: 32px;
  height: 32px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid #333333;
  transition: color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.btn-close-glass:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-close-glass.absolute {
  position: absolute;
  top: 14px;
  right: 14px;
}

/* Auth modal */
.auth-brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 50% !important;
  background: var(--surface-2);
  border: 2px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
}

.auth-heading {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.auth-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.btn-google-noir {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-md) !important;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition);
  margin-bottom: 14px;
}

.btn-google-noir:hover {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 14px 0;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--border);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

/* Inputs */
.input-field-wrap {
  position: relative;
  margin-bottom: 10px;
}

.input-noir {
  width: 100%;
  height: 46px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md) !important;
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 400;
  padding: 0 14px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.input-noir::placeholder {
  color: var(--text-dim);
}

.input-noir:focus {
  outline: none;
  border-color: var(--border-glow);
}

.btn-noir-outline {
  width: calc(100% - 24px);
  max-width: 340px;
  height: 40px;
  border-radius: var(--radius-md) !important;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition);
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-transform: uppercase;
}

.btn-noir-outline:hover {
  background: var(--accent);
  color: #000;
}

.btn-link-noir {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 6px;
  transition: color var(--transition);
  background: transparent;
}

.btn-link-noir:hover {
  color: var(--text-primary);
}

.btn-link-noir strong {
  color: var(--accent);
  font-weight: 600;
}

/* Profile view */
.profile-circle {
  width: 64px;
  height: 64px;
  border-radius: 50% !important;
  background: var(--accent);
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  text-transform: uppercase;
}

.profile-display-name {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
}

/* Centra el email del perfil */
#auth-view-profile .text-dim {
  text-align: center !important;
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.btn-link-danger {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity var(--transition);
  background: transparent;
}

.btn-link-danger:hover {
  opacity: 0.75;
}

/* Auth views */
#auth-view-login.hidden,
#auth-view-profile.hidden {
  display: none;
}

/* iOS Sheet Immune */
.ios-sheet {
  display: none;
}

/* ==========================================================================
   11. REDESIGN ADDITIONS — Complete Feature Set
   ========================================================================== */

/* ── Loader ─────────────────────────────────────────────── */
.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.loader-bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--primary);
  animation: loaderSlide 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes loaderSlide {
  to {
    right: 0;
  }
}

/* ── Hamburger & Drawer ─────────────────────────────────── */
.nav-right-cluster {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: 0.3s;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-pure);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop — more dramatic blur + vignette */
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(10px) saturate(0.6);
  backdrop-filter: blur(10px) saturate(0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

/* Glass panel */
.drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);

  /* Liquid Glass */
  background: rgba(8, 8, 8, 0.55);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
  border-left: 1px solid rgba(255, 255, 255, 0.07);

  /* Subtle inner highlight on the left edge */
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04),
              -20px 0 60px rgba(0, 0, 0, 0.6);

  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-drawer.is-open .drawer-inner {
  transform: translateX(0);
}

/* Close button — glass pill */
.drawer-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50% !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 2.5rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s ease;
}

.drawer-close:hover {
  background: rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.4);
  color: var(--primary);
  transform: rotate(90deg);
}

/* Nav list */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* Each link — glass card with orange hover glow */
.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 1rem 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px !important;
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease, background 0.25s ease;
  /* Remove the em-dash prefix from HTML and use ::before */
}

/* Orange radial glow — hidden by default */
.drawer-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(255, 140, 0, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px !important;
}

/* Left accent bar */
.drawer-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 2px;
  background: var(--primary);
  border-radius: 2px !important;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.drawer-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
}

.drawer-link:hover::before {
  opacity: 1;
}

.drawer-link:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.drawer-link:first-child {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-social {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 6px 4px;
  transition: color 0.2s;
}

.drawer-social:hover {
  color: var(--primary);
}

.drawer-social i {
  font-size: 1rem;
}

.drawer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.12);
  font-style: italic;
  margin: 0;
  padding: 4px 0;
}

/* ── Hero Background Decorations ───────────────────────── */
.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hbd-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hbd-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.07) 0%, transparent 65%);
  animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.6;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hbd-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  transform-origin: center;
}

.hbd-line--1 {
  width: 200%;
  height: 1px;
  top: 30%;
  left: -50%;
  transform: rotate(-8deg);
}

.hbd-line--2 {
  width: 200%;
  height: 1px;
  top: 70%;
  left: -50%;
  transform: rotate(5deg);
}

.hbd-circle {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: slowRotate 40s linear infinite;
}

.hbd-circle::after {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 106, 0, 0.04);
  border-radius: 50%;
  animation: slowRotate 25s linear infinite reverse;
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg);
  }
}

/* ── Kicker ─────────────────────────────────────────────── */
.avant-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.kicker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  flex-shrink: 0;
  animation: neon-flicker 2s infinite;
}

/* ── Hero Tagline ───────────────────────────────────────── */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2.5rem;
}

.tl-sep {
  color: rgba(255, 106, 0, 0.4);
  font-size: 0.6rem;
}

/* ── CTA arrow & microcopy ──────────────────────────────── */
.cta-arrow {
  font-size: 0.9rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.split-cta:hover .cta-arrow {
  transform: translateX(3px);
  opacity: 0.92;
}

.cta-microcopy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  text-align: center;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero Stats ─────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  max-width: 450px;
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hstat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-pure);
  line-height: 1;
}

.hstat-unit {
  font-size: 0.65em;
  color: var(--primary);
  margin-left: 1px;
}

.hstat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}

.hstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ── Drag hint ──────────────────────────────────────────── */
.drag-hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.drag-hint i {
  font-size: 0.85rem;
}

/* ── Hero grid: line-4 ──────────────────────────────────── */
/* ── LINE 4: FALLA — glowing dramatic orange ── */
.line-4 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 13vw, 11.5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 153, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.85;
  margin-top: 0;
  margin-left: 5%;
  position: relative;
  z-index: 1;
  /* Dramatic inner and outer glow */
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 100, 0, 0.25));
}

.line-4::after {
  content: 'FALLA';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 153, 0, 0.05);
  /* very subtle fill */
  z-index: -1;
}

/* ── Advantages cards: icon and line ───────────────────── */
.arch-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 106, 0, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: background 0.4s, border-color 0.4s;
}

.arch-card:hover .arch-card-icon {
  background: rgba(255, 106, 0, 0.12);
  border-color: var(--primary);
}

.arch-card-line {
  margin-top: 2rem;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.arch-card:hover .arch-card-line {
  width: 40px;
}

/* Staggered card offsets on desktop */
@media (min-width: 1024px) {
  .arch-grid> :nth-child(2) {
    margin-top: 4rem;
  }

  .arch-grid> :nth-child(3) {
    margin-top: 8rem;
  }
}

/* ── CTA Final Section ──────────────────────────────────── */
.cta-final-sec {
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.cta-final-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10rem var(--p-safe);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.cta-final-deco {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 106, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final-deco::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 106, 0, 0.04);
  border-radius: 50%;
}

.cta-final-sub {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  font-style: italic;
  margin: 0;
}

.cta-final-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-pure);
  margin: 0;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--primary);
  color: #000;
  padding: 1.3rem 3rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-final-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.cta-final-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(255, 255, 255, 0.12);
}

.cta-final-btn:hover::before {
  transform: translateX(0);
}

.cta-final-btn:hover span,
.cta-final-btn:hover i {
  position: relative;
  z-index: 1;
}

.cta-final-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.08);
}

.cta-final-btn i {
  transition: transform 0.25s ease;
}

.cta-final-btn:hover i {
  transform: translateX(5px);
}

.cta-final-note {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

/* ── Split-CTA arrow ──────────────────────────────────────*/
.split-cta {
  gap: 12px;
}

/* ── Scroll shake on button click ──────────────────────── */
@keyframes ctaShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-4px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

/* ── Review card improvement ────────────────────────────── */
.brutalist-reviews-grid .review-card {
  cursor: default;
}

.brutalist-reviews-grid .review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.brutalist-reviews-grid .review-card:hover::after {
  width: 100%;
}

/* ── Responsive additions ───────────────────────────────── */

/* ── Migrated inline styles ─────────────────────────────── */
#sticky-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}
#kebab-progress-fill { width: 60%; }
.crit-sec .arch-header { margin-bottom: 3rem; }
.crit-sec .arch-title { color: #fff; }
#auth-view-profile .btn-submit { margin-bottom: 1rem; }
@media (max-width: 768px) {
  .hero-stats {
    max-width: 100%;
  }

  .hstat-label {
    font-size: 0.6rem;
  }

  .drag-hint {
    display: none;
  }

  .cta-final-inner {
    padding: 6rem var(--p-safe);
  }

  .cta-final-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .cta-final-deco {
    display: none;
  }

  .hero-tagline {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 0;
  }

  .hstat-num {
    font-size: 1.3rem;
  }

  .cta-microcopy {
    display: block;
    font-size: 0.72rem;
    margin-top: 0.65rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
  }
}

/* ==========================================================================
   12. NEW FEATURE ENHANCEMENTS
   ========================================================================== */

/* ── Logo Glitch On Hover ───────────────────────────────── */
.nav-logo-img.logo-glitch {
  animation: logoGlitch 0.6s steps(2, end);
}

@keyframes logoGlitch {
  0% {
    filter: drop-shadow(3px 0 0 rgba(255, 0, 60, 0.8)) drop-shadow(-3px 0 0 rgba(0, 200, 255, 0.8));
    transform: translateX(0);
  }

  15% {
    filter: drop-shadow(-4px 0 0 rgba(255, 0, 60, 0.8)) drop-shadow(4px 0 0 rgba(0, 200, 255, 0.8));
    transform: translateX(3px);
  }

  30% {
    filter: drop-shadow(2px 0 0 rgba(255, 106, 0, 0.8));
    transform: translateX(-2px);
  }

  45% {
    filter: drop-shadow(-3px 0 0 rgba(255, 0, 60, 0.9)) drop-shadow(3px 0 0 rgba(0, 200, 255, 0.9));
    transform: translateX(4px);
  }

  60% {
    filter: drop-shadow(1px 0 0 rgba(255, 106, 0, 0.6));
    transform: translateX(-1px);
  }

  75% {
    filter: drop-shadow(-2px 0 0 rgba(255, 0, 60, 0.5)) drop-shadow(2px 0 0 rgba(0, 200, 255, 0.5));
    transform: translateX(2px);
  }

  100% {
    filter: drop-shadow(0 0 15px var(--primary));
    transform: translateX(0);
  }
}

/* ── Icon Animations ────────────────────────────────────── */
.icon-pulse-fire {
  animation: firePulse 2.2s ease-in-out infinite;
}

@keyframes firePulse {

  0%,
  100% {
    color: var(--primary);
    transform: scale(1);
  }

  50% {
    color: #ff6b00;
    transform: scale(1.18) translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.6));
  }
}

.arch-card-icon i.icon-animated {
  animation: iconBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
  0% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.3) translateY(-4px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* ── CTA Shake ──────────────────────────────────────────── */
@keyframes ctaShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px) rotate(-1deg);
  }

  40% {
    transform: translateX(5px) rotate(1deg);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

/* ── Review Keyword Highlight ───────────────────────────── */
.review-highlight {
  background: transparent;
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
  padding: 0 1px;
}

/* ── Footer Closing Phrase ──────────────────────────────── */
.footer-closing-phrase {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--p-safe) 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.closing-line {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: rgba(255, 255, 255, 0.06);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 1px;
  display: block;
}

.closing-accent {
  color: rgba(255, 106, 0, 0.15);
}

/* ==========================================================================
   13. LANDING MOBILE OVERHAUL — 4 BRUTALIST ENHANCEMENTS
   ========================================================================== */

/* ── 1. BABEO WRAPPER: fondo negro sólido, fluye con la página ── */
.hero-babeo-wrap {
  width: 100%;
  margin-bottom: 2.5rem;
  background: var(--bg-void);
}

/* Pseudo-elementos desactivados */
.hero-babeo-wrap::before,
.hero-babeo-wrap::after {
  content: none;
}

/* ── 2. TICKER TAPE MARQUEE — ancho 100vw, de borde a borde ── */
.hero-ticker {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 0.55rem 0;
  margin-bottom: 2rem;
}

.hero-ticker__track {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  animation: ticker 20s linear infinite;
  will-change: transform;
  padding-right: 2rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── 3. STICKY CTA BAR — PASTILLA FLOTANTE (solo móvil) ── */
@media (max-width: 768px) {
  .hero-cta-shell {
    --hero-cta-bottom-offset: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .hero-cta-shell.btn-landing--sticky {
    width: calc(100vw - 24px);
  }

  .hybrid-split-block .split-cta {
    min-height: 56px;
    font-size: 0.95rem;
    font-weight: 900;
    padding: 16px 24px;
    letter-spacing: 2px;
    border-radius: 50px !important;
  }

  .btn-minimalist {
    padding: 0 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.9px;
  }

  .hybrid-split-block .split-eta {
    border-radius: 50px 0 0 50px !important;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .cta-microcopy {
    display: block;
    margin-top: 0.65rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
  }
}

/* ── 4. CONTEXTO DEL PUNTITO VERDE ─────────────────────── */
.nav-status-label {
  display: none;
  /* oculto por defecto (desktop muestra status-text) */
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-pure);
  text-transform: uppercase;
  line-height: 1;
}

/* En móvil: el pill se expande con la etiqueta COCINA: */
@media (max-width: 768px) {
  .nav-status-app {
    padding: 0.35rem 0.8rem !important;
    width: auto !important;
    border-radius: 0 !important;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .nav-status-label {
    display: inline;
  }

  /* El .nav-status-text reacciona al data-shop del html */
  .nav-status-text {
    display: inline !important;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
  }

  /* Colores contextuales globales */
  [data-shop="open"] .nav-status-text {
    color: var(--success);
  }

  [data-shop="closed"] .nav-status-text {
    color: var(--danger);
  }

  [data-shop="loading"] .nav-status-text {
    color: var(--text-muted);
  }
}

/* En desktop el label se mantiene oculto, status-text visible normalmente */
@media (min-width: 769px) {
  .nav-status-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-cta-shell,
  .split-cta,
  .btn-minimalist {
    transition: none;
    animation: none;
  }

  .hero-cta-shell.btn-landing--sticky {
    animation: none;
  }
}
/* --------------------------------------------------------------
   DESKTOP REDESIGN min-width: 1024px
   ------------------------------------------------------------ */
@media (min-width: 1024px) {

  /* Warmer overall background */
  html, body {
    background: #1a1a1a !important;
  }
  body::before {
    background-image:
      linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  }

  /* Dark glass header (matches the site's dark mode) */
  .nav-glass {
    background-color: rgba(10, 10, 10, 0.78) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    height: 80px;
  }
  .nav-logo-img {
    height: 52px;
    filter: none;
  }
  .nav-status-text-minimal {
    color: rgba(255, 255, 255, 0.78);
  }
  .nav-icon-btn {
    color: #ffffff;
    opacity: 0.85;
  }
  .nav-icon-btn:hover {
    opacity: 1;
    color: var(--brand-orange);
  }

  /* Hero: extra padding for taller nav */
  .hero-avant {
    padding-top: calc(80px + 2.5rem);
  }

  /* Hero (desktop): split poster + CTA so it feels designed for wide screens */
  .hero-avant--minimal .hero-grid {
    max-width: 1280px;
    justify-items: stretch;
  }

  .hero-avant--minimal .hero-content {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(460px, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.5rem;
    align-items: start;
  }

  .hero-avant--minimal .poster-hero-block {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
  }

  .hero-avant--minimal .avant-desc {
    margin-bottom: 2.25rem;
  }

  .hero-avant--minimal .hero-cta-shell {
    max-width: none;
    margin-top: 1.25rem;
  }

  /* Philosophy cards: full 3-col always on desktop */
  .arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .arch-card {
    padding: 2.5rem 2rem;
  }

  /* CTA final: bigger title */
  .cta-final-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }
}
