/* ============================================================
   Artéteca — Pizzería Napolitana · artetecapizzeria.com
   Archetype: Editorial Dark Warm (02)
   Date: 2026-06-07
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1E1813;
  --bg-4:      #241C16;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --gold:      #C49A5B;
  --gold-2:    #A87C3F;
  --red:       #C5301E;
  --line:      rgba(242,235,218,.1);
  --line-2:    rgba(242,235,218,.06);
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --ease-io:   cubic-bezier(0.65, 0, 0.35, 1);
  --trans:     0.55s var(--ease-out);
}

html {
  font-size: 16px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-2);
  max-width: 65ch;
}

/* ── GRAIN TEXTURE ─────────────────────────────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  z-index: 3;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── SECTION BASE ──────────────────────────────────────────── */
.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow-num {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.eyebrow-line {
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.eyebrow-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,154,91,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,235,218,.35);
}
.btn-ghost:hover {
  background: rgba(242,235,218,.08);
  border-color: rgba(242,235,218,.6);
  transform: translateY(-2px);
}

/* ── SPLASH ────────────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), clip-path 0.8s var(--ease-in);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.splash-logo {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  animation: splashFade 0.8s var(--ease-out) forwards;
}
.splash-logo-img {
  width: min(200px, 55vw);
  height: auto;
  animation: splashFade 0.8s var(--ease-out) forwards;
}
@keyframes splashFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.splash-bar {
  width: min(200px, 50vw);
  height: 1px;
  background: rgba(242,235,218,.15);
  border-radius: 1px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: splashLoad 1.8s var(--ease-io) 0.3s forwards;
}
@keyframes splashLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--cream-2);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--cream); }
.nav.is-scrolled .nav-link { text-shadow: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0.45;
  transition: opacity 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn.is-active {
  opacity: 1;
  background: rgba(242,235,218,.1);
}
.flag-senyera {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.btn-nav-reserve {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}
.btn-nav-reserve:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,11,9,.45) 0%,
    rgba(14,11,9,.6) 50%,
    rgba(14,11,9,.85) 100%
  );
}
.hero-grain { z-index: 2; }

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-inline: 1.5rem;
  padding-top: var(--nav-h);
  width: 100%;
  max-width: 860px;
}

/* ── NEON QUOTE ────────────────────────────────────────────── */
.hero-neon-wrap {
  width: 100%;
}
.neon-quote {
  font-family: 'Dancing Script', 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #FFF8E7;
  text-shadow:
    0 0 6px rgba(255,248,231,.95),
    0 0 12px rgba(255,248,231,.8),
    0 0 24px rgba(242,235,218,.6),
    0 0 48px rgba(220,200,160,.45),
    0 0 80px rgba(196,154,91,.3),
    0 0 120px rgba(196,154,91,.15);
  animation: neonPulse 4s ease-in-out infinite;
  text-wrap: balance;
}
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255,248,231,.95),
      0 0 12px rgba(255,248,231,.8),
      0 0 24px rgba(242,235,218,.6),
      0 0 48px rgba(220,200,160,.45),
      0 0 80px rgba(196,154,91,.3),
      0 0 120px rgba(196,154,91,.15);
  }
  50% {
    text-shadow:
      0 0 4px rgba(255,248,231,.85),
      0 0 9px rgba(255,248,231,.65),
      0 0 18px rgba(242,235,218,.45),
      0 0 38px rgba(220,200,160,.35),
      0 0 65px rgba(196,154,91,.22),
      0 0 100px rgba(196,154,91,.1);
  }
}

/* ── HERO LOGO AREA ────────────────────────────────────────── */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 7, 5, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(196,154,91,0.15);
}

.hero-logo-img-wrap {
  width: clamp(120px, 22vw, 180px);
  height: clamp(120px, 22vw, 180px);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 14px);
  box-shadow:
    0 0 0 1px rgba(196,154,91,.3),
    0 8px 40px rgba(0,0,0,.6),
    0 0 60px rgba(196,154,91,.12);
  transition: box-shadow 0.4s;
}
.hero-logo-img-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(196,154,91,.5),
    0 8px 40px rgba(0,0,0,.6),
    0 0 80px rgba(196,154,91,.25);
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
}
.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,91,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(196,154,91,0); }
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: prevent invisible split-text elements */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* ── SECTION VISION ────────────────────────────────────────── */
.section-vision {
  background: var(--bg-2);
}
.section-vision::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(196,154,91,.06) 0%, transparent 70%);
  pointer-events: none;
}

