/* ═══════════════════════════════════════════════════════
   İstanbul Efe Kebap — Warm Mediterranean Theme
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --cream: #FDF6EE;
  --cream-dark: #F5EBD9;
  --terracotta: #C45536;
  --terracotta-light: #E8795D;
  --terracotta-dark: #9E3F25;
  --green: #2D5A3D;
  --green-light: #3A7650;
  --green-dark: #1E3D29;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --text-dark: #2C1810;
  --text-body: #4A3428;
  --text-muted: #8B7355;
  --white: #FFFFFF;
  --border: rgba(44, 24, 16, 0.1);
  --border-strong: rgba(44, 24, 16, 0.2);
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 24, 16, 0.1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 72px;
  --section-gap: 100px;
  --max-width: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════ SECTION SHARED ═══════ */

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ═══════ NAV ═══════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nav--hidden { transform: translateY(-100%); }
.nav--shadow { box-shadow: var(--shadow-sm); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(44, 24, 16, 0.05);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn--active {
  background: var(--white);
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-order:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════ MOBILE MENU ═══════ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  background: var(--cream);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu--open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-overlay--visible { opacity: 1; pointer-events: all; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-link {
  display: block;
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--terracotta); }

.mobile-menu .lang-switcher {
  margin-top: 20px;
  align-self: flex-start;
}

.mobile-menu .btn-order {
  margin-top: auto;
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ═══════ HERO ═══════ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?w=1600&q=80') center/cover;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 246, 238, 0.92) 0%, rgba(253, 246, 238, 0.7) 50%, rgba(253, 246, 238, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: calc(var(--nav-height) + 60px) 32px 60px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease 0.5s forwards;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s;
  border: 2px solid var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s;
  border: 2px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

/* Hero decorative pattern */
.hero-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C1810'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ═══════ MARQUEE ═══════ */

.marquee-band {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(253, 246, 238, 0.9);
}

.marquee-track .dot {
  color: var(--gold-light);
  font-size: 10px;
  display: flex;
  align-items: center;
}

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

/* ═══════ ABOUT ═══════ */

.about {
  padding: var(--section-gap) 0;
}

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

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.about-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.tag-year {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--terracotta);
  line-height: 1;
}

.tag-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about-text p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════ MENU PREVIEW ═══════ */

.menu-preview {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.menu-preview-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.menu-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.menu-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.menu-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--terracotta);
}

.menu-card-badge {
  background: var(--terracotta);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}

.menu-cta-wrap {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.menu-scan-hint {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════ GALLERY ═══════ */

.gallery {
  padding: var(--section-gap) 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-row: span 2; }

.gallery-item:not(:first-child) img { height: 240px; }
.gallery-item:first-child img { height: 100%; min-height: 496px; }

/* ═══════ REVIEWS ═══════ */

.reviews {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.review-card:hover { transform: translateY(-3px); }

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.review-source {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════ CONTACT ═══════ */

.contact {
  padding: var(--section-gap) 0;
}

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

.contact-info-group {
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info-value a {
  transition: color 0.2s;
}

.contact-info-value a:hover { color: var(--terracotta); }

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════ FOOTER ═══════ */

.footer {
  background: var(--green-dark);
  color: rgba(253, 246, 238, 0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  max-width: 300px;
}

.footer-legal-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  opacity: 0.5;
  font-family: var(--font-body);
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 238, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.5;
}

/* ═══════ HALAL BADGE ═══════ */

.halal-badge {
  position: fixed;
  top: calc(var(--nav-height) + 16px);
  right: 24px;
  z-index: 899;
  animation: fadeUp 0.7s ease 1.1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.halal-badge-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.halal-badge-inner:hover {
  transform: scale(1.08);
}

.halal-badge-arabic {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.halal-badge-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cream);
  line-height: 1;
  margin-top: 2px;
}

.halal-badge-sub {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(253, 246, 238, 0.6);
  line-height: 1;
}

/* ═══════ RTL SUPPORT ═══════ */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-cta { justify-content: flex-start; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .mobile-menu { right: auto; left: -100%; }
[dir="rtl"] .mobile-menu--open { left: 0; right: auto; }
[dir="rtl"] .mobile-close { right: auto; left: 24px; }
[dir="rtl"] .marquee-track { direction: ltr; }
[dir="rtl"] .review-text { direction: rtl; }
[dir="rtl"] .menu-preview-header { text-align: center; }
[dir="rtl"] .gallery-header { text-align: center; }
[dir="rtl"] .reviews-header { text-align: center; }
[dir="rtl"] .halal-badge { right: auto; left: 24px; }
[dir="rtl"] .back-to-top { right: auto; left: 32px; }
[dir="rtl"] .section-label { text-align: right; }

/* ═══════ BACK TO TOP ═══════ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 900;
}

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

.back-to-top:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* ═══════ COOKIE BANNER ═══════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  color: rgba(253, 246, 238, 0.9);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-actions a {
  color: var(--gold-light);
  text-decoration: underline;
  font-size: 13px;
  white-space: nowrap;
}

.cookie-actions button {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-actions button:hover {
  background: var(--terracotta-dark);
}

/* ═══════ SCROLL ANIMATIONS ═══════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left--visible, .reveal-right--visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ RESPONSIVE ═══════ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav .btn-order { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    padding: calc(var(--nav-height) + 40px) 24px 40px;
    max-width: 100%;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(253, 246, 238, 0.95) 0%, rgba(253, 246, 238, 0.85) 60%, rgba(253, 246, 238, 0.6) 100%);
  }

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

  .about-image img { height: 300px; }

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

  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item:first-child img { min-height: 240px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 300px; }

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

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

@media (max-width: 600px) {
  :root {
    --section-gap: 64px;
  }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 16px; }

  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }

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

  .gallery-item:not(:first-child) img,
  .gallery-item:first-child img { height: 220px; min-height: auto; }

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

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  [dir="rtl"] .back-to-top { right: auto; left: 20px; }

  .halal-badge { right: 16px; }
  .halal-badge-inner { width: 64px; height: 64px; }
  .halal-badge-arabic { font-size: 16px; }
  .halal-badge-label { font-size: 8px; }
  .halal-badge-sub { font-size: 6px; }
  [dir="rtl"] .halal-badge { right: auto; left: 16px; }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
  .cookie-actions { justify-content: center; }
}
