/* ==========================================
   Santé Taouk — Bold & Contemporary
   ========================================== */

/* Reset & Variables */
:root {
  --accent: #E42313;
  --dark: #111111;
  --white: #FFFFFF;
  --gray-50: #F5F5F5;
  --gray-100: #E8E8E8;
  --gray-300: #888888;
  --gray-400: #666666;
  --gray-500: #444444;
  --gray-600: #333333;
  --gray-700: #1A1A1A;
  --gray-800: #222222;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
  background: var(--dark);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: grid;
  place-items: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.logo-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gray-300);
  transition: color 200ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 200ms ease, transform 200ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-only { display: none; }

/* ==========================================
   Hero
   ========================================== */
.hero {
  position: relative;
  height: 700px;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  right: 200px;
  bottom: 100px;
  width: 500px;
  height: 500px;
  object-fit: contain;
  object-position: right bottom;
}

.hero-img-mobile {
  display: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  width: 65%;
  background: linear-gradient(to right, #111111 0%, #111111 65%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 60px 0;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228, 35, 19, 0.13);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  margin: 0;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -3px;
}

.hero-subtitle {
  margin: 0;
  font-size: 20px;
  color: #999999;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: flex-start;
}

.hero-buttons-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-btn-full {
  text-align: center;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 200ms ease, transform 200ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border: 2px solid rgba(255, 255, 255, 0.19);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
}

/* ==========================================
   Stats Bar (Infinite Marquee)
   ========================================== */
.stats-bar {
  background: var(--accent);
  height: 100px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  height: 100%;
  align-items: center;
  width: 200vw;
  animation: marquee 20s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100vw); }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.56);
  white-space: nowrap;
}

.stat-icon {
  color: var(--white);
}

.stat-dot {
  display: none;
}

/* ==========================================
   Section Tags & Headings
   ========================================== */
.section-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
}

.section-heading {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--dark);
}

.section-heading--light {
  color: var(--white);
  font-size: 48px;
}

/* ==========================================
   À Propos
   ========================================== */
.about-section {
  padding: 100px 60px;
  scroll-margin-top: var(--header-height);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-400);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 8px;
  background: var(--gray-50);
}

.feature-card--dark {
  background: var(--dark);
}

.feature-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.feature-card--dark .feature-title {
  color: var(--white);
}

.feature-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-400);
}

.feature-card--dark .feature-desc {
  color: var(--gray-300);
}

/* ==========================================
   Menu Section
   ========================================== */
.menu-section {
  background: var(--dark);
  padding: 100px 60px;
  scroll-margin-top: var(--header-height);
}

.menu-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menu-head > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Accordion */
.accordion {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-700);
}

.accordion-item {
  border-bottom: 1px solid var(--gray-600);
}

.accordion-item--last {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  height: 60px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 200ms ease;
}

.accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-chevron {
  color: var(--gray-300);
  transition: transform 300ms ease, color 200ms ease;
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.accordion-content {
  padding: 0 24px 24px;
}

.accordion-content img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-800);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.menu-item-desc {
  font-size: 13px;
  color: var(--gray-400);
}

.menu-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================
   Événements
   ========================================== */
.events-section {
  padding: 100px 60px;
  scroll-margin-top: var(--header-height);
}

.events-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.events-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-banner {
  display: flex;
  background: var(--accent);
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
}

.delivery-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 56px;
  justify-content: center;
}

.delivery-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 14px;
  border-radius: 4px;
}

.delivery-title {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
}

.delivery-desc {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.6;
  max-width: 480px;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: var(--white);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.delivery-img {
  width: 500px;
  flex-shrink: 0;
  background: #111111;
}

.delivery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   Reviews / Avis
   ========================================== */
.reviews-section {
  background: var(--gray-50);
  padding: 100px 60px;
}

.reviews-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.reviews-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews-score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.score-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--dark);
  line-height: 0.85;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.score-stars {
  display: flex;
  gap: 4px;
}

.score-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card--dark {
  background: var(--dark);
  border-color: transparent;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-500);
}

.review-card--dark .review-text {
  color: #CCCCCC;
}

.review-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
}

.review-card--dark .review-name {
  color: var(--white);
}

/* ==========================================
   Contact
   ========================================== */
.contact-section {
  padding: 100px 60px;
  scroll-margin-top: var(--header-height);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-400);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--gray-50);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: box-shadow 200ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #AAAAAA;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  transition: color 200ms ease, transform 200ms ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* Form messages */
