/* ============================================================
   RESTAURANT BAMYAN — Styles principaux
   Palette: Charbon (#1A1410), Or Safran (#C8871A), Ivoire (#F5EDD8),
            Rouge Brique (#8B2A1C), Fumée (#3D342A)
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #1A1410;
  --charcoal-mid: #2C231A;
  --smoke: #3D342A;
  --gold: #C8871A;
  --gold-light: #E6A438;
  --gold-pale: #F0C87A;
  --ivory: #F5EDD8;
  --ivory-dark: #EDE0C4;
  --brick: #8B2A1C;
  --cream-text: #D4C9B4;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-height: 80px;
  --section-pad: 100px;
  --container-max: 1200px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.28);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

address { font-style: normal; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 20px;
}

.section-intro {
  color: var(--cream-text);
  font-size: 1.1rem;
  max-width: 520px;
}

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

.section-header .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 135, 26, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(245, 237, 216, 0.5);
}

.btn-outline:hover {
  background: rgba(245, 237, 216, 0.08);
  border-color: var(--ivory);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-xl {
  padding: 20px 44px;
  font-size: 1.1rem;
  border-radius: 6px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(26, 20, 16, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

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

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

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          105deg,
          rgba(26, 20, 16, 0.93) 0%,
          rgba(26, 20, 16, 0.78) 55%,
          rgba(26, 20, 16, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-text);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 135, 26, 0.15);
  border: 1px solid rgba(200, 135, 26, 0.35);
  padding: 10px 20px;
  border-radius: 100px;
}

.hero-badge .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream-text);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cream-text), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--charcoal-mid);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--charcoal-mid);
  box-shadow: var(--shadow-hover);
}

.about-img-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-text {
  color: var(--cream-text);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag {
  background: rgba(200, 135, 26, 0.12);
  border: 1px solid rgba(200, 135, 26, 0.3);
  color: var(--gold-pale);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== MENU ===== */
.menu-section {
  background: var(--charcoal);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(245, 237, 216, 0.15);
  color: var(--cream-text);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}

.menu-panel {
  display: none;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ===== TEXT-ONLY MENU CARDS ===== */
.menu-card-text {
  background: var(--charcoal-mid);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 237, 216, 0.07);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle left gold accent bar */
.menu-card-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card-text:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 135, 26, 0.22);
}

.menu-card-text:hover::before {
  opacity: 1;
}

.menu-card-text-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.menu-cat-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.menu-badge-inline {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--cream-text);
  line-height: 1.7;
  flex: 1;
}

.menu-tag-chip {
  display: inline-block;
  align-self: flex-start;
  background: rgba(139, 42, 28, 0.25);
  border: 1px solid rgba(139, 42, 28, 0.5);
  color: #E8917A;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--cream-text);
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.7;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to bottom,
          rgba(26, 20, 16, 0.92) 0%,
          rgba(26, 20, 16, 0.82) 100%
  );
}

.reviews-content {
  position: relative;
  z-index: 1;
}

.stars-display {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.star-icon {
  font-size: 2rem;
  color: var(--gold);
  animation: starPop 0.4s ease backwards;
}

.star-icon:nth-child(1) { animation-delay: 0.1s; }
.star-icon:nth-child(2) { animation-delay: 0.2s; }
.star-icon:nth-child(3) { animation-delay: 0.3s; }
.star-icon:nth-child(4) { animation-delay: 0.4s; }
.star-icon:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.2;
}

.reviews-subtitle {
  color: var(--cream-text);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: rgba(245, 237, 216, 0.05);
  border: 1px solid rgba(245, 237, 216, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(245, 237, 216, 0.08);
  border-color: rgba(200, 135, 26, 0.3);
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ivory);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== HOURS BAND ===== */
.hours-band {
  background: var(--smoke);
  padding: 56px 24px;
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  border-bottom: 1px solid rgba(245, 237, 216, 0.06);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.hours-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 237, 216, 0.1);
}

.hours-block {
  text-align: center;
}

.hours-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hours-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  display: block;
}

.hours-tel {
  transition: color 0.2s;
}

.hours-tel:hover {
  color: var(--gold);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--charcoal-mid);
}

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

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: var(--cream-text);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold-pale);
}

.contact-grid .btn {
  margin-top: 12px;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(245, 237, 216, 0.06);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.05);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  font-size: 1.5rem;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
}

.footer-tagline {
  color: var(--cream-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 237, 216, 0.07);
  color: var(--cream-text);
  border: 1px solid rgba(245, 237, 216, 0.1);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--cream-text);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-pale);
}

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--cream-text);
  gap: 12px;
}

.footer-hours li span:first-child {
  color: var(--ivory);
  font-weight: 500;
}

