/* =========================================================
   EL SOL LATINO — styles.css  v2.0
   Colombian Soul · Feminine, Warm & Premium
   ========================================================= */

/* 1. FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* 2. TOKENS */
:root {
  --cream:         #FDF8F2;
  --blush:         #FBF0EB;
  --terracotta:    #C4622D;
  --terra-light:   #D97845;
  --terra-pale:    #F5DDD1;
  --gold:          #B8860B;
  --gold-light:    #D4A84B;
  --gold-pale:     #F5E9C8;
  --magenta:       #B5305A;
  --magenta-light: #F2A7BE;
  --leaf:          #4A6741;
  --charcoal:      #1A0F0A;
  --dark-warm:     #1F1410;
  --warm-mid:      #6B4E3D;
  --muted:         #A08070;
  --white:         #FFFFFF;
  --border:        rgba(184, 134, 11, 0.15);
  --border-soft:   rgba(196, 98, 45, 0.10);
  --shadow-warm:   0 8px 40px rgba(31,20,16,0.10);
  --shadow-card:   0 2px 16px rgba(31,20,16,0.07);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 4. BASE */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* 5. TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.eyebrow-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Gold accent elements */
.gold-rule {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0;
}

.gold-rule.centered { margin: 16px auto; }

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
}

/* 6. LAYOUT */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  border: 1.5px solid transparent;
}

.btn-terra:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,98,45,0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid transparent;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,134,11,0.35);
}

.btn-outline-terra {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}

.btn-outline-terra:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* 8. NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-color: var(--border-soft);
  box-shadow: 0 2px 24px rgba(31,20,16,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--terracotta);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.brand-text:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--warm-mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after { right: 0; background: var(--terracotta); }

.nav-cta { flex-shrink: 0; font-size: 13px; padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 8px 24px 16px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--warm-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border: none; margin-top: 8px; text-align: center; }
.nav-mobile a:hover { color: var(--terracotta); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(26,15,10,0.48) 0%,
    rgba(26,15,10,0.32) 45%,
    rgba(26,15,10,0.68) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 8px;
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 0.25s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 20px auto 36px;
  line-height: 1.75;
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 0.4s;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 0.55s;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: heroBounce 2.4s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.6);
}

/* 10. PILL STRIP */
.pill-strip {
  background: var(--dark-warm);
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.pill-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 0;
  animation: pillScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.pill {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 24px;
}

.pill-sep {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.7;
  padding: 0 4px;
}

/* 11. SECTIONS — Vibe */
.section-vibe {
  padding: 104px 24px;
  background: var(--cream);
}

.vibe-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.vibe-header h2 {
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--charcoal);
  margin-top: 14px;
}

.vibe-header h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.vibe-header .vibe-desc {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--warm-mid);
  line-height: 1.8;
}

.vibe-img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  max-height: 520px;
}

.vibe-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.vibe-img-wrap:hover .vibe-img { transform: scale(1.03); }

.vibe-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(26,15,10,0.7);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  padding: 8px 16px;
}

.vibe-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
  background: var(--border-soft);
}

.vibe-col {
  background: var(--cream);
  padding: 36px 40px;
}

.vibe-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.vibe-col-title::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 14px;
}

.vibe-col-body {
  font-size: 0.9rem;
  color: var(--warm-mid);
  line-height: 1.85;
}

/* 12. MENU CAROUSEL */
.menu-carousel-section {
  background: var(--dark-warm);
  padding: 96px 0 64px;
}

.carousel-header {
  text-align: center;
  padding: 0 24px 52px;
}

.carousel-header h2 {
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white);
  margin-top: 14px;
}

.carousel-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

