/* =====================================================
   MAMY'S FOOD COURT — Design System CSS
   Charte : Rouge Vermeil #c61530 | Cabin + Ultra
   Mobile-first | Responsive | Accessible
   ===================================================== */

/* ── FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Bukhari+Script&family=Ultra&display=swap');

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  /* Colors */
  --c-red:        #c61530;
  --c-red-dark:   #9e1025;
  --c-red-light:  #e8304a;
  --c-red-bg:     #fff0f2;
  --c-white:      #ffffff;
  --c-cream:      #fff8f0;
  --c-light:      #f5ede4;
  --c-dark:       #1a0600;
  --c-dark-2:     #3d1500;
  --c-text:       #2a1000;
  --c-text-md:    #5a3520;
  --c-text-light: #8a6550;
  --c-border:     #e8d5c0;
  --c-overlay:    rgba(26, 6, 0, 0.72);

  /* Typography */
  --f-body:    'Cabin', Arial, sans-serif;
  --f-display: 'Bukhari Script', cursive;
  --f-title:   'Ultra', serif;
  --f-brand:   'Arial Black', Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;   /* 4px  */
  --sp-2: 0.5rem;    /* 8px  */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --s-sm:  0 2px 8px rgba(0,0,0,0.08);
  --s-md:  0 4px 20px rgba(0,0,0,0.12);
  --s-lg:  0 8px 40px rgba(0,0,0,0.18);
  --s-red: 0 6px 30px rgba(198,21,48,0.30);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;

  /* Max widths */
  --w-sm:  640px;
  --w-md:  768px;
  --w-lg:  1024px;
  --w-xl:  1200px;
  --w-2xl: 1400px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--f-body);
  font-size: 1rem;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }
.text-display { font-family: var(--f-display); }
.text-title   { font-family: var(--f-title); }
.text-brand   { font-family: var(--f-brand); }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }
.text-muted { color: var(--c-text-light); }
.text-red   { color: var(--c-red); }
.text-white { color: var(--c-white); }
.text-center { text-align: center; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--w-xl);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-8); } }

.section { padding: var(--sp-12) 0; }
.section--lg { padding: var(--sp-20) 0; }
.section--dark { background: var(--c-dark); color: var(--c-white); }
.section--cream { background: var(--c-cream); }
.section--light { background: var(--c-light); }
.section--red { background: var(--c-red); color: var(--c-white); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }

/* ── SECTION HEADERS ────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--sp-10); }
.section-header h2 {
  font-family: var(--f-title);
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--c-text-md);
  max-width: 600px;
  margin: 0 auto;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-red);
  margin-bottom: var(--sp-2);
}
.section-header--light h2 { color: var(--c-white); }
.section-header--light p  { color: rgba(255,255,255,0.75); }
.section-header--light .eyebrow { color: rgba(255,200,180,0.9); }

.title-underline {
  display: inline-block;
  position: relative;
}
.title-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 60px; height: 4px;
  background: var(--c-red);
  border-radius: var(--r-full);
}
.title-underline--center::after { left: 50%; transform: translateX(-50%); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--f-brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: var(--s-red);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(198,21,48,0.40);
}
.btn--outline {
  background: transparent;
  color: var(--c-red);
  border-color: var(--c-red);
}
.btn--outline:hover, .btn--outline:focus {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: var(--c-white); color: var(--c-red); }
.btn--white {
  background: var(--c-white);
  color: var(--c-red);
}
.btn--white:hover { background: var(--c-cream); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn:focus-visible { outline: 3px solid var(--c-red); outline-offset: 3px; }

/* ── BADGES ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge--bestseller { background: var(--c-red);     color: var(--c-white); }
.badge--new        { background: #ff7700;           color: var(--c-white); }
.badge--halal      { background: #2d7a3a;           color: var(--c-white); }
.badge--vege       { background: #5a9e45;           color: var(--c-white); }
.badge--hot        { background: #e83500;           color: var(--c-white); }
.badge--promo      { background: var(--c-dark);     color: var(--c-white); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-dark);
  border-bottom: 3px solid var(--c-red);
  transition: var(--t-base);
}
.navbar.scrolled {
  background: rgba(26,6,0,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--s-lg);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 var(--sp-4);
  max-width: var(--w-xl);
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.navbar__logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.navbar__logo-text {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.navbar__nav {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}
@media (min-width: 1024px) { .navbar__nav { display: flex; } }
.navbar__nav a {
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--t-fast);
}
.navbar__nav a:hover, .navbar__nav a.active {
  color: var(--c-white);
  background: rgba(255,255,255,0.08);
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: var(--t-base);
}
@media (min-width: 1024px) { .navbar__burger { display: none; } }
.navbar__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--t-base);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--c-dark-2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-4);
  gap: var(--sp-1);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--t-fast);
  font-size: 1rem;
}
.navbar__mobile a:hover { background: rgba(255,255,255,0.08); color: var(--c-white); }
.navbar__mobile .btn { margin-top: var(--sp-3); width: 100%; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 66px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,6,0,0.85) 0%, rgba(26,6,0,0.40) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-16) 0;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(198,21,48,0.9);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero__title span { color: var(--c-red-light); }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: var(--c-white);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

/* ── CTA STICKY MOBILE ──────────────────────────────── */
.cta-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--c-dark);
  border-top: 3px solid var(--c-red);
  padding: var(--sp-3) var(--sp-4);
}
@media (max-width: 767px) { .cta-sticky { display: flex; gap: var(--sp-2); } }
.cta-sticky .btn { flex: 1; font-size: 0.85rem; padding: 0.7rem 1rem; }

