/* ===================== Base ===================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

::selection {
  background: #E42313;
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #E42313;
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

a, button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #E42313;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===================== Reveal on scroll ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,.8,.28,1), transform 0.7s cubic-bezier(.16,.8,.28,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ===================== Marquee announcement bar ===================== */
.marquee-bar {
  background: #1A1512;
  color: #FFF7ED;
  overflow: hidden;
  padding: 8px 0;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 0;
}
.marquee-group > span {
  padding: 0 14px;
}
.marquee-group .dot {
  color: #E42313;
  padding: 0 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== Navbar ===================== */
.nav-floating {
  position: fixed;
  top: calc(40px + env(safe-area-inset-top));
  left: calc(16px + env(safe-area-inset-left));
  right: calc(16px + env(safe-area-inset-right));
  z-index: 50;
  transition: top 0.35s ease;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 247, 237, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid #1A1512;
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: 4px 4px 0 rgba(26,21,18,0.9);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav-floating.is-scrolled .nav-inner {
  padding: 6px 12px 6px 18px;
  box-shadow: 3px 3px 0 rgba(26,21,18,0.9);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-word {
  font-family: 'Permanent Marker', cursive;
  color: #E42313;
  font-size: 22px;
}
.nav-logo-tag {
  font-family: 'Anton', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #1A1512;
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-weight: 600;
  font-size: 14px;
}
.nav-links a {
  position: relative;
  padding: 4px 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: #E42313;
  transition: right 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-cta {
  display: none !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #1A1512;
  background: #E42313;
  flex-shrink: 0;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-floating { top: calc(20px + env(safe-area-inset-top)); }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex !important; }
  .nav-toggle { display: none; }
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: #FFF7ED;
  z-index: 60;
  padding: 110px 32px calc(40px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 3px solid #1A1512;
  transition: right 0.4s cubic-bezier(.16,.8,.28,1);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
}
.mobile-menu a { display: inline-block; }
.mobile-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #E42313;
  margin-top: auto;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,21,18,0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================== Buttons ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E42313;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid #1A1512;
  box-shadow: 4px 4px 0 rgba(26,21,18,1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 44px;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(26,21,18,1);
  background: #C81C0E;
}
.btn-primary:active {
  transform: translate(0,0);
  box-shadow: 2px 2px 0 rgba(26,21,18,1);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #1A1512;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid #1A1512;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  min-height: 44px;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: #1A1512;
  color: #fff;
  transform: translate(-2px,-2px);
}
.btn-ghost-light {
  border-color: #FFF7ED;
  color: #FFF7ED;
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible {
  background: #FFF7ED;
  color: #1A1512;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,21,18,0.55) 0%, rgba(26,21,18,0.35) 35%, rgba(26,21,18,0.85) 100%);
}

.hero-content {
  position: relative;
  padding: 140px 24px 90px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  width: 100%;
}
.badge-eyebrow {
  display: inline-block;
  background: #E42313;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-title {
  line-height: 0.9;
  margin-bottom: 6px;
}
.hero-title-word {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(64px, 16vw, 160px);
  color: #E42313;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-tagline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 34px;
  color: #F4E9DD;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero-actions .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.hero-actions .btn-ghost:hover, .hero-actions .btn-ghost:focus-visible {
  background: #fff;
  color: #1A1512;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: none;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 999px;
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 16px); opacity: 0; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}
@media (min-width: 640px) {
  .scroll-cue { display: block; }
}

.menu-sticker {
  position: absolute;
  top: 0;
  right: clamp(16px, 5vw, 60px);
  z-index: 2;
  animation: stickerspin 8s linear infinite;
}
.sticker-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 3px solid #1A1512;
  color: #1A1512;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
@keyframes stickerspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
  .menu-sticker { top: 90px; right: 16px; }
  .sticker-circle { width: 84px; height: 84px; font-size: 10.5px; }
}

/* ===================== Checkerboard marquee divider ===================== */
.check-marquee {
  background: #E42313;
  overflow: hidden;
  border-top: 3px solid #1A1512;
  border-bottom: 3px solid #1A1512;
}
.check-marquee-track {
  display: flex;
  width: max-content;
  animation: checkmarquee 16s linear infinite;
}
.check-marquee-group {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(20px, 5vw, 34px);
  color: #FFF7ED;
  white-space: nowrap;
  padding: 10px 0;
  transform: skewX(-6deg);
}

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

/* ===================== Section shared ===================== */
.eyebrow {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E42313;
  margin-bottom: 10px;
}
.eyebrow-light { color: #FFC9C2; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.05;
  color: #1A1512;
  margin-bottom: 16px;
}
.section-title-light { color: #FFF7ED; }
.section-sub {
  color: #57504C;
  font-size: 16px;
  max-width: 480px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
  padding: 0 24px;
}
.section-head .section-sub { margin: 0 auto; }
.menu-standalone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #F4E9DD;
  border-bottom: 1px solid rgba(244,233,221,0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.menu-standalone-link:hover, .menu-standalone-link:focus-visible {
  color: #E42313;
  border-color: #E42313;
}

/* ===================== Story ===================== */
.story {
  padding: 90px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.story-panel {
  position: relative;
  background: #1A1512;
  border-radius: 24px;
  border: 3px solid #1A1512;
  aspect-ratio: 4/3.2;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 8px 8px 0 rgba(228,35,19,1);
}
.story-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-panel-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,21,18,0.05) 0%, rgba(26,21,18,0.75) 100%);
}
.story-panel-quote {
  position: relative;
  font-family: 'Permanent Marker', cursive;
  color: #FFF7ED;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  padding: 0 28px 26px;
  transform: rotate(-2deg);
}

.story-copy p {
  color: #4A433F;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}
.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: #E42313;
}
.stat-label {
  display: block;
  font-size: 12.5px;
  color: #57504C;
  font-weight: 600;
}

/* ===================== QR menu page ===================== */
.qr-header {
  background: #FFF7ED;
  border-bottom: 3px solid #1A1512;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: calc(14px + env(safe-area-inset-top));
}
.qr-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.qr-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-primary-sm, .btn-ghost-sm {
  padding: 10px 18px !important;
  font-size: 13px !important;
  min-height: 40px;
}
.qr-footer-note {
  text-align: center;
  padding: 18px 24px calc(90px + env(safe-area-inset-bottom));
  font-size: 13px;
  color: #8A817B;
}
.qr-footer-note a { color: #E42313; font-weight: 600; }

/* ===================== Menu ===================== */
.menu-section {
  position: relative;
  background: #1A1512;
  padding: 90px 24px 100px;
}
.menu-page .menu-section {
  padding-top: 40px;
}
.tab-nav {
  position: relative;
  max-width: 720px;
  margin: 0 auto 44px;
}
.tab-list-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}
.tab-list-wrap::-webkit-scrollbar { display: none; }
.tab-list {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: max-content;
  min-width: 100%;
  touch-action: pan-x;
}
@media (min-width: 720px) {
  .tab-list { justify-content: center; }
}

.tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1A1512;
  border: 2px solid rgba(244,233,221,0.4);
  color: #F4E9DD;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.tab-arrow:hover { background: #E42313; border-color: #E42313; }
.tab-arrow-left { left: -6px; }
.tab-arrow-right { right: -6px; }
.tab-arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 480px) {
  .tab-arrow-left { left: -17px; }
  .tab-arrow-right { right: -17px; }
}
.tab-btn {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #F4E9DD;
  background: transparent;
  border: 2px solid rgba(244,233,221,0.3);
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  min-height: 44px;
}
.tab-btn:hover { border-color: #E42313; transform: translateY(-2px); }
.tab-btn.is-active {
  background: #E42313;
  border-color: #E42313;
  color: #fff;
}

.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: fadein 0.5s ease;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.menu-card {
  background: #24201C;
  border: 2px solid rgba(244,233,221,0.12);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: #E42313;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.menu-card-feature {
  grid-column: span 1;
}
@media (min-width: 640px) {
  .menu-card-feature { grid-column: span 2; }
  .menu-card-feature .menu-card-media { aspect-ratio: 21/9; }
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1A1512;
}
.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-media img {
  transform: scale(1.06);
}
.chip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFF7ED;
  color: #1A1512;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid #1A1512;
}

.menu-card-body { padding: 22px; }
.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-card-top h3 {
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  color: #FFF7ED;
  letter-spacing: 0.01em;
}
.menu-card-top .price {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: #E42313;
  flex-shrink: 0;
}
.menu-card-body p {
  color: #B8AFA9;
  font-size: 14px;
  line-height: 1.55;
}

/* ===================== Gallery ===================== */
.gallery {
  padding: 90px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #1A1512;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(228,35,19,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.follow-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #1A1512;
}
.follow-cta span { color: #E42313; }

/* ===================== Visit ===================== */
.visit {
  background: #E42313;
  padding: 90px 24px;
  color: #FFF7ED;
}
.visit-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
}
.visit-block { margin-bottom: 26px; }
.visit-block h3 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.visit-block p { line-height: 1.7; font-size: 16px; }
.visit-block em { opacity: 0.75; font-style: italic; font-size: 13px; }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,247,237,0.25);
  padding-bottom: 8px;
  max-width: 340px;
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.visit-actions .btn-primary {
  background: #1A1512;
}
.visit-actions .btn-primary:hover {
  background: #24201C;
}

.visit-map { display: flex; flex-direction: column; align-items: center; }
.map-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #FFF7ED;
  text-align: center;
}
.map-embed {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  border: 3px solid #1A1512;
  overflow: hidden;
  background: #F4E9DD;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.map-link-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  background: linear-gradient(180deg, rgba(26,21,18,0) 60%, rgba(26,21,18,0.35) 100%);
  transition: background 0.25s ease;
}
.map-link-overlay:hover, .map-link-overlay:focus-visible {
  background: linear-gradient(180deg, rgba(26,21,18,0.05) 40%, rgba(26,21,18,0.5) 100%);
}
.map-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1A1512;
  color: #FFF7ED;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid #FFF7ED;
  transition: transform 0.25s ease, background 0.25s ease;
}
.map-link-overlay:hover .map-cta, .map-link-overlay:focus-visible .map-cta {
  background: #E42313;
  transform: translateY(-3px);
}

