/* ============================================
   Cha Cha Cha Cuban Cafe — Design System
   Warm Havana: mustard gold · Cuban red · cream · ink black
   ============================================ */

:root {
  /* Brand palette */
  --gold:        #E8A33D;   /* Havana mustard — the walls */
  --gold-deep:   #C07B1D;   /* burnt amber */
  --gold-soft:   #F5C867;   /* ripe mango */
  --red:         #C63E2E;   /* vibrant Cuban red — the chairs */
  --red-deep:    #9B2A1C;   /* sangre de toro */
  --red-soft:    #E05446;   /* tomato salsa */
  --teal:        #2A9D8F;   /* tropical teal accent */
  --cream:       #FAF3E3;   /* warm cream */
  --cream-deep:  #F4E9CE;   /* old paper */
  --ink:         #1A1512;   /* espresso black */
  --charcoal:    #2E2520;   /* dark wood */
  --taupe:       #6B5B4E;   /* body brown */
  --sand:        #AD9B86;   /* muted sand */
  --border:      rgba(26, 21, 18, 0.12);
  --border-soft: rgba(26, 21, 18, 0.06);
  --shadow-sm:   0 2px 8px rgba(26, 21, 18, 0.08);
  --shadow:      0 10px 30px rgba(26, 21, 18, 0.1);
  --shadow-lg:   0 20px 60px rgba(26, 21, 18, 0.18);
  --shadow-xl:   0 30px 80px rgba(26, 21, 18, 0.25);
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --max:         1280px;
  --max-narrow:  960px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 400;
}

/* --- Typography --- */
.display {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

h1 { font-size: clamp(44px, 6vw, 76px); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); }
h4 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--red-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--red); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-block;
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-gold { color: var(--gold-deep); }

.script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  letter-spacing: 0;
}

.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--taupe);
  font-weight: 400;
}