/* ── PRODUCT CARDS ──────────────────────────────────── */
.product-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--s-sm);
  overflow: hidden;
  transition: var(--t-base);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--s-md);
  transform: translateY(-4px);
}
.product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-light);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badges {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}
.product-card__body {
  padding: var(--sp-4) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__name {
  font-family: var(--f-brand);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-md);
  line-height: 1.5;
  flex: 1;
  margin-bottom: var(--sp-3);
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: auto;
}
.product-card__price {
  font-family: var(--f-brand);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-red);
}
.product-card__price span {
  font-size: 0.78rem;
  color: var(--c-text-light);
  font-family: var(--f-body);
  font-weight: 400;
}
.info-manquante {
  color: #e06000;
  font-size: 0.75rem;
  font-style: italic;
}

/* ── MENU CATEGORY TABS ─────────────────────────────── */
.category-tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: var(--sp-2);
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: var(--sp-8);
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-full);
  border: 2px solid var(--c-border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text-md);
  background: var(--c-white);
  transition: var(--t-fast);
  white-space: nowrap;
}
.category-tab:hover   { border-color: var(--c-red); color: var(--c-red); }
.category-tab.active  { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }

/* ── CATEGORY SECTION ───────────────────────────────── */
.menu-category { margin-bottom: var(--sp-16); }
.menu-category__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--c-border);
}
.menu-category__icon {
  font-size: 2.2rem;
  line-height: 1;
}
.menu-category__title {
  font-family: var(--f-title);
  font-size: 1.6rem;
  color: var(--c-dark);
}
.menu-category__count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--c-text-light);
}

/* ── FEATURE CARDS ──────────────────────────────────── */
.feature-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  text-align: center;
  border: 1px solid var(--c-border);
  transition: var(--t-base);
}
.feature-card:hover { box-shadow: var(--s-md); transform: translateY(-3px); }
.feature-card__icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
}
.feature-card__title {
  font-family: var(--f-brand);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: var(--sp-2);
}
.feature-card__text {
  font-size: 0.9rem;
  color: var(--c-text-md);
}

/* ── INFO BOXES ─────────────────────────────────────── */
.info-box {
  background: var(--c-red-bg);
  border-left: 4px solid var(--c-red);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-4);
}
.info-box--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}
.info-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-red);
  margin-bottom: var(--sp-1);
}
.info-box--dark .info-box__label { color: rgba(255,200,180,0.9); }

