/* ==========================================================================
   EL SOL LATINO — Editorial luxury redesign
   Dark · sensual · cinematic — index.html
   ========================================================================== */

/* ---------- Custom properties ---------- */
:root {
  --bg-dark: #0D0907;
  --bg-dark-2: #14100C;
  --cream: #F4EDE4;
  --ink: #1a0e07;
  --terracotta: #C4622D;
  --terra-light: #E8845A;
  --gold: #B8860B;
  --gold-soft: rgba(184, 134, 11, 0.45);
  --text-light: #F0EBE3;
  --text-muted: rgba(240, 235, 227, 0.55);
  --text-muted-strong: rgba(240, 235, 227, 0.72);
  --ink-muted: rgba(26, 14, 7, 0.65);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --pad-section: clamp(96px, 12vw, 170px);
  --pad-x: clamp(24px, 6vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--terracotta); color: #fff; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; }

/* ---------- Shared atoms ---------- */
.micro-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.micro-label.gold { color: var(--gold); }
.micro-label.terra { color: var(--terracotta); }
.micro-label.ink { color: var(--ink); letter-spacing: 0.28em; font-size: 11px; }

.gold-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0 30px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 100px;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn-terra { background: var(--terracotta); color: #fff; border: 1px solid var(--terracotta); }
.btn-terra:hover { background: transparent; color: var(--terra-light); }
.btn-ghost-white { border: 1px solid rgba(240, 235, 227, 0.45); color: var(--text-light); }
.btn-ghost-white:hover { border-color: var(--text-light); background: rgba(240, 235, 227, 0.08); }
.btn-ghost-gold { border: 1px solid var(--gold-soft); color: var(--gold); }
.btn-ghost-gold:hover { border-color: var(--gold); background: rgba(184, 134, 11, 0.08); }
.btn-ghost-ink { border: 1px solid rgba(26, 14, 7, 0.35); color: var(--ink); }
.btn-ghost-ink:hover { border-color: var(--ink); background: rgba(26, 14, 7, 0.05); }

.arrow-link {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-light);
  border-bottom: 1px solid rgba(196, 98, 45, 0.5);
  padding-bottom: 6px;
  transition: all 0.4s var(--ease);
}
.arrow-link span { display: inline-block; transition: transform 0.4s var(--ease); margin-left: 6px; }
.arrow-link:hover { border-color: var(--terra-light); }
.arrow-link:hover span { transform: translateX(6px); }
.arrow-link.small { font-size: 11px; }

/* ---------- Scroll reveals ---------- */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.4s; }

/* ---------- Parallax ---------- */
.parallax-img {
  --scroll-factor: 0;
  transform: translateY(calc(var(--scroll-factor) * -22px)) scale(1.08);
  will-change: transform;
}

/* ==========================================================================
   1. NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(13, 9, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(184, 134, 11, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--pad-x);
  transition: padding 0.5s var(--ease);
}
.nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }

.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-strong);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--terracotta);
  font-size: 11px !important;
}
.nav-cta:hover { background: transparent; color: var(--terra-light) !important; }
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--text-light);
  transition: transform 0.4s var(--ease);
}
.hamburger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.hamburger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(13, 9, 7, 0.97);
  backdrop-filter: blur(14px);
  padding: 18px var(--pad-x) 36px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
}
.nav-mobile .nav-mobile-cta {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  padding: 15px;
  margin-top: 22px;
  border: none;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video, .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback { z-index: -1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,9,7,0.45) 0%, rgba(13,9,7,0.38) 40%, rgba(13,9,7,0.72) 100%);
}

.hero-content {
  position: absolute;
  left: 8%;
  bottom: 15%;
  max-width: 720px;
  z-index: 2;
}
.hero-title {
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.hero-line-1 {
  font-style: italic;
  font-size: clamp(54px, 7.5vw, 92px);
  letter-spacing: 0.01em;
}
.hero-line-2 {
  font-style: italic;
  font-size: clamp(46px, 6.4vw, 78px);
  padding-left: clamp(12px, 2vw, 26px);
  color: rgba(240, 235, 227, 0.92);
}
.hero-sub {
  margin-top: 28px;
  max-width: 380px;
  font-size: 15px;
  color: rgba(240, 235, 227, 0.7);
}
.hero-ctas { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: scrollBounce 2.4s var(--ease) infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(240,235,227,0.7));
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
  50% { transform: translate(-50%, 10px); opacity: 0.5; }
}

/* ==========================================================================
   3. TICKER
   ========================================================================== */