/* --- Layout --- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 100px 0; }
section.tight { padding: 72px 0; }

@media (max-width: 900px) {
  section { padding: 72px 0; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container, .container-narrow { padding: 0 20px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(198, 62, 46, 0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 163, 61, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 243, 227, 0.5);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-lg { padding: 20px 40px; font-size: 15px; }
.btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* --- Header / Navigation --- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: var(--cream); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(250, 243, 227, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--red);
}
.brand-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a.active { color: var(--red); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--red);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  z-index: 200;
  padding: 24px;
  display: none;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 243, 227, 0.1);
}
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 243, 227, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--ink);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(26, 21, 18, 0.55) 0%, rgba(26, 21, 18, 0.75) 55%, rgba(155, 42, 28, 0.65) 100%),
    url('../images/interior-main.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232, 163, 61, 0.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  color: var(--cream);
  text-align: center;
}
.hero-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--gold-soft);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  transform: rotate(-3deg);
  display: inline-block;
}
.hero-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin-bottom: 8px;
}
.hero-display .accent {
  color: var(--gold);
}
.hero-display .accent-red {
  color: var(--red-soft);
}
.hero-subline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(250, 243, 227, 0.85);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 3;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: var(--cream);
  margin: 10px auto 0;
  opacity: 0.5;
}

/* --- Badges strip --- */
.badges {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.badges-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.badge-item {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-item::before {
  content: '★';
  color: var(--gold);
  font-size: 14px;
}
@media (max-width: 900px) {
  .badges-inner { justify-content: center; gap: 24px; }
  .badge-item { font-size: 11px; }
}

/* --- Section Intro --- */
.section-intro {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-intro h2 { margin-bottom: 20px; }
.section-intro p { color: var(--taupe); font-size: 19px; }

.section-intro-left {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-intro-left h2 { margin-bottom: 20px; }
.section-intro-left p { color: var(--taupe); font-size: 19px; }

/* --- Dish Cards --- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dish-grid { grid-template-columns: 1fr; } }

.dish-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dish-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}
.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dish-card:hover .dish-card-image img { transform: scale(1.06); }
.dish-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 1;
}
.dish-card-body {
  padding: 28px 28px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.dish-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.dish-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.dish-card p {
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

/* --- Featured "Signature" block --- */
.signature {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.signature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .signature-inner { grid-template-columns: 1fr; gap: 48px; }
}
.signature-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-image::after {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--red);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.9;
}
.signature-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 10px 18px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.signature-copy .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.signature-copy .price-tag .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.signature-copy .price-tag .price-note {
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Menu Preview --- */
.menu-preview {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.menu-preview::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.menu-preview h2 { color: var(--cream); }
.menu-preview .eyebrow { color: var(--gold-soft); }
.menu-preview .section-intro p { color: rgba(250, 243, 227, 0.7); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-category {
  background: rgba(250, 243, 227, 0.04);
  border: 1px solid rgba(232, 163, 61, 0.15);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--cream);
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-category:hover {
  background: rgba(232, 163, 61, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--cream);
}
.menu-category .display {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}
.menu-category p {
  font-size: 13px;
  color: rgba(250, 243, 227, 0.65);
  line-height: 1.55;
  margin: 0;
}
.menu-category::after {
  content: '→';
  font-size: 22px;
  color: var(--gold);
  margin-top: 12px;
  transition: transform 0.2s var(--ease);
}
.menu-category:hover::after { transform: translateX(6px); }

/* --- Story Section --- */
.story {
  background: var(--cream);
  position: relative;
}
.story-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
}
.story-image-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.story-image-stack .img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image-stack .img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image-stack .img-tag {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 18px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 2;
}
@media (max-width: 900px) {
  .story-image-stack .img-tag { font-size: 16px; bottom: -20px; right: 16px; }
}

.quote-card {
  background: var(--red);
  color: var(--cream);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
}
.quote-card p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.quote-card .quote-author {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-soft);
}

/* --- Reviews --- */
.reviews-section { background: var(--cream-deep); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.review-card p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.review-source {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Location / Contact CTA --- */
.location-section {
  background: var(--cream);
  position: relative;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.location-card {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--border-soft);
}
.location-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 14px;
}
.location-card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--charcoal);
  padding: 6px 0;
}
.location-card-row svg {
  width: 20px;
  height: 20px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 3px;
}
.location-card-row a {
  color: var(--charcoal);
  font-weight: 500;
}
.location-card-row a:hover { color: var(--red); }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--charcoal);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--red); font-weight: 600; }
.hours-row .closed { color: var(--sand); font-style: italic; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* --- CTA section (Order online) --- */
.cta-section {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, var(--gold-deep) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(250,243,227,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(250,243,227,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-section h2 {
  color: var(--cream);
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 60px);
}
.cta-section p {
  font-size: 20px;
  color: rgba(250, 243, 227, 0.9);
  margin-bottom: 40px;
  line-height: 1.55;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Gallery grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--charcoal);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 243, 227, 0.7);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--teal) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--red-soft);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin-bottom: 10px;
}
.footer-tag {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 243, 227, 0.55);
  max-width: 340px;
}
.footer-col h5 {
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(250, 243, 227, 0.65);
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(250, 243, 227, 0.7);
  line-height: 1.55;
  margin-bottom: 10px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 243, 227, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(250, 243, 227, 0.4);
}

/* --- Page Header --- */
.page-header {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(26, 21, 18, 0.65) 0%, rgba(155, 42, 28, 0.55) 100%),
    url('../images/interior-gallery.jpg');
  background-size: cover;
  background-position: center;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.page-header h1 {
  color: var(--cream);
  margin-bottom: 20px;
}
.page-header p {
  font-size: 19px;
  color: rgba(250, 243, 227, 0.85);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(250, 243, 227, 0.6);
  margin-bottom: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumbs a { color: rgba(250, 243, 227, 0.85); }
.breadcrumbs a:hover { color: var(--gold-soft); }

/* --- Menu Page --- */
.menu-nav {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow-x: auto;
}
.menu-nav-inner {
  display: flex;
  gap: 4px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  white-space: nowrap;
}
.menu-nav a {
  flex-shrink: 0;
  padding: 8px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  border-radius: 999px;
  transition: all 0.2s;
}
.menu-nav a:hover { background: var(--cream-deep); color: var(--red); }
.menu-nav a.active { background: var(--red); color: var(--cream); }

.menu-section {
  padding: 72px 0 56px;
}
.menu-section:nth-of-type(even) { background: var(--cream-deep); }
.menu-section-header {
  margin-bottom: 48px;
  text-align: center;
}
.menu-section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.menu-section-header p {
  color: var(--taupe);
  font-size: 17px;
  max-width: 620px;
  margin: 12px auto 0;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .menu-items { grid-template-columns: 1fr; gap: 28px; }
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.menu-item-left {
  flex: 1;
}
.menu-item-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-item-name .chili {
  color: var(--red);
  font-size: 12px;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.5;
}
.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--red);
  white-space: nowrap;
}
.menu-item.signature .menu-item-name::after {
  content: 'Signature';
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 4px;
}

