/* ===================================================
   MR. HOT BUNZ — Plain CSS (no Tailwind, no framework)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --bg:        hsl(32, 100%, 97%);
  --fg:        hsl(15, 37%, 12%);
  --primary:   hsl(4, 66%, 46%);
  --secondary: hsl(43, 80%, 46%);
  --accent:    hsl(24, 85%, 45%);
  --border:    hsl(32, 50%, 90%);
  --muted-fg:  hsl(15, 20%, 40%);
  --shadow:    rgba(44, 26, 20, 1);
  --shadow-white: rgba(255, 255, 255, 1);
  --font-body:    'Outfit', sans-serif;
  --font-display: 'Bricolage Grotesque', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }
input, select, textarea { font-size: 1rem; }
ul { list-style: none; }

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  color: var(--fg);
  background-color: var(--bg);
  background-image:
    radial-gradient(#d35400 0.5px, transparent 0.5px),
    radial-gradient(#d35400 0.5px, hsl(32, 100%, 97%) 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 100vmax rgba(255, 249, 242, 0.95);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }


/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}
@keyframes bounceSlow {
  0%, 100% { transform: translateY(-5%) rotate(-12deg); }
  50%       { transform: translateY(0) rotate(-12deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes spinBounce {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(12deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 600px; opacity: 1; }
}
@keyframes slideUp {
  from { max-height: 600px; opacity: 1; }
  to   { max-height: 0; opacity: 0; }
}

.anim-float   { animation: float 4s ease-in-out infinite; }
.anim-pulse   { animation: pulse 2s ease-in-out infinite; }
.anim-bounce  { animation: bounceSlow 3s ease-in-out infinite; }

/* Page-load fade-up for hero */
.hero-text { animation: fadeUp 0.6s ease both; }
.hero-text-1 { animation-delay: 0s; }
.hero-text-2 { animation-delay: 0.1s; }
.hero-text-3 { animation-delay: 0.2s; }
.hero-text-4 { animation-delay: 0.3s; }
.hero-circle { animation: fadeIn 0.5s ease 0.2s both; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
}
#navbar.scrolled {
  background: rgba(255, 249, 242, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.nav-logo-circle {
  width: 44px; height: 44px;
  background: #000;
  border-radius: 50%;
  border: 2px solid var(--fg);
  box-shadow: 2px 2px 0 0 var(--shadow);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-circle {
  box-shadow: 4px 4px 0 0 var(--shadow);
  transform: translateY(-2px);
}
.nav-logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .nav-logo-circle { width: 48px; height: 48px; }
  .nav-logo-text { font-size: 1.75rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-book-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid var(--fg);
  box-shadow: 3px 3px 0 0 var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.nav-book-btn:hover {
  box-shadow: 5px 5px 0 0 var(--shadow);
  transform: translateY(-2px);
  color: #fff;
}

/* Mobile hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0.25rem;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--fg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 0.5rem 1rem 1rem; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  color: var(--fg);
}
.mobile-nav-link.active { color: var(--primary); }
.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--fg);
  box-shadow: 3px 3px 0 0 var(--shadow);
  text-align: center;
  text-decoration: none;
}

/* ===== PAGE WRAPPER (account for fixed nav) ===== */
.page-content { padding-top: 80px; }

/* ===== HOME — HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 7rem;
    align-items: flex-start;
  }
}
.hero-bg-right {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: hsla(43, 80%, 46%, 0.2);
  border-radius: 9999px 0 0 9999px;
  filter: blur(80px);
  transform: translateX(33%);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-left {
  position: absolute;
  bottom: 0; left: 0;
  width: 33%; height: 66%;
  background: hsla(4, 66%, 46%, 0.1);
  border-radius: 0 9999px 9999px 0;
  filter: blur(80px);
  transform: translateX(-25%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Hero text side */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 2px solid var(--fg);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 4px 4px 0 0 var(--shadow);
  margin-bottom: 2rem;
  transform: rotate(-2deg);
  color: var(--fg);
}
.hero-h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-h1 .red   { color: var(--primary);   filter: drop-shadow(4px 4px 0 var(--shadow)); }
.hero-h1 .gold  { color: var(--secondary); filter: drop-shadow(4px 4px 0 var(--shadow)); }
.hero-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: hsla(15, 37%, 12%, 0.8);
  max-width: 38rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.5rem; } }
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  box-shadow: 2px 2px 0 0 var(--shadow);
  transform: translate(4px, 4px);
  color: #fff;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn-white:hover {
  box-shadow: 2px 2px 0 0 var(--shadow);
  transform: translate(4px, 4px);
  color: var(--fg);
}