.ticker {
  background: var(--terracotta);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.ticker-group span {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 26px;
}
.ticker-group i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   4. NUESTRA CASA
   ========================================================================== */
.casa { background: var(--cream); color: var(--ink); }
.casa-image {
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}
.casa-image img { width: 100%; height: 116%; object-fit: cover; }

.casa-body {
  display: flex;
  justify-content: flex-end;
  padding: clamp(72px, 9vw, 130px) var(--pad-x) var(--pad-section);
}
.casa-text { max-width: 820px; width: 100%; }
.casa-heading {
  font-style: italic;
  font-size: clamp(42px, 5.6vw, 72px);
  color: var(--ink);
  position: relative;
  padding-left: clamp(28px, 4vw, 56px);
  margin-top: 26px;
}
.casa-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.25em;
  width: 1px;
  background: var(--gold);
}
.casa-heading em { display: block; font-size: 0.62em; margin-top: 0.3em; color: rgba(26,14,7,0.78); }
.casa-lede {
  margin-top: 40px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-muted);
  max-width: 580px;
  padding-left: clamp(28px, 4vw, 56px);
}
.casa-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  margin-top: 64px;
  padding-left: clamp(28px, 4vw, 56px);
}
.casa-columns .micro-label { display: block; margin-bottom: 16px; }
.casa-columns p:not(.micro-label) { font-size: 14.5px; color: var(--ink-muted); }

/* ==========================================================================
   5. TRIPTYCH
   ========================================================================== */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trip-col {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}
.trip-dark { background: var(--bg-dark); color: var(--text-light); }
.trip-cream { background: var(--cream); color: var(--ink); }
.trip-cream .trip-line { color: var(--ink-muted); }

.trip-img { flex: 1; overflow: hidden; position: relative; }
.trip-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.trip-col:hover .trip-img img { transform: scale(1.05); }

.trip-caption { padding: clamp(28px, 3vw, 48px); }
.trip-caption h3 {
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 38px);
  margin: 14px 0 12px;
}
.trip-line { font-size: 13.5px; color: var(--text-muted); max-width: 300px; }

/* ==========================================================================
   6. AREPA FEATURE
   ========================================================================== */
.arepa {
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--bg-dark);
  align-items: stretch;
}
.arepa-img { overflow: hidden; min-height: 600px; }
.arepa-img img { width: 100%; height: 100%; object-fit: cover; }
.arepa-text {
  padding: clamp(64px, 7vw, 110px) clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.arepa-heading {
  font-style: italic;
  font-size: clamp(42px, 4.4vw, 64px);
  color: var(--cream);
  margin: 26px 0 32px;
}
.arepa-heading em { color: rgba(240, 235, 227, 0.85); }
.arepa-body {
  font-size: 15px;
  color: var(--text-muted-strong);
  max-width: 440px;
  margin-bottom: 44px;
}

/* ==========================================================================
   7. BAR & NACHT
   ========================================================================== */
.noche {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--pad-section) var(--pad-x);
}
.noche-bg { position: absolute; inset: -40px; }
.noche-bg img { width: 100%; height: 100%; object-fit: cover; }
.noche-overlay { position: absolute; inset: 0; background: rgba(13, 9, 7, 0.62); }
.noche-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.noche-heading {
  font-style: italic;
  font-size: clamp(52px, 6.4vw, 84px);
  color: var(--cream);
  margin: 26px 0 30px;
}
.noche-body {
  font-size: 15px;
  color: var(--text-muted-strong);
  max-width: 520px;
  margin: 0 auto 56px;
}
.noche-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 5vw, 72px);
  margin-bottom: 56px;
}
.noche-stat { text-align: center; }
.noche-stat-main {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--cream);
}
.noche-stat-sub {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.noche-divider { width: 1px; height: 64px; background: var(--gold-soft); }

/* ==========================================================================
   8. CARTE — menu carousel
   ========================================================================== */
.carte {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}
.carte-texture {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.carte-texture img { width: 100%; height: 100%; object-fit: cover; }
.carte-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(244,237,228,0.82) 35%, rgba(244,237,228,0.9) 100%);
}
.carte-inner {
  position: relative;
  z-index: 2;
  padding: var(--pad-section) 0;
}
.carte-header { text-align: center; padding: 0 var(--pad-x); }
.carte-header h2 {
  font-style: italic;
  font-size: clamp(42px, 5vw, 68px);
  color: var(--ink);
  margin: 22px 0 18px;
}
.carte-sub { color: var(--ink-muted); font-size: 14.5px; }