/* --- Mobile sticky CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  gap: 10px;
  z-index: 90;
}
.mobile-cta .btn { flex: 1; padding: 14px 12px; font-size: 12px; min-height: 48px; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 1000;
  font-size: 13px;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* --- Cuban tile divider accent --- */
.divider-cuban {
  height: 12px;
  background: linear-gradient(90deg,
    var(--red) 0%, var(--red) 33.33%,
    var(--cream) 33.33%, var(--cream) 66.66%,
    var(--gold) 66.66%, var(--gold) 100%);
  position: relative;
}
.divider-cuban::before, .divider-cuban::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 21, 18, 0.12);
}
.divider-cuban::before { top: 0; }
.divider-cuban::after { bottom: 0; }

/* ============================================
   JORGE BRAND BANNERS — anti-copy hardening
   ============================================ */
body { padding-top: 34px; }
.site-header { top: 34px; }

.jr-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background: linear-gradient(90deg, #1A1512 0%, #2E2520 50%, #1A1512 100%);
  color: var(--gold-soft);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(232, 163, 61, 0.3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.jr-topbar strong {
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 2px;
}
.jr-topbar a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
.jr-topbar a:hover { color: var(--gold); }
.jr-topbar .jr-dot { opacity: 0.4; font-size: 14px; line-height: 1; }

.jr-corner {
  position: fixed;
  bottom: 16px;
  background: rgba(26, 21, 18, 0.95);
  color: var(--gold-soft);
  padding: 10px 16px;
  z-index: 99;
  border: 1px solid rgba(232, 163, 61, 0.4);
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.45;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
}
.jr-corner-left { left: 16px; }
.jr-corner-right { right: 16px; }
.jr-corner strong {
  display: block;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 2px;
}
.jr-corner a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
.jr-corner a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .jr-corner { display: none; }
}
@media (max-width: 640px) {
  .jr-topbar { font-size: 10px; padding: 0 10px; letter-spacing: 0.06em; gap: 8px; }
  .jr-topbar strong { font-size: 13px; }
  .jr-topbar .jr-hide-sm { display: none; }
}

/* iOS safe-area */
@supports (padding: env(safe-area-inset-left)) {
  .mobile-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    padding-left: calc(16px + env(safe-area-inset-left));
    padding-right: calc(16px + env(safe-area-inset-right));
  }
}

/* Mobile fine-tuning */
@media (max-width: 640px) {
  .topbar { padding: 8px 0; font-size: 11px; }
  .hero { min-height: auto; padding: 64px 0; }
  .hero-display { font-size: 72px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { gap: 14px; font-size: 12px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; }
  .page-header { padding: 72px 0 56px; }
  .nav-cta .btn { padding: 12px 18px; font-size: 12px; }
  .location-card { padding: 24px 22px; }
  .map-wrap { min-height: 280px; }
  .menu-nav { top: 64px; }
  .menu-nav a { font-size: 15px; padding: 6px 14px; }
  .menu-item-name { font-size: 17px; }
  .menu-item-price { font-size: 20px; }
  .site-footer { padding: 56px 0 110px; }
  .footer-brand { font-size: 34px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; min-height: 48px; }
  .btn { min-height: 48px; }
  .quote-card { padding: 36px 26px; }
  .quote-card p { font-size: 19px; }
  .signature-image::after { width: 100px; height: 100px; }
}

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