.footer-address {
  color: var(--cream-text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-address a {
  display: block;
  margin-top: 8px;
  color: var(--gold-pale);
  transition: color 0.2s;
}

.footer-address a:hover {
  color: var(--gold);
}

.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 135, 26, 0.12);
  border: 1px solid rgba(200, 135, 26, 0.35);
  color: var(--gold-pale);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.footer-review-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 216, 0.06);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(212, 201, 180, 0.45);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .about-img-accent {
    bottom: 0;
    right: 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hours-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-height: 70px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 237, 216, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll-hint {
    display: none;
  }

  .menu-card.featured {
    grid-column: auto;
    flex-direction: column;
  }

  .menu-card.featured .menu-card-img {
    width: 100%;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .menu-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .hero-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
  }

  .star-icon {
    animation: none;
  }
}

/* ===== HERO — BADGES ORIGIN & HALAL ===== */
.hero-top-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 20, 16, 0.55);
  border: 1px solid rgba(245, 237, 216, 0.25);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 90, 40, 0.75);
  border: 1px solid rgba(74, 200, 100, 0.5);
  backdrop-filter: blur(8px);
  color: #7FFFA0;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 135, 26, 0.15);
  border: 1px solid rgba(200, 135, 26, 0.35);
  padding: 10px 20px;
  border-radius: 100px;
}

.hero-badge .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}

.hero-badge.halal-inline {
  background: rgba(21, 90, 40, 0.35);
  border-color: rgba(74, 200, 100, 0.4);
}

.hero-badge.halal-inline .badge-text {
  color: #7FFFA0;
}

.halal-symbol {
  font-size: 1rem;
  color: #7FFFA0;
}

/* ===== HALAL TAG IN ABOUT ===== */
.tag.halal-tag {
  background: rgba(21, 90, 40, 0.25);
  border: 1px solid rgba(74, 200, 100, 0.4);
  color: #7FFFA0;
}

/* ===== HALAL BANNER STRIP (between about & menu) ===== */
.halal-strip {
  background: linear-gradient(135deg, #0d3a1c 0%, #1a5c30 50%, #0d3a1c 100%);
  border-top: 1px solid rgba(74, 200, 100, 0.2);
  border-bottom: 1px solid rgba(74, 200, 100, 0.2);
  padding: 20px 24px;
  text-align: center;
}

.halal-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.halal-strip-icon {
  font-size: 2rem;
  line-height: 1;
}

.halal-strip-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #7FFFA0;
  letter-spacing: 0.05em;
}

.halal-strip-sub {
  font-size: 0.8rem;
  color: rgba(127, 255, 160, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== AFGHAN FLAG TEXT BADGE (fallback for emoji rendering) ===== */
.af-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 16px;
  background: linear-gradient(to right, #000 33%, #D32011 33% 66%, #009A44 66%);
  border-radius: 2px;
  font-size: 0.55rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0;
  vertical-align: middle;
  flex-shrink: 0;
  /* Show "AF" text only as screen-reader text, visually show the flag colors */
  text-indent: -9999px;
  overflow: hidden;
}

/* Override reviews overlay to be darker so carpet shows through elegantly */
.reviews-overlay {
  background: linear-gradient(
          to bottom,
          rgba(26, 20, 16, 0.80) 0%,
          rgba(26, 20, 16, 0.72) 100%
  ) !important;
}

/* ===== HERO IMAGE FALLBACK — si la photo ne charge pas ===== */
.hero-bg {
  background: linear-gradient(
          160deg,
          #0d1f35 0%,
          #1a3a2a 25%,
          #4a3010 55%,
          #2a1a08 80%,
          #0d0800 100%
  );
}

/* reviews photo settings */
.reviews-photo {
  object-position: center center;
}

/* ============================================================
   INTERACTIONS MODERNES — Styles complémentaires
   ============================================================ */

/* ─── BARRE DE PROGRESSION DU SCROLL ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #FFD700);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(200, 135, 26, 0.6);
}

/* ─── CURSEUR PERSONNALISÉ ─── */
#custom-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 135, 26, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  mix-blend-mode: difference;
}

#custom-cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
}

#custom-cursor.cursor-hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(200, 135, 26, 0.1);
}

#custom-cursor-dot.cursor-hover {
  width: 8px;
  height: 8px;
}

@media (pointer: coarse) {
  #custom-cursor, #custom-cursor-dot { display: none; }
}

/* ─── CANVAS PARTICULES HERO ─── */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* ─── TYPEWRITER ─── */
.hero-title em {
  border-right: 2px solid var(--gold-pale);
  animation: cursorBlink 0.9s step-end infinite;
  padding-right: 3px;
}

.hero-title em.typewriter-done {
  border-right: none;
  animation: none;
  padding-right: 0;
}

@keyframes cursorBlink {
  50% { border-color: transparent; }
}

/* ─── BOUTON RETOUR EN HAUT ─── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(200, 135, 26, 0.35);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(200, 135, 26, 0.55);
  transform: translateY(-3px);
}

/* ─── RIPPLE EFFECT ─── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleAnim 0.7s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

/* ─── REVEAL TEXT ANIMATION ─── */
.reveal-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ─── HEURES REVEAL ─── */
.hours-time {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.hours-time.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PARALLAX ─── */
.hero-img {
  will-change: transform;
  transform-origin: center top;
}

/* ─── ABOUT STAT CARD — PULSE ─── */
.about-stat-card {
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200, 135, 26, 0.3); }
  50%       { box-shadow: 0 8px 36px rgba(200, 135, 26, 0.55); }
}