.vision-text {
  margin-block: 1.5rem 3rem;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  border-color: rgba(196,154,91,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.pillar-text {
  font-size: 0.9rem;
  color: var(--cream-3);
  line-height: 1.6;
}

/* Stagger delays for pillars */
.pillar:nth-child(1) { transition-delay: 0ms; }
.pillar:nth-child(2) { transition-delay: 100ms; }
.pillar:nth-child(3) { transition-delay: 200ms; }

/* ── SECTION HISTORIA ──────────────────────────────────────── */
.section-historia {
  background: var(--bg);
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.historia-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.historia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.historia-img-wrap:hover .historia-img {
  transform: scale(1.04);
}
.historia-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.historia-content .section-title { max-width: 20ch; }
.historia-content .section-text { max-width: 55ch; }

/* ── SECTION CAROUSEL ──────────────────────────────────────── */
.section-carousel {
  background: var(--bg-2);
  padding-bottom: 3rem;
}
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.carousel-intro {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--cream-2, rgba(242,235,218,0.7));
  line-height: 1.7;
  max-width: 72ch;
  margin-top: 1rem;
  margin-bottom: 2.25rem;
}
.carousel-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: scale(1.08);
}

.carousel-outer {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 0.5rem 1rem;
  overflow-y: visible;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 clamp(260px, 35vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: grab;
}
.carousel-card:active { cursor: grabbing; }
.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(1.05);
}
.carousel-card:hover .card-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.18) brightness(1.05);
}

.card-caption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--cream-3);
  letter-spacing: 0.02em;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242,235,218,.25);
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border: none;
}
.carousel-dot.is-active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ── SECTION SEO ───────────────────────────────────────────── */
.section-seo {
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.seo-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.seo-content .section-text { max-width: 58ch; }
.seo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.seo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(1.08) contrast(1.03);
}
.seo-image:hover img { transform: scale(1.04); }

/* Ambient halo behind seo section */
.section-seo::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(197,48,30,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTION REVIEWS ───────────────────────────────────────── */
.section-reviews {
  background: var(--bg-2);
}
.reviews-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-block: 1rem 2.5rem;
}
.star {
  color: var(--gold);
  font-size: 1.4rem;
}
.reviews-avg {
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
  margin-left: 0.4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(196,154,91,.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;

}
.review-meta { flex: 1; }
.review-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}
.review-date {
  font-size: 0.75rem;
  color: var(--cream-3);
}
.review-stars-sm {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--cream-2);
  line-height: 1.65;
  font-style: italic;
}

/* Stagger for review cards */
.review-card:nth-child(1) { transition-delay: 0ms; }
.review-card:nth-child(2) { transition-delay: 80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }
.review-card:nth-child(4) { transition-delay: 240ms; }
.review-card:nth-child(5) { transition-delay: 320ms; }
.review-card:nth-child(6) { transition-delay: 400ms; }

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-top { padding-block: clamp(3rem, 8vw, 6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-3);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  color: var(--cream);
  border-color: rgba(242,235,218,.4);
  background: rgba(242,235,218,.08);
}

.footer-col-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream-3);
  margin-bottom: 1.25rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--cream-2);
}
.footer-list a {
  color: var(--cream-2);
  transition: color 0.3s;
}
.footer-list a:hover { color: var(--gold); }
.footer-closed { color: var(--cream-3); }

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--cream-2);
  margin-bottom: 1.5rem;
}
.footer-address a {
  color: var(--cream-3);
  transition: color 0.3s;
}
.footer-address a:hover { color: var(--gold); }
.footer-reserve-btn {
  font-size: 0.8rem;
  padding: 0.7rem 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-2);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy, .footer-credits {
  font-size: 0.78rem;
  color: var(--cream-3);
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: -3px; left: -3px;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(196,154,91,.5);
  border-radius: 50%;
  top: -16px; left: -16px;
  will-change: transform;
  transition: width 0.3s, height 0.3s, border-color 0.3s, margin 0.3s;
}
.cursor.is-hover .cursor-ring {
  width: 48px; height: 48px;
  top: -24px; left: -24px;
  border-color: var(--gold);
}

/* ── MOBILE RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.is-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(14,11,9,.97);
    backdrop-filter: blur(20px);
    padding: 2.5rem clamp(1.25rem, 5vw, 3rem);
    gap: 2rem;
    z-index: 999;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open .nav-link {
    font-size: 1.1rem;
    color: var(--cream);
  }
  .nav-toggle { display: flex; }

  .historia-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .historia-img-wrap {
    aspect-ratio: 16/9;
    max-height: 320px;
  }
  .seo-image { order: -1; aspect-ratio: 16/9; max-height: 280px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-content { gap: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-nav-reserve { display: none; }
  .nav-right .lang-switcher { gap: 0; }

  .vision-pillars { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .carousel-card { flex: 0 0 80vw; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 440px) {
  .neon-quote { font-size: clamp(1.9rem, 8vw, 2.5rem); }
}

/* ── UTILITIES ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line,
  .neon-quote,
  .splash-progress { animation: none; }
  .splash-progress { width: 100%; }
}

/* Print: hide decorative elements */
@media print {
  .splash, .cursor, .hero-grain, .nav, .hero-scroll { display: none; }
}