/* ── FAQ ACCORDION ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-dark);
  text-align: left;
  gap: var(--sp-3);
  transition: var(--t-fast);
}
.faq-question:hover { background: var(--c-cream); }
.faq-question[aria-expanded="true"] { color: var(--c-red); background: var(--c-red-bg); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--t-base);
  color: var(--c-red);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); border-color: var(--c-red); background: var(--c-red); color: var(--c-white); }
.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.95rem;
  color: var(--c-text-md);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── REVIEW CARDS ───────────────────────────────────── */
.review-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--s-sm);
  border: 1px solid var(--c-border);
}
.review-card__stars { color: #f5a623; font-size: 1.1rem; margin-bottom: var(--sp-3); letter-spacing: 2px; }
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-md);
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: 0.95rem; color: var(--c-dark); }
.review-card__meta { font-size: 0.8rem; color: var(--c-text-light); }
.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--c-text-light);
  font-weight: 600;
}

/* ── PROOF STRIP ────────────────────────────────────── */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
  align-items: center;
  padding: var(--sp-8);
  background: var(--c-dark);
  border-radius: var(--r-xl);
}
.proof-item { text-align: center; }
.proof-item__number {
  font-family: var(--f-title);
  font-size: 2.2rem;
  color: var(--c-red-light);
  line-height: 1;
}
.proof-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── DELIVERY PLATFORMS ─────────────────────────────── */
.platform-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  transition: var(--t-base);
  text-decoration: none;
}
.platform-card:hover {
  box-shadow: var(--s-md);
  border-color: var(--c-red);
  transform: translateY(-3px);
}
.platform-card__logo {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  object-fit: contain;
  flex-shrink: 0;
}
.platform-card__info {}
.platform-card__name { font-weight: 700; font-size: 1rem; color: var(--c-dark); }
.platform-card__sub  { font-size: 0.85rem; color: var(--c-text-light); }
.platform-card__arrow { margin-left: auto; color: var(--c-red); font-size: 1.2rem; }

/* ── STEPS ──────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: var(--sp-6); }
.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}
.step__number {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-brand);
  font-weight: 700;
  font-size: 1.1rem;
}
.step__title { font-weight: 700; margin-bottom: 4px; color: var(--c-dark); }
.step__text  { font-size: 0.9rem; color: var(--c-text-md); }

/* ── CONTACT FORM ───────────────────────────────────── */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--sp-2);
  color: var(--c-dark);
}
.form-label .req { color: var(--c-red); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: var(--t-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(198,21,48,0.1);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--c-text-light); margin-top: 5px; }

/* ── BREADCRUMBS ────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: var(--c-text-light);
  padding: var(--sp-3) 0;
}
.breadcrumb a { color: var(--c-text-light); transition: var(--t-fast); }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb__sep { color: var(--c-border); }
.breadcrumb__current { color: var(--c-text-md); font-weight: 600; }

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: var(--c-dark);
  padding: calc(66px + var(--sp-10)) 0 var(--sp-10);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--f-title);
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto;
}
.page-hero .breadcrumb { justify-content: center; margin-top: var(--sp-4); color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-16) 0 0;
  border-top: 4px solid var(--c-red);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand {}
.footer__logo {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-5);
  max-width: 240px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: var(--sp-3);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  font-size: 1.1rem;
  transition: var(--t-fast);
  text-decoration: none;
}
.footer__social a:hover { background: var(--c-red); }
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--t-fast);
}
.footer__col ul li a:hover { color: var(--c-white); padding-left: 4px; }
.footer__col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 2;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-5) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.55); transition: var(--t-fast); }
.footer__bottom a:hover { color: var(--c-white); }

/* ── HOURS TABLE ────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--c-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: var(--sp-3) var(--sp-2); font-size: 0.95rem; }
.hours-table td:first-child { font-weight: 600; color: var(--c-dark); min-width: 130px; }
.hours-table td:last-child { color: var(--c-text-md); }
.hours-table .today td { color: var(--c-red); font-weight: 700; }
.hours-open  { color: #2d7a3a !important; font-weight: 700 !important; }
.hours-closed { color: #c00 !important; }

/* ── NAP BLOCK ──────────────────────────────────────── */
.nap-block {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .nap-block { grid-template-columns: repeat(3, 1fr); } }
.nap-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.nap-item__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.nap-item__label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-light); margin-bottom: 3px; }
.nap-item__value { font-weight: 600; color: var(--c-dark); font-size: 0.95rem; }
.nap-item__value a { color: var(--c-red); }
.nap-item__value a:hover { text-decoration: underline; }