.form-message {
  margin-top: 0.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.form-message .icon { line-height: 0; }
.form-message.success { background: #f0fdf4; border: 1px solid #86efac; color: #065f46; }
.form-message.error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Schedule Card (V1 Bold Red) */
.schedule-card {
  background: var(--accent);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.schedule-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}

.schedule-title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.schedule-time {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}

.schedule-row--closed .schedule-day,
.schedule-row--closed .schedule-time {
  color: rgba(255, 255, 255, 0.4);
}

.info-box {
  background: var(--dark);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(228, 35, 19, 0.13);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-300);
}

.info-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  line-height: 1.5;
}

.info-value:hover {
  color: var(--accent);
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: var(--dark);
  padding: 60px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-ghost {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -3px;
  user-select: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-wrap .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.footer-logo-wrap .logo-text {
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-desc {
  margin: 0;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  color: var(--white);
  transition: background 200ms ease;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray-300);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.5;
}

.footer-col a {
  text-decoration: none;
  color: #CCCCCC;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--gray-800);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-400);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================
   Button Hover Animation (Gradient Sweep)
   ========================================== */
.btn-primary, .btn-outline, .btn-white,
.header-cta, .btn-submit, .delivery-btn {
  position: relative;
  overflow: hidden;
}

/* Gradient sweep */
.btn-primary::before, .btn-outline::before, .btn-white::before,
.header-cta::before, .btn-submit::before, .delivery-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease-out;
  pointer-events: none;
  z-index: 1;
}

.btn-white::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.delivery-btn::before {
  background: linear-gradient(90deg, transparent, rgba(228, 35, 19, 0.2), transparent);
}

/* Glow overlay */
.btn-primary::after, .btn-outline::after, .btn-white::after,
.header-cta::after, .btn-submit::after, .delivery-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.btn-white::after {
  background: rgba(0, 0, 0, 0.04);
}

.delivery-btn::after {
  background: rgba(228, 35, 19, 0.08);
}

/* Hover */
.btn-primary:hover::before, .btn-outline:hover::before, .btn-white:hover::before,
.header-cta:hover::before, .btn-submit:hover::before, .delivery-btn:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover::after, .btn-outline:hover::after, .btn-white:hover::after,
.header-cta:hover::after, .btn-submit:hover::after, .delivery-btn:hover::after {
  opacity: 1;
}

/* ==========================================
   Responsive
   ========================================== */

/* Mobile + Tablet */
@media (max-width: 1024px) {
  :root { --header-height: 64px; }

  .header-inner { padding: 0 20px; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid var(--gray-800);
    padding: 16px 20px;
    z-index: 99;
  }

  .nav.open { display: block; }

  .nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .nav a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 4px;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav-mobile-only { display: block; }

  /* Hero */
  .hero { height: auto; min-height: auto; padding-bottom: 0; }
  .hero-bg { display: none; }
  .hero-content { position: relative; padding: 60px 20px 40px; max-width: 100%; text-align: center; align-items: center; }
  .hero-title { font-size: clamp(48px, 14vw, 80px); }
  .hero-subtitle { font-size: 16px; }
  .hero-img-mobile { display: block; width: 300px; height: 300px; object-fit: contain; margin: 0 auto; }
  .hero-buttons { flex-direction: column; align-self: center; }
  .btn-primary, .btn-outline, .btn-white { text-align: center; justify-content: center; }

  /* Stats marquee: wider groups on mobile so items aren't cramped */
  .stats-bar { height: 80px; }
  .marquee-track { width: 500vw; }
  .marquee-group { width: 250vw; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-250vw); }
  }

  /* About */
  .about-section { padding: 60px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Menu */
  .menu-section { padding: 60px 20px; }

  /* Events / Delivery */
  .events-section { padding: 60px 20px; }
  .delivery-banner { flex-direction: column; min-height: auto; }
  .delivery-content { padding: 32px 28px; }
  .delivery-title { font-size: 32px; }
  .delivery-img { width: 100%; height: 240px; }
  .delivery-desc { max-width: 100%; }

  /* Reviews */
  .reviews-section { padding: 60px 20px; }
  .reviews-head { flex-direction: column; gap: 24px; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-section { padding: 60px 20px; }
  .contact-inner { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .schedule-card { padding: 32px; gap: 24px; }
  .schedule-title { font-size: 32px; }
  .schedule-day, .schedule-time { font-size: 14px; }

  /* Footer */
  .site-footer { padding: 40px 20px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-ghost { font-size: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
