/* ================================================
   CALVERT CORNER DELI & MARKET — STYLESHEET
   Red & White theme, modern premium design
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  --red: #C8102E;
  --red-dark: #9B0C23;
  --red-light: #E8203F;
  --red-ultra: #FF2040;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #FFF5F5;
  --gray-50: #F9F9F9;
  --gray-100: #F3F3F3;
  --gray-200: #E8E8E8;
  --gray-400: #9A9A9A;
  --gray-600: #666666;
  --gray-800: #2A2A2A;
  --black: #111111;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 88px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
  --shadow-red: 0 8px 32px rgba(200, 16, 46, .25);
  --trans: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  /* Always reserve scrollbar space so it never causes layout shift on hover */
  overflow-y: scroll;
  scrollbar-gutter: stable;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(200, 16, 46, .08);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.desktop-br {
  display: block;
}

@media(max-width: 600px) {
  .desktop-br {
    display: none;
  }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 16, 46, .1);
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
}

.nav-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  flex-shrink: 0;
  /* Give logo a small white pill so red branding reads cleanly on any navbar bg */
  background: #fff;
  border-radius: 12px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  transition: box-shadow .2s;
}

.nav-logo:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform .2s;
}

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

/* Shrink logo on mobile so it fits in the navbar */
@media (max-width: 900px) {
  .logo-img {
    height: 44px;
  }

  .nav-logo {
    padding: 3px 6px;
    border-radius: 10px;
  }
}

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

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s ease;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-order-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 9px;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Brand wordmark SVGs for Uber Eats / DoorDash buttons */
.btn-icon-brand {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.order-btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 16, 46, .3);
}

.order-btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, .4);
}

/* Brand-logo pill buttons (Uber Eats / DoorDash PNGs on white) */
.order-btn--brand-white {
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, .12);
  border-radius: 30px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .1);
  transition: box-shadow .2s, transform .2s;
}

.order-btn--brand-white:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--trans);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: var(--trans);
}

.mobile-link:hover {
  background: var(--cream);
  color: var(--red);
}

.mobile-order-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.mobile-order-btns .order-btn {
  justify-content: center;
  padding: 12px 16px;
  font-size: .9rem;
}

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

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

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

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

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .55) 0%,
      rgba(0, 0, 0, .45) 50%,
      rgba(0, 0, 0, .72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .9s ease .1s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, .15);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
  animation: fadeUp .9s ease .2s both;
}

.hero-accent {
  color: var(--red-ultra);
  text-shadow: 0 0 40px rgba(255, 32, 64, .5);
}

.hero-accent--yellow {
  color: #ffd23f;
  text-shadow: 0 0 40px rgba(255, 210, 63, .45), 0 2px 10px rgba(0, 0, 0, .5);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 36px;
  animation: fadeUp .9s ease .3s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .4s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 12px;
  transition: var(--trans);
  letter-spacing: .01em;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
}

.cta-btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.cta-btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 16, 46, .5);
}

.cta-btn--secondary {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(10px);
}

.cta-btn--secondary:hover {
  background: rgba(255, 255, 255, .25);
  border-color: var(--white);
  transform: translateY(-3px);
}

.cta-btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  animation: fadeUp .9s ease .5s both;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .7);
  animation: bounce 2.5s infinite;
  transition: color .3s;
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ================================================
   DELIVERY BANNER
   ================================================ */
.delivery-banner {
  background: var(--black);
  padding: 20px 0;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-text {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  transition: var(--trans);
}

.banner-btn--primary {
  background: var(--red);
  color: var(--white);
}

.banner-btn--primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.banner-btn--dark {
  background: #333;
  color: var(--white);
}

.banner-btn--dark:hover {
  background: #444;
  transform: translateY(-2px);
}

.banner-btn--red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

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

/* Uber Eats brand banner button — black bg */
.banner-btn--uber-brand {
  background: #000;
  color: #06C167;
  padding: 10px 20px;
}

.banner-btn--uber-brand:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* DoorDash brand banner button — red */
.banner-btn--door-brand {
  background: #FF3008;
  color: var(--white);
  padding: 10px 20px;
}

.banner-btn--door-brand:hover {
  background: #e02800;
  transform: translateY(-2px);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-text .section-title {
  text-align: left;
}

.about-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  transition: var(--trans);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
}

.feature-item span {
  display: block;
  font-size: .8rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* About section tag pills */
.about-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--cream);
  border: 1.5px solid var(--gray-200);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: var(--trans);
}