.carte-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 52px);
  margin: 56px var(--pad-x) 48px;
  flex-wrap: wrap;
}
.ctab {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.ctab:hover { color: var(--ink); }
.ctab.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.carte-viewport {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px var(--pad-x) 28px;
  scrollbar-width: none;
  cursor: grab;
}
.carte-viewport::-webkit-scrollbar { display: none; }
.carte-viewport.grabbing { cursor: grabbing; }

.mcard {
  flex: 0 0 auto;
  width: min(860px, 88vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  scroll-snap-align: center;
  background: transparent;
}
.mcard-photo { overflow: hidden; }
.mcard-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.mcard:hover .mcard-photo img { transform: scale(1.04); }
.mcard-body {
  padding: clamp(28px, 3.5vw, 56px);
  background: rgba(244, 237, 228, 0.6);
  display: flex;
  flex-direction: column;
}
.mcard-title {
  font-style: italic;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--ink);
  margin: 12px 0 26px;
}
.mcard-list { flex: 1; }
.mcard-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 9px 0;
  font-size: 14px;
  color: rgba(26, 14, 7, 0.8);
  border-bottom: 1px solid rgba(26, 14, 7, 0.08);
}
.mcard-list li span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  white-space: nowrap;
}
.mcard-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 20px 0 24px;
  letter-spacing: 0.04em;
}

.carte-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.cdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(26, 14, 7, 0.2);
  transition: all 0.35s ease;
}
.cdot.active { background: var(--terracotta); transform: scale(1.35); }