.carousel-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ctab {
  padding: 9px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(184,134,11,0.2);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.ctab:hover { color: rgba(255,255,255,0.8); border-color: rgba(184,134,11,0.4); }
.ctab.active { background: var(--gold); color: var(--dark-warm); border-color: var(--gold); }

.carousel-viewport {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 40px 24px;
  cursor: grab;
}

.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport.grabbing { cursor: grabbing; }

.mcard {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  background: #2A1C15;
  border: 1px solid rgba(184,134,11,0.12);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.mcard:hover { border-color: rgba(184,134,11,0.35); }

.mcard-photo {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.mcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mcard:hover .mcard-photo img { transform: scale(1.05); }

.mcard-badge {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--gold);
  color: var(--dark-warm);
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.mcard-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.mcard-hours {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-weight: 400;
}

.mcard-list {
  list-style: none;
  flex: 1;
}

.mcard-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,134,11,0.08);
  gap: 12px;
}

.mcard-list li span:last-child {
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.mcard-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  line-height: 1.6;
}

.mcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-top: 18px;
  border-bottom: 1px solid rgba(184,134,11,0.3);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}

.mcard-cta:hover { color: var(--gold); border-color: var(--gold); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px 0;
}

.cdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(184,134,11,0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.cdot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.carousel-hint {
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em;
  margin-top: 12px;
  display: none;
}

/* 13. FEATURE SPLIT */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--blush);
}

.feature-img {
  overflow: hidden;
  position: relative;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-img:hover img { transform: scale(1.04); }

.feature-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h2 {
  font-weight: 300;
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: var(--charcoal);
  margin-top: 16px;
  line-height: 1.0;
}

.feature-text h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.feature-text .feature-body {
  font-size: 0.9rem;
  color: var(--warm-mid);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 360px;
}

/* 14. SALSA / NIGHTS */
.section-salsa {
  background: var(--dark-warm);
  position: relative;
  overflow: hidden;
}

.section-salsa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/events-feature.jpg') center/cover no-repeat;
  opacity: 0.14;
}

.salsa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.salsa-text {
  padding: 80px 56px 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.salsa-text h2 {
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--white);
  margin-top: 16px;
}

.salsa-text h2 em { font-style: italic; color: var(--gold-light); }

.salsa-text .salsa-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 420px;
}

.salsa-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.salsa-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.salsa-stat-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.salsa-stat-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.salsa-img-wrap {
  overflow: hidden;
  position: relative;
}

.salsa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.8s ease;
}

.salsa-img-wrap:hover .salsa-img { transform: scale(1.04); }

/* 15. DRINKS / LIFESTYLE GRID */
.section-lifestyle {
  background: var(--cream);
  padding: 96px 24px;
}

.lifestyle-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.lifestyle-header h2 {
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--charcoal);
  margin-top: 14px;
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.drinks-col { position: relative; }

.drinks-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drinks-col:hover .drinks-img { transform: scale(1.02); }

.drinks-caption {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-mid);
  text-align: center;
}

/* 16. TESTIMONIALS */
.section-reviews {
  background: var(--blush);
  padding: 96px 24px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}

.reviews-header h2 {
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--charcoal);
  margin-top: 14px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star-icon { width: 13px; height: 13px; }

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testi-author {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* 17. HOURS + CONTACT */
.section-hours {
  background: var(--dark-warm);
  padding: 80px 24px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.hours-address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-bottom: 28px;
}

.hours-address a { color: var(--gold-light); transition: color 0.2s; }
.hours-address a:hover { color: var(--gold); }

.hours-table { display: flex; flex-direction: column; gap: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(184,134,11,0.12);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s;
}

.hours-row:last-child { border-bottom: none; }

.hours-row.today {
  color: var(--gold-light);
  font-weight: 500;
  background: rgba(184,134,11,0.07);
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}

.hours-closed span:last-child { color: rgba(242,167,190,0.8) !important; }

.hours-cta-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hours-buttons { display: flex; flex-direction: column; gap: 12px; }
.hours-buttons .btn { justify-content: center; }

/* 18. BONUSKARTE STRIP */
.bonuskarte-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(184,134,11,0.25);
  border-bottom: 1px solid rgba(184,134,11,0.25);
  padding: 32px 24px;
  text-align: center;
}