/* ── PATTERN BACKGROUND ─────────────────────────────── */
.pattern-bg {
  position: relative;
  overflow: hidden;
}
.pattern-bg::before {
  content: 'MAMYS · FOOD COURT · HALAL · TACOS · BURGERS · PIZZAS · TOULOUSE · STREET FOOD · DEPUIS 2018 ·';
  position: absolute;
  inset: 0;
  font-family: var(--f-brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198,21,48,0.06);
  word-break: break-all;
  overflow: hidden;
  transform: rotate(-12deg);
  transform-origin: center;
  line-height: 3;
  pointer-events: none;
  z-index: 0;
}
.pattern-bg > * { position: relative; z-index: 1; }

/* ── UTILS ──────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hide-mobile  { display: none; }
.hide-desktop { display: block; }
@media (min-width: 768px) {
  .hide-mobile  { display: block; }
  .hide-desktop { display: none; }
}
.rounded { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.overflow-hidden { overflow: hidden; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.w-full { width: 100%; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ── HALAL SEAL ─────────────────────────────────────── */
.halal-seal {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px 6px 10px;
  background: linear-gradient(135deg, #1a5c27, #2d7a3a);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── PRINT ──────────────────────────────────────────── */
@media print {
  .navbar, .cta-sticky, .footer { display: none; }
  body { padding: 0; }
}

/* =====================================================
   COMPOSANTS PAGES — classes plates (HTML pages)
   ===================================================== */

/* Alias variables */
:root {
  --rouge: #c61530;
  --gray-500: #8a6550;
  --gray-600: #5a3520;
  --radius-lg: 20px;
}

/* ── UTILITAIRES ─────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.link-arrow { color: var(--c-red); font-weight: 600; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }
.check-list { display: flex; flex-direction: column; gap: 0.5rem; padding-left: 0; list-style: none; }
.check-list li { padding-left: 1.75rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-red); font-weight: 700; }
.info-manquante { color: #c66000; font-size: 0.8rem; font-style: italic; }

/* ── BUTTONS (flat convention) ───────────────────────── */
.btn-primary  { background: var(--c-red); color: #fff; border: 2px solid var(--c-red); box-shadow: 0 6px 24px rgba(198,21,48,.28); }
.btn-primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--c-red); border: 2px solid var(--c-red); }
.btn-outline:hover { background: var(--c-red); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--c-red); }
.btn-ghost    { background: transparent; color: var(--c-red); border: 2px solid transparent; text-decoration: underline; }
.btn-ghost:hover { background: var(--c-red-bg); }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR (flat convention) ────────────────────────── */
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 66px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }
.nav-links {
  display: none; align-items: center;
  gap: 0.25rem; list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links li a {
  padding: 0.5rem 0.75rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,.85); transition: 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: #fff; background: rgba(255,255,255,.1); }
.burger {
  display: flex; flex-direction: column;
  gap: 5px; padding: 0.5rem;
  border-radius: 8px;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.25s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
@media (max-width: 1023px) {
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--c-dark-2);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 999; gap: 0.25rem;
  }
  .nav-links.open li a { padding: 0.75rem 1rem; font-size: 1rem; display: block; }
}