.about-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* About info stack — replaces duplicate cover photo */
.about-info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  transition: var(--trans);
}

.about-info-card--red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.about-info-card--dark {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-info-card--outline {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.about-info-card:hover {
  transform: translateY(-3px) translateX(4px);
}

.aic-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.aic-body strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-info-card--red .aic-body strong,
.about-info-card--dark .aic-body strong {
  color: rgba(255, 255, 255, .9);
}

.about-info-card--outline .aic-body strong {
  color: var(--black);
}

.aic-body span {
  font-size: .88rem;
  line-height: 1.5;
}

.about-info-card--red .aic-body span,
.about-info-card--dark .aic-body span {
  color: rgba(255, 255, 255, .75);
}

.about-info-card--outline .aic-body span {
  color: var(--gray-600);
}

.about-info-card a {
  color: inherit;
  font-weight: 600;
}

/* Keep old badge-card for potential backward compat */
.about-badge-card strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
}

.about-badge-card span {
  font-size: .78rem;
  color: var(--gray-600);
}

/* ================================================
   MENU SECTION
   ================================================ */
.menu-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, var(--white) 100%);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.menu-tab {
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: var(--trans);
}

.menu-tab:hover {
  border-color: var(--red);
  color: var(--red);
}

.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200, 16, 46, .3);
}

/* Menu Panels */
.menu-panels {
  position: relative;
}

.menu-panel {
  display: none;
  animation: fadeIn .35s ease;
}

.menu-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Specials Strip */
.specials-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.special-tag {
  background: #FFF3CD;
  border: 1.5px solid #F59E0B;
  color: #92400E;
  font-size: .84rem;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
}

.menu-hours-badge {
  text-align: center;
  background: var(--cream);
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-block;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity .3s;
}

.menu-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 16, 46, .2);
  transform: translateX(2px);
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item--note {
  grid-column: 1 / -1;
}

.item-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  flex: 1;
}

.item-name em {
  color: var(--gray-400);
  font-style: italic;
  font-size: .82rem;
}

.item-price {
  font-size: .92rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

/* Full Menu Images */
.menu-images-section {
  margin-top: 64px;
  text-align: center;
}

.menu-img-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}

.menu-imgs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
}

.menu-img-card img {
  width: 100%;
  transition: transform .5s ease;
}

.menu-img-card:hover img {
  transform: scale(1.03);
}

.menu-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}

/* Menu CTA */
.menu-cta {
  margin-top: 56px;
  text-align: center;
  padding: 48px;
  background: var(--red);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.menu-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: .95;
}

.menu-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-cta .cta-btn--primary {
  background: var(--white);
  color: var(--red);
}

.menu-cta .cta-btn--primary:hover {
  background: rgba(255, 255, 255, .9);
}

.menu-cta .cta-btn--secondary {
  border-color: rgba(255, 255, 255, .6);
}

.menu-cta .cta-btn--secondary:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

.menu-cta .cta-btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.menu-cta .cta-btn--outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.instagram-section {
  padding: 100px 0;
  background: var(--white);
}

.instagram-widget-area {
  max-width: 900px;
  margin: 0 auto;
}

.ig-placeholder {
  border: 2px dashed rgba(200, 16, 46, .3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  background: var(--cream);
}

.ig-placeholder-inner {
  max-width: 520px;
  margin: 0 auto;
}

.ig-icon {
  width: 64px;
  height: 64px;
  color: var(--red);
  margin: 0 auto 20px;
  stroke-width: 1.2;
}

.ig-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 12px;
}

.ig-placeholder p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 28px;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D, #F77737);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(225, 48, 108, .35);
}

.ig-follow-btn svg {
  width: 20px;
  height: 20px;
}

.ig-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(225, 48, 108, .5);
}

.ig-note {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 28px;
  padding: 14px;
  background: var(--gray-100);
  border-radius: 8px;
}

.ig-note a {
  color: var(--red);
  font-weight: 600;
}

.ig-note a:hover {
  text-decoration: underline;
}

.ig-note code {
  background: var(--gray-200);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: .78rem;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  transition: var(--trans);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 4px;
}

.info-card span {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.info-card a {
  color: var(--gray-800);
  font-weight: 500;
}

.info-card a:hover {
  color: var(--red);
}

.hours-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-top: 4px;
}

