/* ============================================================
   DZ HOUSE — Algerian Flavors  |  css/style.css
   ============================================================ */

/* ─── Custom Properties ────────────────────────────────────── */
:root {
  --gold:        #D4A017;
  --gold-bright: #e8b830;
  --gold-dim:    rgba(212, 160, 23, 0.12);
  --gold-border: rgba(212, 160, 23, 0.22);
  --green:       #2D6A4F;
  --green-light: #40916C;

  --bg:          #0a0a0a;
  --bg-2:        #0f0f0f;
  --bg-3:        #141414;
  --bg-card:     #111111;

  --text:        #f0ece4;
  --text-muted:  #8a8070;
  --text-dim:    #454035;

  --radius:      12px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  all 0.35s var(--ease);

  --shadow-gold: 0 8px 40px rgba(212, 160, 23, 0.18);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle geometric grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='rgba(212,160,23,0.025)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul   { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 7rem 0;
  position: relative;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.82rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-dark);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.logo-dz {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo-house {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--text);
  letter-spacing: 0.08em;
}
.halal-badge-nav {
  font-family: 'Poppins', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: var(--gold);
  padding: 3px 9px;
  border-radius: 50px;
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.lang-switch {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--gold-border);
  padding: 0.32rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-commander {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-commander:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.55) 45%,
    rgba(10,10,10,0.88) 80%,
    #0a0a0a 100%
  );
}

/* Ember particle effect */
.hero-embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-embers::before,
.hero-embers::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    120px 300px 0 rgba(212,160,23,0.7),
    280px 150px 0 rgba(232,184,48,0.5),
    450px 420px 0 rgba(212,160,23,0.6),
    650px 80px  0 rgba(212,160,23,0.4),
    820px 350px 0 rgba(232,184,48,0.6),
    190px 520px 0 rgba(212,160,23,0.4),
    580px 620px 0 rgba(212,160,23,0.3),
    980px 180px 0 rgba(232,184,48,0.5),
    1100px 480px 0 rgba(212,160,23,0.4),
    350px 700px 0 rgba(212,160,23,0.3);
  animation: embers 9s ease-in-out infinite;
}
.hero-embers::after {
  animation-delay: -4.5s;
  animation-duration: 12s;
}
@keyframes embers {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%      { transform: translateY(-25px) scale(1.3); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 860px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: rgba(212, 160, 23, 0.07);
  padding: 7px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

/* Hero fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
}
.fade-up[data-delay="0"] { animation-delay: 0.15s; }
.fade-up[data-delay="1"] { animation-delay: 0.3s; }
.fade-up[data-delay="2"] { animation-delay: 0.5s; }
.fade-up[data-delay="3"] { animation-delay: 0.7s; }
.fade-up[data-delay="4"] { animation-delay: 0.9s; }
.fade-up[data-delay="5"] { animation-delay: 1.1s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
}
.title-main {
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 0 80px rgba(212, 160, 23, 0.2);
}
.title-italic {
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.title-city {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ─── About ─────────────────────────────────────────────────── */
.about {
  background: var(--bg-2);
  overflow: hidden;
}

.about-deco-ring {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  opacity: 0.25;
  pointer-events: none;
}
.about-deco-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.about-deco-ring::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}

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

.about-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 2rem;
}

.halal-badge-big {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  width: fit-content;
}
.halal-icon {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.halal-badge-big strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.halal-badge-big span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.about-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.about-card-icon .lucide {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}
.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.about-card p { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Menu ──────────────────────────────────────────────────── */
.menu-section { background: var(--bg); }

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.menu-cat-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.menu-cat-block { display: contents; }
.menu-cat-block.hidden { display: none; }

.menu-cat-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--gold);
  padding: 1.5rem 0 0.75rem;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 0.25rem;
}
.menu-cat-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.35rem;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}
.menu-item-card:hover {
  border-color: var(--gold);
  background: var(--bg-3);
  transform: translateX(5px);
}
.menu-item-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Loading state */
.menu-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.menu-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.menu-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: 420px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-3), #1c1408);
  border: 1px solid var(--gold-border);
}
.gallery-item--tall {
  /* centre column spans full height already via grid */
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 50px;
}

/* ─── Reviews ───────────────────────────────────────────────── */
.reviews { background: var(--bg); }

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -30px;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(212, 160, 23, 0.07);
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-border);
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.reviewer span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── Services ──────────────────────────────────────────────── */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.service-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-icon .lucide {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.service-item p { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Contact ───────────────────────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon .lucide {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.contact-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark);
}
.contact-map iframe {
  display: block;
  filter: grayscale(75%) invert(92%) contrast(88%);
  transition: filter 0.4s;
}
.contact-map:hover iframe {
  filter: grayscale(25%) invert(92%) contrast(88%);
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer-halal {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ─── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─────────────────────────────────────────────── */
::selection { background: rgba(212,160,23,0.25); color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile large */
@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  /* Mobile Navbar */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 0.25rem;
    border-left: 1px solid var(--gold-border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gold-border);
  }
  .btn-commander { width: 100%; text-align: center; margin-top: 1rem; }
  .lang-switch { margin-top: 0.5rem; }

  /* Gallery single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 280px; }
  .gallery-item--tall { height: 340px; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-cards  { grid-template-columns: 1fr 1fr; }
}

/* Mobile small */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-btns  { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-socials { flex-direction: column; }
  .about-cards { grid-template-columns: 1fr; }

  .title-main { font-size: clamp(3rem, 14vw, 5rem); }
}