.bonuskarte-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.bonuskarte-title::before {
  content: '◈ ';
  color: var(--gold);
}

.bonuskarte-body {
  font-size: 0.875rem;
  color: var(--warm-mid);
}

/* 19. MAP SECTION */
.section-map {
  background: var(--cream);
  padding: 0;
}

.map-iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
  filter: sepia(0.12) contrast(0.98);
}

/* 20. FOOTER */
.footer {
  background: #100A07;
  padding: 64px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184,134,11,0.12);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-insta {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.footer-nav h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-nav a, .footer-nav p {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 9px;
  transition: color 0.2s;
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* 21. FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 150;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(196,98,45,0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.floating-cta:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,98,45,0.45);
}

/* 22. SPEISEKARTE PAGE */
.menu-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 48px;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
}

.menu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.85) 0%, rgba(26,15,10,0.25) 100%);
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.menu-hero-content h1 {
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
}

.menu-hero-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* Menu page sections */
.menu-section-block {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border-soft);
}

.menu-section-block:last-of-type { border: none; }

.menu-section-block:nth-child(even) { background: var(--blush); }

.menu-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
}

.menu-section-hours {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border-soft);
}

.menu-item {
  background: var(--cream);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  transition: background 0.2s;
}

.menu-section-block:nth-child(even) .menu-item { background: var(--blush); }
.menu-item:hover { background: var(--terra-pale); }

.menu-item-left { flex: 1; }

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.menu-item-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  background: var(--gold-pale);
  color: var(--gold);
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

.menu-build-your-own {
  background: var(--gold-pale);
  border: 1px solid rgba(184,134,11,0.2);
  padding: 28px 32px;
  margin-top: 24px;
}

.menu-build-your-own h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.build-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.build-option {
  font-size: 0.8rem;
  color: var(--warm-mid);
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}

/* 23. GALLERY PAGE */
.gallery-page-hero {
  background: var(--dark-warm);
  padding: 120px 24px 64px;
  text-align: center;
}

.gallery-page-hero h1 {
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--white);
  margin-top: 14px;
}

.gallery-page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.04); opacity: 0.88; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,10,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(26,15,10,0.2);
}

.gallery-zoom-icon {
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}

.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,6,4,0.94);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.gallery-reviews { background: var(--blush); padding: 80px 24px; }

/* 24. EVENTS PAGE */
.events-page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}

.events-page-hero .hero-bg { z-index: 0; }
.events-page-hero .hero-overlay { z-index: 1; }

.events-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.events-page-hero-content h1 {
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.0;
}

.events-page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.events-page-hero-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 480px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-soft);
  margin: 48px 0;
}

.event-card {
  background: var(--cream);
  padding: 40px;
  transition: background 0.2s;
}

.event-card:hover { background: var(--blush); }

.event-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.event-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.event-card p {
  font-size: 0.875rem;
  color: var(--warm-mid);
  line-height: 1.85;
}

.catering-pricing-block {
  background: var(--dark-warm);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.catering-pricing-block h2 {
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin-top: 14px;
}

.pricing-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.pricing-fact-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.pricing-fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* 25. SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.36s; }

/* 26. KEYFRAMES */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pillScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 27. RESPONSIVE */
@media (max-width: 1024px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-img { min-height: 360px; }
  .feature-text { padding: 56px 40px; }
  .salsa-inner { grid-template-columns: 1fr; }
  .salsa-img-wrap { min-height: 300px; }
  .hours-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catering-pricing-block { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .carousel-hint { display: block; }
  .gallery-masonry { columns: 2; }
  .vibe-text-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-facts { grid-template-columns: 1fr; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; position: fixed; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .feature-text { padding: 40px 24px; }
  .salsa-text { padding: 56px 24px; }
  .catering-pricing-block { padding: 40px 24px; }
  .hours-buttons .btn { font-size: 12px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { transition: none; opacity: 1; transform: none; }
  .pill-scroll { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