/* ── HERO (flat names) ───────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 66px; }
.hero-bg { position: absolute; inset: 0; background: var(--c-dark) center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,6,0,.88) 0%, rgba(26,6,0,.45) 100%); }
.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.badge-halal {
  display: inline-block; background: #2d7a3a; color: #fff;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 9999px; margin-bottom: 1rem;
}
.hero-title { font-family: var(--f-display); font-size: clamp(2.8rem,7vw,5rem); color: #fff; line-height: 1.08; margin-bottom: 1.25rem; text-shadow: 0 4px 20px rgba(0,0,0,.5); }
.hero-title em { font-style: normal; color: var(--c-red-light); }
.hero-sub { font-size: clamp(1rem,2.5vw,1.2rem); color: rgba(255,255,255,.82); max-width: 520px; margin-bottom: 2rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,.65); }
.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }

/* ── PROOF STRIP (flat) ─────────────────────────────── */
.proof-strip { background: var(--c-dark); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.proof-inner { display: flex; flex-wrap: wrap; gap: 0; justify-content: center; }
.proof-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.8); font-size: 0.88rem;
}
.proof-item:last-child { border-right: none; }
.proof-item strong { color: #fff; }
.proof-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }

/* ── SECTION HELPERS ────────────────────────────────── */
.section-bg-light { background: var(--c-light); }
.section-bg-dark  { background: var(--c-dark); color: #fff; }
.section-bg-dark .section-header h2 { color: #fff; }
.section-bg-dark .section-desc { color: rgba(255,255,255,.7); }
.section-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-red); margin-bottom: 0.5rem; }
.section-bg-dark .section-eyebrow { color: rgba(255,180,160,.9); }
.section-desc { font-size: 1.05rem; color: var(--c-text-md); max-width: 600px; margin: 0 auto; }
.section-header-light h2 { color: #fff; }
.section-header-light .section-eyebrow { color: rgba(255,190,170,.9); }
.section-header-light .section-desc { color: rgba(255,255,255,.72); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── PRODUCT GRID ────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

/* Product card flat classes */
.product-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--c-light); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--c-red); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 3px 10px; border-radius: 9999px;
}
.badge-new  { background: #ff7700 !important; }
.badge-feu  { background: #e83500 !important; }
.product-body { padding: 1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--f-brand); font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 0.4rem; }
.product-desc { font-size: 0.875rem; color: var(--c-text-md); line-height: 1.5; flex: 1; margin-bottom: 0.75rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; }
.product-price { font-family: var(--f-brand); font-size: 1.1rem; font-weight: 700; color: var(--c-red); }

/* ── FEATURES GRID ───────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--c-dark); }
.feature-card p { font-size: 0.9rem; color: var(--c-text-md); }
.feature-card-lg { text-align: left; }
.feature-card-accent { border-color: var(--c-red); background: var(--c-red-bg); }

/* ── SPLIT SECTION ───────────────────────────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-reverse .split-img { order: -1; }
@media (min-width: 768px) { .split-reverse .split-img { order: 0; } }
.split-img img { border-radius: var(--r-lg); box-shadow: var(--s-md); width: 100%; height: auto; }
.split-text h2 { font-family: var(--f-title); margin-bottom: 1rem; }
.split-text p { color: var(--c-text-md); margin-bottom: 1rem; }
.split-text .check-list { margin-bottom: 1.5rem; }

/* ── DELIVERY PLATFORMS ─────────────────────────────── */
.delivery-platforms { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .delivery-platforms { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .delivery-platforms { grid-template-columns: repeat(3, 1fr); } }
.delivery-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1.5rem; border-radius: var(--r-lg);
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.12);
  color: #fff; text-align: center; transition: 0.25s ease; text-decoration: none;
}
.delivery-card:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); transform: translateY(-3px); }
.delivery-card-primary { background: var(--c-red); border-color: var(--c-red); }
.delivery-card-primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); }
.delivery-rating { font-size: 0.8rem; color: rgba(255,255,255,.75); }
.delivery-logo-text { font-family: var(--f-brand); font-size: 1.1rem; font-weight: 700; }
.delivery-sub { font-size: 0.82rem; color: rgba(255,255,255,.75); }
.delivery-note { text-align: center; color: rgba(255,255,255,.55); font-size: 0.85rem; margin-top: 0.75rem; }

