/* ═══════════════════════════════════════════════════════════
   MUNCHIES SEAFOOD & GRILL — STYLES
   Palette: Deep Red · Black · Gold · White
   Fonts: Bebas Neue (display) + Barlow (body)
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --red:        #C8102E;
  --red-dark:   #9E0B23;
  --red-light:  #E8203E;
  --gold:       #D4A017;
  --gold-light: #F0C040;
  --black:      #0D0D0D;
  --black-2:    #1A1A1A;
  --black-3:    #242424;
  --black-4:    #2E2E2E;
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --gray-light: #E8E0D0;
  --gray-mid:   #9A9080;
  --text-body:  #2A2A2A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.4);
  --shadow-red: 0 8px 32px rgba(200,16,46,0.35);
  --shadow-gold:0 8px 32px rgba(212,160,23,0.35);

  --header-h:   72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

address { font-style: normal; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  padding: 12px 24px;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--black-4);
}
.btn-ghost:hover {
  border-color: var(--gray-mid);
  background: var(--black-3);
}

.btn-xl { padding: 16px 36px; font-size: 1.1rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Eyebrow / Title ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Reveal Animations ── */
.reveal, .reveal-delay {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-delay {
  transition-delay: 0.15s;
}
.reveal.visible, .reveal-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(200,16,46,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo Badge */
.logo-link { text-decoration: none; flex-shrink: 0; }

.logo-badge {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red-dark);
  box-shadow: 0 0 0 2px rgba(200,16,46,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.3);
}

.logo-badge-sm {
  width: 64px;
  height: 64px;
}

.logo-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.28rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.2;
}

.logo-badge-sm .logo-main { font-size: 0.8rem; }
.logo-badge-sm .logo-sub  { font-size: 0.34rem; }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 50%,
    rgba(200,16,46,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  width: 100%;
}

.hero-badge-wrap {
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 100px;
  background: rgba(212,160,23,0.08);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-title-line1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-title-line2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--red);
}

.hero-tagline {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.4;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-tagline strong {
  color: var(--white);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.65s both;
}

.hero-info-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}
.hero-info-item svg { color: var(--gold); flex-shrink: 0; }

.hero-info-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll-hint span {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  border-top: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.25);
}

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

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  background: var(--black-2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'MUNCHIES';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--black-2);
  box-shadow: var(--shadow-red);
}
.about-img-badge .badge-number {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}
.about-img-badge .badge-city {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.about-img-badge .badge-state {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ══════════════════════════════════════════════
   MENU
══════════════════════════════════════════════ */
.menu {
  background: var(--black);
  padding: 100px 0;
}

/* Tab Nav */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black-3);
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--black-4);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: var(--black-4);
}
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}
.tab-panel.active { display: block; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card-wide {
  grid-column: span 1;
}

/* Menu Card */
.menu-card {
  background: var(--black-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,0.3);
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
}
.hot-tag {
  background: #FF4500 !important;
}

.menu-card-body {
  padding: 20px;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.menu-price {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Flavor Chips */
.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.flavor-chip {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black-3);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--transition);
}
.flavor-chip:hover {
  background: var(--black-4);
  color: var(--white);
}
.flavor-chip.hot {
  background: rgba(255,69,0,0.15);
  border-color: rgba(255,69,0,0.3);
  color: #FF8C5A;
}

/* Menu CTA */
.menu-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.menu-cta p {
  font-size: 1.05rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.menu-cta .btn + .btn { margin-left: 12px; }

/* ══════════════════════════════════════════════
   TACO TUESDAY SPECIAL
══════════════════════════════════════════════ */
.specials {
  background: var(--black-2);
  padding: 0;
  overflow: hidden;
}

.specials-inner {
  background: linear-gradient(135deg, var(--black) 0%, #1A0A00 50%, #2A0A00 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.specials-inner::before {
  content: 'TACO TUESDAY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 15vw;
  color: rgba(212,160,23,0.04);
  white-space: nowrap;
  pointer-events: none;
}

.specials-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.specials-day {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 100px;
  background: rgba(212,160,23,0.08);
}

.specials-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
}

.specials-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.specials-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}
.specials-price {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.specials-price-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.specials-image {
  position: relative;
}
.specials-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.specials-img-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  transform: rotate(4deg);
}

/* ══════════════════════════════════════════════
   HOURS & LOCATION
══════════════════════════════════════════════ */
.hours-location {
  background: var(--black);
  padding: 100px 0;
}

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

.hours-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.03); }

.hours-day {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}
.hours-time {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.hours-time.highlight { color: var(--gold); }

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--black-2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.address-block svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.address-block strong { display: block; color: var(--white); margin-bottom: 2px; }
.address-block span, .address-block p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.address-block a { color: var(--gold); transition: color var(--transition); }
.address-block a:hover { color: var(--gold-light); }

/* Map */
.map-col { position: relative; }

.map-embed {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
}

.map-overlay-pin {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.map-pin-badge {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.map-pin-badge strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.map-pin-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery {
  background: var(--black-2);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-large {
  grid-column: span 2;
}
.gallery-item-large img { height: 360px; }

.gallery-item-tall {
  grid-row: span 2;
}
.gallery-item-tall img { height: 100%; min-height: 360px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 100px 0;
}

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

.contact-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-method:hover {
  border-color: rgba(200,16,46,0.3);
  background: var(--black-3);
  transform: translateX(4px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-method span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-right: 4px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black-3);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 100px;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* CTA Card */
.cta-card {
  background: var(--black-2);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-card-top {
  padding: 40px 32px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}
.cta-card-top h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-card-top p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.cta-card .btn-primary {
  margin: 0;
  border-radius: 0;
  padding: 20px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.cta-hours-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 32px;
  background: var(--black-3);
}
.cta-hours-mini span {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.hours-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hours-mini li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.hours-mini li span:last-child { color: rgba(255,255,255,0.75); }

.footer-col address p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-col address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .specials-content,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-main { height: 380px; }
  .specials-image img { height: 340px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card-wide { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-tall img { min-height: 240px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(200,16,46,0.2);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title-line1 { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-title-line2 { font-size: clamp(1.4rem, 5vw, 2.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-info-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-info-divider { display: none; }
  .hero-scroll-hint { display: none; }

  /* About */
  .about { padding: 64px 0; }
  .about-img-badge { right: 0; bottom: -16px; width: 90px; height: 90px; }
  .about-stats { gap: 20px; }
  .stat-num { font-size: 2.2rem; }

  /* Menu */
  .menu { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-wide { grid-column: span 1; }
  .menu-tabs { gap: 6px; }
  .tab-btn { font-size: 0.8rem; padding: 8px 14px; }

  /* Specials */
  .specials-title { font-size: clamp(3rem, 12vw, 5rem); }
  .specials-price { font-size: 3rem; }

  /* Hours */
  .hours-location { padding: 64px 0; }
  .map-embed { height: 320px; }
  .map-pin-badge { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Gallery */
  .gallery { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item-large { grid-column: span 2; }
  .gallery-item img { height: 180px; }
  .gallery-item-large img { height: 240px; }

  /* Contact */
  .contact { padding: 64px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-top { padding: 48px 0 32px; }

  /* Section titles */
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .gallery-item img,
  .gallery-item-large img { height: 220px; }
  .about-img-main { height: 280px; }
  .menu-cta .btn + .btn { margin-left: 0; margin-top: 12px; }
  .menu-cta { display: flex; flex-direction: column; align-items: center; }
}