/* Hero circle (right side) */
.hero-circle-wrap {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-circle-wrap { height: 600px; } }
.hero-circle-shadow {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border-radius: 50%;
  transform: rotate(-6deg) scale(0.95);
  border: 4px solid var(--fg);
  box-shadow: 12px 12px 0 0 var(--shadow);
}
.hero-circle-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--fg);
  background: #000;
}
.hero-circle-media video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(2.2);
}

/* Floating mascot bubble */
.hero-mascot-bubble {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 12rem; height: 12rem;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--fg);
  box-shadow: 8px 8px 0 0 var(--shadow);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) {
  .hero-mascot-bubble { left: -4rem; width: 16rem; height: 16rem; }
}
.hero-mascot-bubble img { width: 100%; height: 100%; object-fit: contain; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--fg);
  color: var(--bg);
  padding: 2rem 0;
  border-top: 8px solid var(--primary);
  border-bottom: 8px solid var(--primary);
  position: relative;
  z-index: 10;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .trust-strip-inner { gap: 4rem; } }
.trust-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .trust-stat-num { font-size: 3rem; } }
.trust-stat-label {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}
@media (min-width: 768px) { .trust-stat-label { font-size: 1rem; } }

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: #fff;
  position: relative;
}
.services-dots {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(#C0392B 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.section-title .red  { color: var(--primary); }
.section-title .gold { color: var(--secondary); }
.section-title .white { color: #fff; filter: drop-shadow(3px 3px 0 var(--shadow)); }
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: hsla(15, 37%, 12%, 0.8);
  line-height: 1.6;
}
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  background: var(--bg);
  border: 4px solid var(--fg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 6px 6px 0 0 var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 10px 10px 0 0 var(--shadow);
  transform: translateY(-8px);
}
.service-icon {
  width: 4rem; height: 4rem;
  border-radius: 0.75rem;
  border: 2px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 4px 4px 0 0 var(--shadow);
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
  color: #fff;
}
.service-card:hover .service-icon { transform: rotate(12deg); }
.icon-red    { background: var(--primary); }
.icon-gold   { background: var(--secondary); color: var(--fg) !important; }
.icon-accent { background: var(--accent); }
.icon-dark   { background: var(--fg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card p { font-weight: 500; color: hsla(15, 37%, 12%, 0.7); }

/* ===== MENU TEASER ===== */
.menu-teaser {
  padding: 6rem 0;
  background: var(--secondary);
  border-top: 4px solid var(--fg);
  border-bottom: 4px solid var(--fg);
}
.menu-teaser-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
@media (min-width: 768px) { .menu-teaser-header { flex-direction: row; } }
.menu-teaser-title { font-size: clamp(2.5rem, 5vw, 3.75rem); text-transform: uppercase; margin-bottom: 1rem; }
.menu-teaser-sub { font-size: 1.25rem; font-weight: 700; color: hsla(15, 37%, 12%, 0.8); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 4px 4px 0 0 var(--shadow);
  text-transform: uppercase;
  white-space: nowrap;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-dark:hover {
  box-shadow: 2px 2px 0 0 var(--shadow);
  transform: translate(2px, 2px);
  color: var(--fg);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .teaser-grid { grid-template-columns: 1fr 1fr 1fr; } }

.teaser-card {
  background: #fff;
  border: 4px solid var(--fg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 0 var(--shadow);
  display: flex;
  flex-direction: column;
}
/* 3rd teaser card: hide on mobile & tablet, show on desktop */
.teaser-card-3 { display: none; }
@media (min-width: 1024px) { .teaser-card-3 { display: flex; } }

.teaser-badge {
  display: inline-block;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--fg);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  width: fit-content;
  color: #fff;
}
.badge-red    { background: var(--primary); transform: rotate(-3deg); display: block; }
.badge-accent { background: var(--accent);  transform: rotate(2deg);  display: block; }
.badge-dark   { background: var(--fg);      transform: rotate(-2deg); display: block; }
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.teaser-items { flex: 1; }
.teaser-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.teaser-items li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ===== HOME CTA ===== */
.home-cta {
  padding: 6rem 0;
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.home-cta-bg-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  pointer-events: none;
}
.home-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  filter: drop-shadow(4px 4px 0 var(--shadow));
  line-height: 1.05;
}
.home-cta p { font-size: 1.25rem; font-weight: 700; max-width: 40rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .home-cta p { font-size: 1.5rem; } }
.home-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .home-cta-btns { flex-direction: row; } }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  border: 4px solid var(--fg);
  box-shadow: 8px 8px 0 0 var(--shadow);
  text-transform: uppercase;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 640px) { .btn-cta-white { width: auto; } }
.btn-cta-white:hover {
  box-shadow: 4px 4px 0 0 var(--shadow);
  transform: translate(4px, 4px);
  color: var(--fg);
}
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--fg);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  border: 4px solid #fff;
  box-shadow: 8px 8px 0 0 var(--shadow-white);
  text-transform: uppercase;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 640px) { .btn-cta-dark { width: auto; } }