/* ── REVIEWS (flat) ─────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--c-dark); display: block; }
.review-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 1px; }
.review-text { font-size: 0.92rem; color: var(--c-text-md); line-height: 1.65; font-style: italic; margin-bottom: 0.75rem; }
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-source { font-size: 0.75rem; color: var(--c-text-light); font-weight: 600; }
.review-date { margin-left: auto; font-size: 0.78rem; color: var(--c-text-light); white-space: nowrap; }
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; justify-content: center; margin-top: 0.75rem; }
.rating-stars { color: #f5a623; font-size: 1.25rem; }
.rating-value { font-family: var(--f-brand); font-size: 1.5rem; font-weight: 700; color: var(--c-dark); }
.rating-count { color: var(--c-text-light); font-size: 0.9rem; }

/* Review filters */
.review-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.review-filter-btn {
  padding: 0.45rem 1rem; border-radius: 9999px;
  border: 2px solid var(--c-border); font-size: 0.85rem; font-weight: 600;
  color: var(--c-text-md); background: #fff; transition: 0.2s ease;
}
.review-filter-btn:hover { border-color: var(--c-red); color: var(--c-red); }
.review-filter-btn.active { background: var(--c-red); border-color: var(--c-red); color: #fff; }

/* Rating platforms grid */
.rating-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 0; }
@media (min-width: 768px) { .rating-platforms { grid-template-columns: repeat(4, 1fr); } }
.rating-platform-card {
  background: #fff; border-radius: var(--r-lg); border: 1px solid var(--c-border);
  padding: 1.5rem; text-align: center; box-shadow: var(--s-sm);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.rating-platform-name { font-weight: 700; font-size: 0.9rem; color: var(--c-text-light); }
.rating-big { font-family: var(--f-brand); font-size: 1.4rem; font-weight: 700; color: var(--c-dark); }
.rating-platform-card .rating-count { font-size: 0.82rem; color: var(--c-text-light); }
.rating-badge { background: var(--c-red); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 9999px; text-align: center; }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band { background: var(--c-dark); }
.cta-band-inner { display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .cta-band-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.cta-band-text h2 { font-family: var(--f-title); color: #fff; margin-bottom: 0.5rem; }
.cta-band-text p  { color: rgba(255,255,255,.72); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ── NAP SECTION ─────────────────────────────────────── */
.nap-section { }
.nap-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px)  { .nap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .nap-grid { grid-template-columns: repeat(3, 1fr); } }
.nap-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--c-dark); }
.nap-block address { font-style: normal; color: var(--c-text-md); line-height: 1.8; }

/* ── FOOTER (flat) ───────────────────────────────────── */
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand {}
.footer-brand img { margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-nav h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav ul li a { font-size: 0.9rem; color: rgba(255,255,255,.72); transition: 0.2s ease; }
.footer-nav ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,.72); margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,.72); transition: 0.2s ease; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: 0.2s ease; }
.footer-social a:hover { background: var(--c-red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-bottom-inner nav { display: flex; gap: 1.5rem; }
.footer-bottom-inner nav a { color: rgba(255,255,255,.5); transition: 0.2s ease; }
.footer-bottom-inner nav a:hover { color: #fff; }

/* ── MENU CATEGORY TABS (flat) ───────────────────────── */
.cat-tabs-wrap { background: #fff; border-bottom: 2px solid var(--c-border); position: sticky; top: 66px; z-index: 100; }
.cat-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.75rem 0; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0; padding: 0.5rem 1.15rem; border-radius: 9999px;
  border: 2px solid var(--c-border); font-weight: 600; font-size: 0.88rem;
  color: var(--c-text-md); background: #fff; transition: 0.2s ease; white-space: nowrap;
}
.cat-tab:hover { border-color: var(--c-red); color: var(--c-red); }
.cat-tab.active { background: var(--c-red); border-color: var(--c-red); color: #fff; }

/* ── MENU SECTIONS ───────────────────────────────────── */
.menu-grid { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.menu-section { margin-bottom: 4rem; }
.menu-section[hidden] { display: none; }
.menu-cat-title { font-family: var(--f-title); font-size: 1.75rem; color: var(--c-dark); margin-bottom: 0.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--c-border); }
.menu-cat-desc { color: var(--c-text-md); margin-bottom: 1.5rem; font-size: 0.95rem; }
.menu-note { background: var(--c-cream); border-left: 3px solid var(--c-red); padding: 0.75rem 1rem; border-radius: 0 8px 8px 0; font-size: 0.875rem; color: var(--c-text-md); margin-top: 1rem; }
.menu-highlight-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--c-red); color: #fff; border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
}
.menu-highlight-icon { font-size: 2rem; }
.menu-highlight-banner strong { font-size: 1.05rem; }
.menu-highlight-banner a { margin-left: auto; }
.payment-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.payment-item { background: var(--c-cream); border-radius: 9999px; padding: 0.5rem 1.25rem; font-size: 0.9rem; font-weight: 600; color: var(--c-dark); }

/* ── FAQ (flat) ──────────────────────────────────────── */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-cat-title { font-family: var(--f-title); font-size: 1.4rem; color: var(--c-dark); margin-bottom: 1rem; }
.faq-item.open .faq-answer { display: block; }
.faq-icon::before { content: '+'; font-size: 1.4rem; font-weight: 700; color: var(--c-red); }
.faq-item.open .faq-icon::before { content: '×'; }
.faq-cta-block { background: var(--c-cream); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; margin-top: 3rem; border: 1px solid var(--c-border); }
.faq-cta-block h2 { font-family: var(--f-title); margin-bottom: 0.75rem; }

/* ── CONTACT LAYOUT ──────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1.5fr; } }
.contact-info > * + * { margin-top: 2rem; }
.contact-form-wrap h2 { font-family: var(--f-title); margin-bottom: 0.5rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--c-dark); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--c-border); border-radius: var(--r-md);
  font-family: var(--f-body); font-size: 0.95rem; color: var(--c-text);
  background: #fff; transition: 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(198,21,48,.1); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--c-red); }
.form-check label { font-size: 0.88rem; color: var(--c-text-md); font-weight: 400; }

/* ── STEPS GRID ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background: #fff; border-radius: var(--r-lg); padding: 1.5rem; border: 1px solid var(--c-border); text-align: center; }
.step-num { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--c-red); color: #fff; border-radius: 50%; font-family: var(--f-brand); font-size: 1.2rem; font-weight: 700; margin: 0 auto 1rem; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--c-dark); }
.step-card p { font-size: 0.875rem; color: var(--c-text-md); }

/* ── INFO GRID ───────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card { background: #fff; border-radius: var(--r-md); padding: 1.25rem 1.5rem; border: 1px solid var(--c-border); }
.info-card strong { display: block; margin-bottom: 0.4rem; color: var(--c-dark); }
.info-card p { font-size: 0.9rem; color: var(--c-text-md); margin: 0; }

/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-container { max-width: 760px; }
.legal-page h2 { font-size: 1.35rem; font-weight: 700; color: var(--c-dark); margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--c-border); }
.legal-page h2:first-child { margin-top: 0; }
.legal-page p { color: var(--c-text-md); margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { color: var(--c-text-md); margin-bottom: 0.35rem; list-style: disc; }
.legal-page a { color: var(--c-red); }
.legal-page a:hover { text-decoration: underline; }

/* ── PAGE HERO SM ────────────────────────────────────── */
.page-hero-sm { padding-bottom: 2rem !important; }
.page-hero-sm h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

/* ── BREADCRUMB (page-hero inner) ───────────────────── */
.page-hero .breadcrumb { margin-bottom: 1rem; }
.page-hero .breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; list-style: none; font-size: 0.85rem; color: rgba(255,255,255,.5); justify-content: center; }
.page-hero .breadcrumb ol li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.9); }

/* Index.html inline breadcrumb on page-hero */
.breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; list-style: none; font-size: 0.85rem; }
.breadcrumb ol li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }

/* ── MAP PLACEHOLDER ─────────────────────────────────── */
.map-placeholder iframe { display: block; }

/* ── HOURS TABLE in nap-block ────────────────────────── */
.nap-block .hours-table { font-size: 0.9rem; }
.nap-block .hours-table td:first-child { min-width: 90px; }

/* ── SECTION .section alias fix ──────────────────────── */
/* The CSS uses .section but some pages pass modifier as separate class */
.section { padding: var(--sp-12) 0; }