/* ─── HALAL STRIP — SHIMMER ─── */
.halal-strip {
  position: relative;
  overflow: hidden;
}

.halal-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(127, 255, 160, 0.08), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 140%; }
}

/* ─── MENU CARDS — GLOW ON HOVER ─── */
.menu-card-text:hover {
  box-shadow: 0 8px 40px rgba(200, 135, 26, 0.15), 0 2px 8px rgba(0,0,0,0.3);
}

/* ─── NAV LINK — UNDERLINE SLIDE ─── */
.nav-links a {
  position: relative;
}

/* ─── FOOTER LINKS HOVER ─── */
.footer-links a::before {
  content: '→ ';
  opacity: 0;
  transform: translateX(-6px);
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  color: var(--gold);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ─── TESTIMONIAL CARDS — HOVER LIFT ─── */
.testimonial-card {
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ─── STAR ICONS — HOVER GLOW ─── */
.star-icon {
  display: inline-block;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
  cursor: default;
}

.star-icon:hover {
  transform: scale(1.3) rotate(-5deg);
  text-shadow: 0 0 12px rgba(200, 135, 26, 0.8);
}

/* ─── HOURS BLOCK — HOVER ─── */
.hours-block {
  transition: transform 0.3s ease;
}

.hours-block:hover {
  transform: translateY(-4px);
}

/* ─── SECTION EYEBROW — ANIMATED UNDERLINE ─── */
.section-eyebrow {
  position: relative;
  display: inline-block;
}

.section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s ease 0.3s;
}

.section-eyebrow.visible::after,
.fade-in.visible .section-eyebrow::after {
  width: 100%;
}

/* ─── HERO CTA BUTTON — PULSE ─── */
.btn-gold.btn-lg {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 135, 26, 0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(200, 135, 26, 0); }
}

.btn-gold.btn-lg:hover {
  animation: none;
}

/* ─── HERO BADGE — FLOAT ─── */
.hero-badge {
  animation: float 4s ease-in-out infinite;
}

.hero-badge:last-child {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ─── LOGO FLAME — SPIN ON HOVER ─── */
.logo-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
  transform: scale(1.3) rotate(-10deg);
}

/* ─── REVIEW CTA BUTTON — WIGGLE ─── */
.review-cta {
  animation: btnPulse 2.5s ease-in-out infinite;
}

.review-cta:hover {
  animation: none;
}

/* ─── MENU PANEL TRANSITION ─── */
.menu-panel {
  opacity: 1;
}

/* ─── CONTACT DETAIL — SLIDE IN ─── */
.contact-detail {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-detail:hover {
  transform: translateX(6px);
}

/* ─── GOOGLE ICON SPIN ─── */
.review-cta:hover .google-icon {
  animation: spinOnce 0.5s ease;
}

@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   SECTION SUR DEMANDE
   ============================================================ */

/* Tab spécial doré avec éclat */
.tab-btn-special {
  background: linear-gradient(135deg, rgba(200,135,26,0.18), rgba(200,135,26,0.08));
  border-color: rgba(200, 135, 26, 0.45) !important;
  color: var(--gold-pale) !important;
}

.tab-btn-special:hover {
  background: linear-gradient(135deg, rgba(200,135,26,0.3), rgba(200,135,26,0.15));
  border-color: var(--gold) !important;
}

.tab-btn-special.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--charcoal) !important;
}

/* Hero intro de la section */
.surdemande-hero {
  text-align: center;
  padding: 20px 0 40px;
}

.surdemande-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.surdemande-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
}

.surdemande-subtitle {
  color: var(--cream-text);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grille des 3 cartes */
.surdemande-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.surdemande-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(200, 135, 26, 0.15);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.surdemande-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 135, 26, 0.4);
  box-shadow: 0 8px 32px rgba(200, 135, 26, 0.12);
}

.surdemande-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.surdemande-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}

.surdemande-card-desc {
  font-size: 0.875rem;
  color: var(--cream-text);
  line-height: 1.7;
}

.surdemande-card-desc strong {
  color: var(--gold-pale);
}

/* Bandeau conditions / minimum */
.surdemande-conditions {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(200,135,26,0.1), rgba(200,135,26,0.04));
  border: 1px solid rgba(200, 135, 26, 0.25);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  margin-bottom: 32px;
}

.surdemande-minimum {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.surdemande-min-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.surdemande-min-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 4px;
  text-align: center;
}

.surdemande-divider-v {
  width: 1px;
  height: 80px;
  background: rgba(200, 135, 26, 0.25);
  flex-shrink: 0;
}

.surdemande-info {
  flex: 1;
}

.surdemande-info p {
  color: var(--cream-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.surdemande-info p strong {
  color: var(--ivory);
}

.surdemande-actions {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .surdemande-grid {
    grid-template-columns: 1fr;
  }

  .surdemande-conditions {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 28px 24px;
  }

  .surdemande-divider-v {
    width: 60px;
    height: 1px;
  }
}