/* ════════════════════════════════════════════
   Abdul Aziz Restaurant — Al Ain street kitchen
════════════════════════════════════════════ */
#biz.abdul-aziz-biz {
  --az-wine: #3c1020;
  --az-wine-deep: #1f0a10;
  --az-saffron: #e8a05a;
  --az-gold: #f4c430;
  --az-cream: #fff8f0;
  --az-muted: rgba(255, 248, 240, 0.62);
  background: var(--az-wine-deep);
  color: var(--az-cream);
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, sans-serif;
}

.az-page {
  position: relative;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

/* Spice texture overlay */
.az-spice-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 160, 90, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(244, 196, 48, 0.1) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(232, 160, 90, 0.03) 12px,
      rgba(232, 160, 90, 0.03) 13px
    );
}

/* ── Hero ── */
.az-hero {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 72vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(16px, 4vw, 48px) clamp(32px, 6vw, 56px);
  background: center/cover no-repeat;
}
.az-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 10, 16, 0.35) 0%,
    rgba(31, 10, 16, 0.55) 40%,
    rgba(31, 10, 16, 0.92) 85%,
    var(--az-wine-deep) 100%
  );
}
.az-back {
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 0px));
  left: max(14px, env(safe-area-inset-left, 0px));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  border-radius: 50px;
  border: 1px solid rgba(232, 160, 90, 0.35);
  background: rgba(31, 10, 16, 0.75);
  backdrop-filter: blur(12px);
  color: var(--az-saffron);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
}
.az-back-label { display: none; }
@media (min-width: 480px) { .az-back-label { display: inline; } }

.az-hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}
.az-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.az-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.az-badge--open {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #a5d6a7;
}
.az-badge--rating {
  background: rgba(244, 196, 48, 0.15);
  border: 1px solid rgba(244, 196, 48, 0.4);
  color: var(--az-gold);
}
.az-badge--loc {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--az-muted);
}
.az-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.az-hero-title span {
  color: var(--az-saffron);
  font-style: italic;
}
.az-hero-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--az-muted);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 520px;
}
.az-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
  transition: transform 0.2s, background 0.2s;
}
.az-btn--primary {
  background: linear-gradient(135deg, var(--az-saffron), var(--az-gold));
  color: #1a0a0c;
}
.az-btn--ghost {
  background: transparent;
  border: 1px solid rgba(232, 160, 90, 0.5);
  color: var(--az-saffron);
}
.az-btn:hover { transform: scale(1.02); }

/* ── Spice rule ── */
.az-spice-rule {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--az-saffron);
  opacity: 0.7;
}
.az-spice-rule::before,
.az-spice-rule::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 160, 90, 0.5), transparent);
}

/* ── Body sections ── */
.az-body {
  position: relative;
  z-index: 1;
  padding: 0 clamp(16px, 4vw, 48px) clamp(48px, 8vw, 80px);
}
.az-section { margin-bottom: clamp(40px, 8vw, 64px); }
.az-section-hd {
  margin-bottom: clamp(20px, 4vw, 32px);
}
.az-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--az-saffron);
  margin-bottom: 8px;
}
.az-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5.5vw, 40px);
  font-weight: 800;
  line-height: 1.12;
}

/* ── Signature polaroid grid ── */
.az-plates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.az-plate {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.az-plate:nth-child(odd) { transform: rotate(-1.5deg); }
.az-plate:nth-child(even) { transform: rotate(1.5deg); }
.az-plate:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }
.az-plate-frame {
  background: #fff;
  padding: 8px 8px 0;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.az-plate-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.az-plate-cap {
  padding: 10px 4px 12px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.az-plate-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #1a0a0c;
  line-height: 1.25;
}
.az-plate-price {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--az-wine);
  margin-top: 2px;
}
.az-plate-tag {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--az-wine);
  color: var(--az-gold);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Service chips ── */
.az-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.az-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  min-width: min(100%, 140px);
  flex: 1 1 calc(50% - 10px);
  border-radius: 16px;
  border: 1px solid rgba(232, 160, 90, 0.2);
  background: rgba(60, 16, 32, 0.6);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  touch-action: manipulation;
  transition: border-color 0.2s, background 0.2s;
}
.az-chip:hover {
  border-color: var(--az-saffron);
  background: rgba(60, 16, 32, 0.9);
}
.az-chip-emoji { font-size: 22px; line-height: 1; }
.az-chip-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--az-cream);
}
.az-chip-desc {
  font-size: 11px;
  color: var(--az-muted);
  line-height: 1.4;
}

/* ── Branches ── */
.az-branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.az-branch {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(232, 160, 90, 0.22);
  background: linear-gradient(145deg, rgba(60, 16, 32, 0.8), rgba(31, 10, 16, 0.9));
}
.az-branch-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}
.az-branch-area {
  font-size: 12px;
  color: var(--az-saffron);
  font-weight: 600;
  margin-bottom: 12px;
}
.az-branch-meta {
  font-size: 12px;
  color: var(--az-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.az-branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(232, 160, 90, 0.12);
  border: 1px solid rgba(232, 160, 90, 0.35);
  color: var(--az-saffron);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.az-branch-phone:hover { background: rgba(232, 160, 90, 0.22); }

/* ── Wide feature strip ── */
.az-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 160, 90, 0.2);
  margin-bottom: clamp(40px, 8vw, 64px);
}
.az-strip-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.az-strip-copy {
  padding: clamp(24px, 5vw, 40px);
  background: var(--az-wine);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.az-strip-copy p {
  font-size: 14px;
  color: var(--az-muted);
  line-height: 1.65;
  margin: 12px 0 20px;
}
.az-strip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.az-strip-list li {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 50px;
  background: rgba(232, 160, 90, 0.12);
  color: var(--az-saffron);
}

/* ── Footer ── */
.az-footer {
  text-align: center;
  padding: 32px 16px;
  padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(232, 160, 90, 0.12);
  font-size: 11px;
  color: var(--az-muted);
}

@media (min-width: 640px) {
  .az-plates {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .az-chip { flex: 1 1 calc(33.333% - 10px); }
}

@media (max-width: 639px) {
  .az-hero { min-height: max(380px, 78svh); }
  .az-hero-actions { flex-direction: column; }
  .az-hero-actions .az-btn { width: 100%; }
  .az-plate:hover { transform: rotate(0deg); }
  .az-plate:nth-child(odd),
  .az-plate:nth-child(even) { transform: none; }
  .az-strip { grid-template-columns: 1fr; }
  .az-strip-img { min-height: 180px; max-height: 220px; }
  .az-chip { flex: 1 1 100%; }
}

@media (max-width: 380px) {
  .az-plates { gap: 10px; }
  .az-plate-cap { padding: 8px 4px 10px; }
  .az-plate-name { font-size: 11px; }
}