.carte-note {
  text-align: center;
  margin-top: 52px;
  padding: 0 var(--pad-x);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.carte-note em { color: var(--terracotta); }

/* ==========================================================================
   9. SÜSSES MOMENT
   ========================================================================== */
.dulce {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(26, 14, 7, 0.08);
}
.dulce-text {
  position: relative;
  padding: var(--pad-section) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dulce-number {
  position: absolute;
  top: clamp(20px, 4vw, 56px);
  left: clamp(24px, 4vw, 64px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 14vw, 200px);
  line-height: 1;
  color: rgba(184, 134, 11, 0.18);
  pointer-events: none;
}
.dulce-heading {
  font-style: italic;
  font-size: clamp(40px, 4.4vw, 62px);
  color: var(--ink);
  margin: 24px 0 30px;
  position: relative;
}
.dulce-body {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 420px;
  margin-bottom: 40px;
  position: relative;
}
.dulce-img { overflow: hidden; min-height: 540px; }
.dulce-img img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   10. TERRAZA
   ========================================================================== */
.terraza {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(96px, 10vw, 150px) var(--pad-x);
}
.terraza-bg { position: absolute; inset: -40px; }
.terraza-bg img { width: 100%; height: 100%; object-fit: cover; }
.terraza-overlay { position: absolute; inset: 0; background: rgba(13, 9, 7, 0.55); }
.terraza-content { position: relative; z-index: 2; text-align: center; max-width: 640px; }
.terraza-heading {
  font-style: italic;
  font-size: clamp(46px, 5.6vw, 76px);
  color: var(--cream);
  margin: 24px 0 26px;
}
.terraza-body {
  font-size: 15px;
  color: var(--text-muted-strong);
  margin-bottom: 44px;
}

/* ==========================================================================
   11. VOCES — testimonials
   ========================================================================== */
.voces { background: var(--bg-dark); }
.voces-inner { padding: var(--pad-section) var(--pad-x); max-width: 1320px; margin: 0 auto; }
.voces-heading {
  font-style: italic;
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--cream);
  margin: 22px 0 0;
}
.voces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 80px);
  margin-top: clamp(56px, 7vw, 96px);
}
.voz {
  position: relative;
  padding-left: 28px;
}
.voz::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--gold-soft);
}
.voz p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  color: var(--cream);
}
.voz cite {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.voces-bonus {
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: 40px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   12. KONTAKT + HOURS
   ========================================================================== */
.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.kontakt-left {
  background: var(--bg-dark-2);
  padding: var(--pad-section) clamp(40px, 6vw, 100px);
}
.kontakt-heading {
  font-style: italic;
  font-size: clamp(44px, 4.8vw, 68px);
  color: var(--cream);
  margin: 24px 0 40px;
}
.kontakt-address {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.5;
  color: var(--text-muted-strong);
  margin-bottom: 44px;
}
.kontakt-links { display: flex; flex-direction: column; gap: 16px; }
.kontakt-links a {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted-strong);
  width: fit-content;
  border-bottom: 1px solid rgba(240, 235, 227, 0.18);
  padding-bottom: 4px;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.kontakt-links a:hover { color: var(--gold); border-color: var(--gold-soft); }

.kontakt-right {
  background: var(--cream);
  color: var(--ink);
  padding: var(--pad-section) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hours-table { margin-top: 32px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 14px;
  border-bottom: 1px solid rgba(26, 14, 7, 0.1);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(26, 14, 7, 0.75);
  transition: background 0.3s ease;
}
.hours-row span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.hours-row.today {
  background: rgba(184, 134, 11, 0.12);
  border-bottom-color: var(--gold);
}
.hours-row.today span:first-child::after {
  content: 'Heute';
  margin-left: 12px;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hours-closed span:last-child { color: rgba(26, 14, 7, 0.45); }
.hours-note {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.kontakt-ctas { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

/* ==========================================================================
   MAP
   ========================================================================== */
.mapa { line-height: 0; border-top: 1px solid rgba(184, 134, 11, 0.2); }
.mapa-iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.85) sepia(0.18) contrast(0.92);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(184, 134, 11, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(64px, 7vw, 100px) var(--pad-x);
  max-width: 1320px;
  margin: 0 auto;
}
.footer-brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.9; }
.footer-insta { margin-top: 18px; font-size: 12px; letter-spacing: 0.14em; color: var(--gold); }

.footer-nav .micro-label, .footer-hours .micro-label { display: block; margin-bottom: 22px; }
.footer-nav a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--cream); }
.footer-hours p { font-size: 13px; color: var(--text-muted); padding: 4px 0; }
.footer-hh { margin-top: 14px; color: var(--gold) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px var(--pad-x);
  border-top: 1px solid rgba(240, 235, 227, 0.08);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  max-width: 1320px;
  margin: 0 auto;
}
.footer-bottom a { color: var(--text-muted); margin-left: 18px; transition: color 0.3s ease; }
.footer-bottom a:first-child { margin-left: 0; }
.footer-bottom a:hover { color: var(--cream); }

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 100px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  display: none;
}
.floating-cta:hover { transform: translateY(-3px); background: #a85124; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .arepa { grid-template-columns: 1fr; }
  .arepa-img { min-height: 56vh; }
  .mcard { grid-template-columns: 1fr; }
  .mcard-photo img { min-height: 300px; max-height: 380px; }
  .kontakt { grid-template-columns: 1fr; }
  .dulce { grid-template-columns: 1fr; }
  .dulce-img { min-height: 60vh; }
}

@media (max-width: 880px) {
  .triptych { grid-template-columns: 1fr; }
  .trip-col { min-height: 76vh; }
  .voces-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .casa-body { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .floating-cta { display: block; }
  .hero-content { left: 6%; right: 6%; bottom: 18%; }
  .noche-stats { gap: 28px; }
}

@media (max-width: 520px) {
  .hero-ctas .btn { width: 100%; text-align: center; }
  .kontakt-ctas .btn { width: 100%; text-align: center; }
  .carte-tabs { gap: 18px; }
  .floating-cta { left: 16px; bottom: 16px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
  .parallax-img { transform: none; }
  .ticker-track { animation: none; }
  .hero-scroll { animation: none; }
}