.btn-cta-dark:hover {
  box-shadow: 4px 4px 0 0 var(--shadow-white);
  transform: translate(4px, 4px);
}
.cta-or { font-weight: 900; font-size: 1.5rem; font-style: italic; }

/* ===== MENU PAGE ===== */
.menu-header {
  background: var(--secondary);
  border-bottom: 8px solid var(--fg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.menu-header-dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#2C1A14 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
}
.menu-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .menu-header-inner { flex-direction: row; gap: 4rem; }
}
.menu-header-left { flex: 1; text-align: center; }
@media (min-width: 1024px) { .menu-header-left { text-align: left; } }
.menu-mascot-circle {
  width: 6rem; height: 6rem;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  transform: rotate(-6deg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  display: inline-flex;
}
.menu-mascot-circle img { width: 100%; height: 100%; object-fit: contain; }
.menu-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 0 rgba(255,255,255,0.5));
}
.menu-header h1 .white { color: #fff; filter: drop-shadow(4px 4px 0 var(--shadow)); }
.menu-price-box {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsla(15, 37%, 12%, 0.9);
  background: rgba(255,255,255,0.4);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--fg);
  line-height: 1.4;
}
.menu-price-box .price { color: var(--primary); font-weight: 900; font-size: 1.875rem; }

.menu-food-circle {
  position: relative;
  flex-shrink: 0;
  width: 18rem; height: 18rem;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .menu-food-circle { width: 24rem; height: 24rem; } }
.menu-food-circle-shadow {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: rotate(-6deg) scale(0.95);
  border: 4px solid var(--fg);
  box-shadow: 12px 12px 0 0 var(--shadow);
}
.menu-food-circle-img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--fg);
}
.menu-food-circle-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* Packages */
.packages-section { padding: 4rem 0; }
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .packages-grid { grid-template-columns: 1fr 1fr; } }

.package-card {
  background: #fff;
  border: 4px solid var(--fg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 0 var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.package-card:hover {
  box-shadow: 12px 12px 0 0 var(--shadow);
  transform: translateY(-4px);
}
@media (min-width: 768px) { .package-card { padding: 2rem; } }
.package-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--fg);
  box-shadow: 4px 4px 0 0 var(--shadow);
  transform: rotate(3deg);
}
.package-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--border);
}
.package-num {
  width: 3rem; height: 3rem;
  background: var(--secondary);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 0 var(--shadow);
}
.package-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
}
@media (min-width: 768px) { .package-header h2 { font-size: 1.875rem; } }
.package-items { flex: 1; margin-bottom: 1.5rem; }
.package-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: hsla(15, 37%, 12%, 0.8);
}
.package-items li svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* Fine print */
.fine-print-section { padding: 2rem 0; }
.fine-print-box {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--fg);
  color: var(--bg);
  border: 4px solid var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 12px 12px 0 0 var(--primary);
}
@media (min-width: 768px) { .fine-print-box { padding: 3rem; } }
.fine-print-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.fine-print-title-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: #fff;
}
.fine-print-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .fine-print-grid { grid-template-columns: 1fr 1fr; } }
.fine-print-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.fine-print-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}
.fine-print-list strong { color: var(--secondary); }