/* ===================== Footer ===================== */
.footer {
  background: #1A1512;
  color: #F4E9DD;
  padding-top: 56px;
}
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: baseline; gap: 10px; }
.footer-logo {
  font-family: 'Permanent Marker', cursive;
  color: #E42313;
  font-size: 26px;
}
.footer-tag {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #B8AFA9;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
}
.footer-links a:hover { color: #E42313; }
.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #F4E9DD;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer-social:hover {
  background: #E42313;
  border-color: #E42313;
}

.check-strip {
  height: 14px;
  background-image: conic-gradient(#E42313 90deg, #FFF7ED 90deg 180deg, #E42313 180deg 270deg, #FFF7ED 270deg);
  background-size: 14px 14px;
}

.footer-bottom {
  text-align: center;
  padding: 22px 24px;
  font-size: 12.5px;
  color: #8A817B;
}

/* ===================== Back to top button ===================== */
.back-to-top {
  position: fixed;
  left: calc(20px + env(safe-area-inset-left));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1A1512;
  color: #FFF7ED;
  border-radius: 50%;
  border: 2px solid #FFF7ED;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #E42313;
  border-color: #E42313;
}

/* ===================== Sticky call button ===================== */
.call-button {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right));
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1A1512;
  color: #FFF7ED;
  border: 2px solid #FFF7ED;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.call-button:hover {
  background: #E42313;
  border-color: #E42313;
  transform: translateY(-2px);
}

/* ===================== Sticky order button ===================== */
.sticky-order {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E42313;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid #1A1512;
  box-shadow: 4px 4px 0 rgba(26,21,18,1);
  transition: background 0.2s ease, transform 0.2s ease;
  min-height: 44px;
}
.sticky-order:hover {
  background: #C81C0E;
  transform: translateY(-2px);
}