.hours-block h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

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

.hours-row--closed span:last-child {
  color: var(--gray-400);
  font-style: italic;
}

.hours-note {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 12px;
  font-style: italic;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, .75);
  padding-top: 64px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  height: 72px;
  width: auto;
  /* On the dark footer the red + white logo reads perfectly */
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(0, 0, 0, .3));
  border-radius: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: rgba(255, 255, 255, .7);
  transition: var(--trans);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-links-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  padding: 5px 0;
  transition: color .25s;
}

.footer-links-col a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

/* ================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-order-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrap {
    aspect-ratio: 16/9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 340px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .hero-stats {
    gap: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .menu-imgs-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-brand p {
    max-width: 100%;
  }

  .menu-cta {
    padding: 32px 24px;
  }

  .ig-placeholder {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .banner-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* ================================================
   PHOTO GALLERY
   ================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--black);
}

.gallery-section .section-label {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, .55);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: #1a1a1a;
}

.gallery-item--wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}



.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, .75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   INSTAGRAM CARD — horizontal layout
   ================================================ */
.ig-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--cream);
  border: 1.5px solid rgba(200, 16, 46, .2);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  max-width: 860px;
  margin: 0 auto;
}

.ig-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ig-card-icon {
  width: 72px;
  height: 72px;
  color: var(--red);
  stroke-width: 1.2;
}

.ig-handle {
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .03em;
}

.ig-card-right {
  flex: 1;
}

.ig-card-right>p:first-child {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D, #F77737);
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(225, 48, 108, .35);
}

.ig-follow-btn:hover {
  box-shadow: 0 8px 28px rgba(225, 48, 108, .6);
  filter: brightness(1.08);
}

.ig-owner-note {
  font-size: .78rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 16px;
}

.ig-owner-note a {
  color: var(--red);
  font-weight: 600;
}

.ig-owner-note a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ig-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
}

/* Footer hours note */
.footer-hours-note {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
  margin-top: 6px;
}

/* ================================================
   PHOTO CAROUSEL
   ================================================ */
.gallery-section {
  padding: 80px 0;
  background: var(--off-white, #f8f8f6);
}

.carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .14);
  background: #111;
}

.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  user-select: none;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .01em;
}

/* Arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, box-shadow .2s;
  z-index: 10;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev {
  left: 16px;
}

.carousel-btn--next {
  right: 16px;
}

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, .75);
}

/* Responsive carousel */
@media (max-width: 640px) {
  .carousel-slide img {
    height: 280px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ================================================
   INSTAGRAM FOLLOW ROW
   ================================================ */
.ig-follow-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

/* Juicer feed override — isolate layout so hover animations
   inside the widget don't cause the rest of the page to reflow */
.instagram-widget-area {
  position: relative;
  /* Promote to own layer to absorb Juicer's internal repaints */
  transform: translateZ(0);
  will-change: transform;
}

.juicer-feed,
#juicer-feed {
  /* Contain layout/style changes inside the widget */
  contain: layout style;
  /* Prevent any internal overflow from shifting outer layout */
  overflow: hidden;
}

/* Freeze Juicer item hover transforms so they don't reflow the page */
.j-image,
.j-entry,
.j-meta {
  will-change: auto;
  backface-visibility: hidden;
}

.j-poster,
.juicer-feed h1.referral {
  display: none !important;
}

/* Lightbox fadeIn keyframe (used by JS) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Gallery section header — dark text on light background */
.section-header--dark .section-label,
.section-header--dark .section-title,
.section-header--dark .section-subtitle {
  color: var(--gray-900, #111);
}

.section-header--dark .section-label {
  color: var(--red);
  background: rgba(200, 16, 46, .08);
}

/* About grid — centered single column */
.about-grid--centered {
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.about-text--centered {
  text-align: center;
  max-width: 720px;
}

.about-text--centered .section-label {
  display: inline-block;
}

.about-text--centered .about-desc {
  text-align: center;
}

/* ================================================
   MENU BOARDS (2-image photo grid)
   ================================================ */
.menu-boards {
  padding: 80px 0;
  background: var(--off-white, #f8f8f6);
}

.menu-boards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-board-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .12);
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
}

.menu-board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.menu-board-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.menu-board-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .menu-boards-grid {
    grid-template-columns: 1fr;
  }
}

/* Lazy-loaded images fade in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}