/* Menu bottom CTA */
.menu-cta { padding: 4rem 0; }
.menu-cta-box {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--primary);
  border: 4px solid var(--fg);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 10px 10px 0 0 var(--shadow);
  text-align: center;
}
.menu-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  filter: drop-shadow(3px 3px 0 var(--shadow));
}
.menu-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .menu-cta-btns { flex-direction: row; justify-content: center; } }
.btn-white-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  text-transform: uppercase;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 640px) { .btn-white-lg { width: auto; } }
.btn-white-lg:hover { box-shadow: 2px 2px 0 0 var(--shadow); transform: translate(4px,4px); color: var(--fg); }
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  text-transform: uppercase;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 640px) { .btn-gold-lg { width: auto; } }
.btn-gold-lg:hover { box-shadow: 2px 2px 0 0 var(--shadow); transform: translate(4px,4px); color: var(--fg); }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 5rem 0; overflow: hidden; }
.about-story-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) { .about-story-grid { flex-direction: row; } }
.about-photo-side {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .about-photo-side { width: 50%; } }
.about-photo-shadow {
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translate(16px, 16px);
  border: 4px solid var(--fg);
  border-radius: 1.5rem;
}
.about-photo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1.5rem;
  border: 4px solid var(--fg);
  object-fit: contain;
  display: block;
}
.about-years-badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--secondary);
  border: 4px solid var(--fg);
  border-radius: 50%;
  width: 8rem; height: 8rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 6px 6px 0 0 var(--shadow);
  animation: bounceSlow 3s ease-in-out infinite;
}
.about-years-badge span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--fg);
}
.about-text-side { width: 100%; }
@media (min-width: 1024px) { .about-text-side { width: 50%; } }
.about-text-side h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-text-side h1 .red { color: var(--primary); filter: drop-shadow(3px 3px 0 var(--shadow)); }
.about-text-side .lead { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.about-text-side .body { font-size: 1.25rem; font-weight: 500; color: hsla(15,37%,12%,0.8); line-height: 1.6; margin-bottom: 2rem; }

/* Why Choose Us */
.why-section {
  padding: 5rem 0;
  background: var(--fg);
  color: var(--bg);
  position: relative;
}
.why-section h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-icon {
  width: 5rem; height: 5rem;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 4px 4px 0 0 rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin: 0 auto 1.5rem;
}
.why-card h3 { font-size: 1.5rem; text-transform: uppercase; color: #fff; margin-bottom: 0.75rem; }
.why-card p { font-weight: 500; color: rgba(255,255,255,0.7); }

/* Contact & FAQ split */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-title { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 1rem; }
.contact-sub { font-size: 1.25rem; font-weight: 500; color: hsla(15,37%,12%,0.8); margin-bottom: 1.5rem; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  border-bottom: 4px solid var(--primary);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: 2.5rem;
  display: inline-flex;
}
.contact-phone:hover { color: var(--fg); border-color: var(--fg); }
.contact-form {
  background: #fff;
  border: 4px solid var(--fg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 8px 8px 0 0 var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(4, 66%, 46%, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 4px solid var(--fg);
  box-shadow: 6px 6px 0 0 var(--shadow);
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
  margin-top: 2rem;
}
.btn-submit:hover {
  box-shadow: 2px 2px 0 0 var(--shadow);
  transform: translate(4px, 4px);
}

/* FAQ */
.faq-title { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 1rem; }
.faq-sub { font-size: 1.25rem; font-weight: 500; color: hsla(15,37%,12%,0.8); margin-bottom: 2.5rem; }
.faq-box {
  background: #fff;
  border: 4px solid var(--fg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 0 var(--shadow);
}
.faq-item {
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-trigger:hover { background: hsla(4,66%,46%,0.05); }
.faq-trigger span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.2s;
}
.faq-item.open .faq-trigger span { color: var(--primary); }
.faq-icon {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, color 0.2s;
  color: var(--fg);
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-icon .bar-h,
.faq-icon .bar-v {
  position: absolute;
  width: 12px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}
.faq-icon .bar-v { transform: rotate(90deg); }
.faq-item.open .faq-icon .bar-v { transform: rotate(0deg); }
.faq-content {
  display: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: hsla(15,37%,12%,0.8);
  border-top: 2px solid var(--border);
  background: #fff;
}
.faq-item.open .faq-content { display: block; }

.service-area-box {
  margin-top: 2rem;
  background: hsla(43,80%,46%,0.2);
  border: 2px solid var(--secondary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.service-area-box svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.service-area-box h4 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.service-area-box p { font-weight: 500; color: hsla(15,37%,12%,0.8); }

/* ===== FOOTER ===== */
footer {
  background: var(--fg);
  color: var(--bg);
  padding: 4rem 0 2rem;
  border-top: 8px solid var(--primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-mascot {
  width: 3rem; height: 3rem;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-mascot img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
}
.footer-tagline { font-weight: 700; color: var(--primary); font-style: italic; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.footer-social:hover { background: var(--primary); color: #fff; }
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a, .footer-col ul li span {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-phone { font-size: 1.5rem; font-weight: 900; color: var(--primary) !important; display: block; margin-bottom: 0.25rem; }
.footer-phone:hover { color: #fff !important; }
.footer-cred-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  color: rgba(255,255,255,0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
/* ── Designer credit (static footer) ── */
.footer-designer-link {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-designer-link:hover {
  color: var(--primary);
}
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-legal-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}
.footer-terms-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-terms-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Mobile sticky bottom bar ── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg);
  border-top: 2px solid var(--fg);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.msb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.msb-menu {
  color: var(--fg);
}
.msb-menu:hover {
  color: var(--primary);
  background: rgba(192,57,43,0.06);
}
.msb-divider {
  width: 2px;
  background: rgba(44,26,20,0.15);
  align-self: stretch;
}
.msb-call {
  color: #fff;
  background: var(--primary);
}
.msb-call:hover {
  background: hsl(4,66%,38%);
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
  }
  main {
    padding-bottom: 5rem;
  }
  footer {
    padding-bottom: 6rem;
  }
}
