/* ============================================================
   BARBER — Landing Page Styles
   Dark warm concrete + wood + brass. RTL-first. Mobile-first.
   ============================================================ */

:root {
  /* backgrounds */
  --color-bg-primary: #141412;
  --color-bg-secondary: #1e1e1c;
  --color-concrete: #7a7a73;
  --color-concrete-light: #b8b6ae;

  /* warm accents */
  --color-wood: #8a5c35;
  --color-brass: #ab8253;
  --color-brass-light: #c9a877;

  /* text */
  --color-text-primary: #f5f3ef;
  --color-text-muted: #a8a69f;

  /* element blacks */
  --color-black: #0a0a0a;
  --color-leather: #161613;

  /* fonts */
  --font-heading-ar: 'Cairo', sans-serif;
  --font-body-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-heading-en: 'Poppins', sans-serif;
  --font-body-en: 'Inter', sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --ease-elastic: cubic-bezier(.36, 1.56, .64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body-ar);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body-ar);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-brass), var(--color-wood));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(171, 130, 83, .6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -8px rgba(171, 130, 83, .7); }
.btn--ghost {
  border-color: var(--color-brass);
  color: var(--color-brass-light);
  background: transparent;
}
.btn--ghost:hover { background: var(--color-brass); color: #fff; transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 14px;
}
.header--scrolled {
  background: rgba(20, 20, 18, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(171, 130, 83, .18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand__logo { height: 68px; width: auto; }

.nav {
  display: flex;
  gap: 30px;
  font-weight: 600;
}
.nav a {
  position: relative;
  color: var(--color-text-primary);
  padding-block: 4px;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--color-brass);
  transition: width .25s ease;
}
.nav a:hover { color: var(--color-brass-light); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--color-brass);
  color: var(--color-text-primary);
  font-family: var(--font-body-ar);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.lang-toggle .fi {
  width: 22px; height: 16px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
  flex-shrink: 0;
}
.lang-toggle:hover { background: var(--color-brass); color: #fff; transform: translateY(-2px); }
/* the in-menu language toggle only appears inside the mobile nav */
.lang-toggle--nav { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--color-text-primary);
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__videos { position: absolute; inset: 0; overflow: hidden; background: var(--color-black); }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: contrast(1.05) brightness(.62) saturate(.92);
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero__video.is-active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(20,20,18,.72) 55%, var(--color-bg-primary) 100%),
    radial-gradient(circle at 50% 45%, transparent 30%, rgba(10,10,10,.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-block: 120px;
}
.hero__logo {
  width: min(180px, 42vw);
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
  animation: fadeUp .8s ease both;
}
.hero__tagline {
  font-family: var(--font-heading-en);
  font-weight: 800;
  font-size: clamp(2.1rem, 6.5vw, 4.4rem);
  letter-spacing: -.01em;
  line-height: 1.06;
  margin-top: 8px;
}
.hero__tagline span { color: var(--color-brass); }
.hero__sub {
  font-family: var(--font-heading-en);
  letter-spacing: .3em;
  color: var(--color-concrete-light);
  font-size: clamp(.8rem, 3vw, 1.1rem);
  text-transform: uppercase;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.hero__scroll {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid var(--color-concrete-light);
  border-radius: 14px;
  position: relative;
}
.hero__scroll span::before {
  content: "";
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--color-brass-light);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* falling hair particles */
.hair-fall { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hair-fall i {
  position: absolute;
  top: -8%;
  width: 2px;
  height: 16px;
  background: var(--color-concrete-light);
  opacity: .12;
  border-radius: 2px;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(115vh) rotate(220deg); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding-block: clamp(60px, 9vw, 110px); }
.section__head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 54px; }
.section__kicker {
  font-family: var(--font-heading-en);
  letter-spacing: .32em;
  font-size: .78rem;
  color: var(--color-brass);
  text-transform: uppercase;
}
.section__title {
  font-family: var(--font-heading-ar);
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  margin-block: 10px 12px;
  line-height: 1.2;
}
.section__lead { color: var(--color-text-muted); font-size: 1.05rem; }

/* ---------- About ---------- */
.about { background: var(--color-bg-secondary); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(171,130,83,.2);
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}
.about__content .section__kicker { display: block; text-align: start; }
.about__content .section__title { text-align: start; margin-block: 8px 16px; }
.about__lead { color: var(--color-text-muted); font-size: 1.06rem; line-height: 1.8; margin-bottom: 22px; }
.about__features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.about__features li { display: flex; align-items: center; gap: 12px; color: var(--color-text-primary); font-weight: 600; }
.about__features li.is-highlight { color: var(--color-brass-light); font-weight: 700; }
.about__features li.is-highlight .about__ficon { background: var(--color-brass); color: #fff; }
.about__ficon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(171,130,83,.12);
  color: var(--color-brass-light);
}

/* ---------- Services (price list + brand) ---------- */
.services { background: var(--color-bg-primary); }
.services__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

/* LEFT: logo + campaign */
.services__brand {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px;
}
.services__logo { width: min(230px, 78%); filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
.services__campaign { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.services__campaign-kicker {
  font-family: var(--font-heading-en);
  letter-spacing: .32em; font-size: .74rem; text-transform: uppercase;
  color: var(--color-brass);
}
.services__campaign-title {
  font-family: "Aref Ruqaa Ink", var(--font-heading-ar), serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
  background: linear-gradient(180deg, #fff8ea, var(--color-brass-light) 55%, var(--color-wood));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 24px rgba(171,130,83,.15);
}
.services__cta { margin-top: 6px; }

/* RIGHT: services panel */
.services__head { text-align: start; margin-bottom: 22px; }
.services__head .section__kicker { display: block; text-align: start; }
.services__head .section__title { text-align: start; margin-block: 8px 0; }
.services__rows { display: flex; flex-direction: column; }
.srv-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 13px 2px;
  border-bottom: 1px dashed rgba(171,130,83,.22);
}
.srv-row:last-child { border-bottom: none; }
.srv-name { font-weight: 600; color: var(--color-text-primary); font-size: 1.08rem; white-space: nowrap; }
.srv-dots { flex: 1; border-bottom: 1px dotted rgba(184,182,174,.3); transform: translateY(-4px); }
.srv-price {
  font-family: var(--font-heading-en);
  font-weight: 700; color: var(--color-brass-light); font-size: 1.15rem; white-space: nowrap;
}
.srv-price em { font-style: normal; font-size: .72em; color: var(--color-text-muted); }

.services__note {
  margin-top: 22px;
  color: var(--color-concrete);
  font-size: .88rem;
  text-align: start;
}

/* ---------- Moving scissors strip divider ---------- */
.scissor-strip {
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='48' viewBox='0 0 64 48'><g transform='translate(20,12)' fill='none' stroke='%23c9a877' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='6' r='3'/><circle cx='6' cy='18' r='3'/><line x1='20' y1='4' x2='8.12' y2='15.88'/><line x1='14.47' y1='14.48' x2='20' y2='20'/><line x1='8.12' y1='8.12' x2='12' y2='12'/></g></svg>");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: 64px 48px;
  border-top: 1px solid rgba(171,130,83,.14);
  border-bottom: 1px solid rgba(171,130,83,.14);
  opacity: .9;
  animation: scissorScroll 1.4s linear infinite;
}
@keyframes scissorScroll {
  from { background-position: 0 center; }
  to   { background-position: 64px center; }
}

/* moving text marquee strip */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(171,130,83,.16);
  border-bottom: 1px solid rgba(171,130,83,.16);
  background: rgba(171,130,83,.04);
}
.marquee-strip__track { display: flex; width: max-content; animation: marqueeScroll 24s linear infinite; }
.marquee-strip__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-strip__item {
  font-family: var(--font-heading-en);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--color-text-primary);
  padding-block: 15px;
  white-space: nowrap;
}
.marquee-strip__sep { color: var(--color-brass); margin-inline: 24px; font-size: .85rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .scissor-strip, .marquee-strip__track { animation: none; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--color-bg-secondary); }
/* horizontal carousel with arrows */
.gallery__carousel { display: flex; align-items: center; gap: 10px; }
.gallery__track {
  display: flex;
  gap: 24px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 14px 6px 20px;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.4);
  color: var(--color-brass-light);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.gallery__arrow:hover { background: var(--color-brass); color: #fff; transform: scale(1.06); }

/* polaroid photo cards */
.gallery__item {
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  width: min(300px, 74vw);
  scroll-snap-align: center;
  background: #f4f1ea;
  padding: 12px 12px 44px;      /* bigger white bottom = real polaroid look */
  border-radius: 3px;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,.75);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -14px rgba(0,0,0,.85);
  z-index: 2;
}
.gallery__item img {
  display: block;
  width: 100%; height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter .5s ease;
}
.gallery__item:hover img { filter: grayscale(15%); }
.gallery__item::after {
  content: "+";
  position: absolute;
  inset-block-start: 22px;
  inset-inline-end: 22px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(171,130,83,.9);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
/* touch devices: no hover — keep photos black & white, just drop the hover-only "+" badge */
@media (hover: none) {
  .gallery__item::after { display: none; }
}

/* ---------- Branches ---------- */
.branches { background: var(--color-bg-primary); }
/* interactive map */
/* real dark map (Leaflet) */
.branch-map {
  position: relative;
  isolation: isolate;
  z-index: 0;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(171,130,83,.25);
  background: #0d0d0c;
}
.branch-map .leaflet-container { background: #0d0d0c; font-family: var(--font-body-ar); }
.map-hint {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 500;
  margin-inline: auto;
  width: max-content;
  max-width: 80%;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10,10,10,.82);
  border: 1px solid rgba(171,130,83,.4);
  color: var(--color-text-primary);
  font-size: .85rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.map-hint.is-visible { opacity: 1; }
.branch-map .leaflet-control-attribution {
  background: rgba(10,10,10,.6); color: var(--color-text-muted); font-size: 10px;
}
.branch-map .leaflet-control-attribution a { color: var(--color-brass-light); }
.branch-map .leaflet-bar a {
  background: var(--color-bg-secondary); color: var(--color-text-primary);
  border-color: rgba(171,130,83,.3);
}
.branch-map .leaflet-bar a:hover { background: var(--color-brass); color: #fff; }

/* ---------- Reviews (Google-style cards) ---------- */
.reviews { background: var(--color-bg-secondary); }
/* auto-sliding marquee */
.reviews__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews__track {
  display: flex;
  width: max-content;
  animation: reviewScroll 44s linear infinite;
}
.reviews__viewport:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 320px;
  width: 320px;
  margin-inline-end: 22px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.18);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.9);
  transition: transform .25s ease, border-color .25s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(171,130,83,.4); }
@media (prefers-reduced-motion: reduce) {
  .reviews__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .reviews__track { animation: none; }
}
.review-card__head { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brass-light), var(--color-wood));
  color: #fff; font-family: var(--font-heading-en); font-weight: 700; font-size: 1.1rem;
}
.review-card__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.review-card__name { font-family: var(--font-heading-en); font-weight: 700; color: var(--color-text-primary); font-size: .95rem; }
.review-card__stars { color: #fbbc04; font-size: .82rem; letter-spacing: 2px; }
.review-card__src { color: var(--color-text-muted); font-size: 1.15rem; flex: none; }
.review-card__text {
  color: var(--color-text-primary);
  font-size: .95rem; line-height: 1.8;
  margin: 0; flex: 1;
}
.review-card__meta { font-size: .8rem; color: var(--color-brass-light); }
.reviews__cta { display: flex; justify-content: center; margin-top: 36px; }
/* Google review dropdown */
.review-menu { position: relative; }
.review-menu__btn {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; list-style: none; user-select: none;
}
.review-menu__btn::-webkit-details-marker { display: none; }
.review-menu__btn i { font-size: 1.05rem; }
.review-menu__caret { font-size: .75rem; transition: transform .2s; }
.review-menu[open] .review-menu__caret { transform: rotate(180deg); }
.review-menu__list {
  position: absolute;
  inset-inline: 0;
  inset-block-start: calc(100% + 8px);
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.3);
  border-radius: var(--radius);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.9);
  z-index: 20;
}
.review-menu__label {
  font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--color-text-muted); padding: 6px 12px 4px;
}
.review-menu__list a {
  padding: 10px 12px; border-radius: 8px;
  color: var(--color-text-primary); font-weight: 600;
  transition: background .18s, color .18s;
}
.review-menu__list a:hover { background: var(--color-brass); color: #fff; }

/* custom brass markers */
.branch-marker { width: 140px; display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
.branch-marker__dot {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-brass);
  color: var(--color-brass-light);
  box-shadow: 0 7px 18px -4px rgba(0,0,0,.85);
  transition: transform .2s, background .2s, color .2s;
}
.branch-marker__logo {
  width: 30px; height: 30px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.branch-marker__label {
  font-size: .8rem; font-weight: 700;
  color: var(--color-text-primary);
  background: rgba(10,10,10,.85);
  padding: 2px 10px; border-radius: 999px;
  white-space: nowrap;
}
.branch-marker:hover .branch-marker__dot,
.branch-marker.is-active .branch-marker__dot {
  background: var(--color-brass); color: #fff; transform: scale(1.12);
}
.branch-marker.is-new .branch-marker__dot {
  border-color: var(--color-brass-light);
  animation: pinPulse 2.2s infinite;
}
@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 0 rgba(171,130,83,.55); }
  70%  { box-shadow: 0 0 0 15px rgba(171,130,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(171,130,83,0); }
}

/* on-map info popup (card shown when a pin is clicked) */
.branch-map .leaflet-popup-content-wrapper {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid rgba(171,130,83,.35);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px -8px rgba(0,0,0,.8);
}
.branch-map .leaflet-popup-content { margin: 16px 18px; }
.branch-map .leaflet-popup-tip { background: var(--color-bg-secondary); border: 1px solid rgba(171,130,83,.35); }
.branch-map .leaflet-popup-close-button { color: var(--color-text-muted); }
.branch-popup { position: relative; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; min-width: 160px; }
.branch-popup__badge { position: static; margin-bottom: 2px; }
.branch-popup__name {
  font-family: var(--font-heading-en);
  font-size: 1.3rem; font-weight: 700;
  color: var(--color-text-primary);
}
.branch-popup__loc { color: var(--color-text-muted); font-size: .95rem; }
.branch-popup__meta { color: var(--color-concrete); font-size: .8rem; }
.branch-popup__map {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-brass-light);
  font-weight: 700; font-size: .92rem;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.branch-popup__map:hover { border-color: var(--color-brass-light); }
.branch-badge {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  background: var(--color-brass);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .05em;
}

/* ---------- Contact ---------- */
.contact { background: var(--color-bg-secondary); position: relative; overflow: hidden; }
.contact .container { position: relative; z-index: 2; }

/* animated barber poles (brand colors) */
.pole-deco {
  position: absolute; top: 0;
  display: flex; flex-direction: column; align-items: center;
  z-index: 1; pointer-events: none;
}
.pole-deco--left { left: 3%; }
.pole-deco--right { right: 3%; }
.pole-deco__thread {
  width: 2px; height: 46px;
  background: linear-gradient(180deg, rgba(171,130,83,.1), var(--color-brass) 45%, var(--color-brass-light));
  position: relative;
}
.pole-deco__thread::before {
  content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--color-brass); background: var(--color-bg-secondary);
}
.pole-deco__cap {
  width: 44px; height: 20px;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, #e4c896, #8a5c35);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
  margin-bottom: -2px; z-index: 2;
}
.pole-deco__base {
  width: 42px; height: 15px;
  border-radius: 5px;
  background: linear-gradient(180deg, #c9a877, #6e4a2a);
  box-shadow: 0 4px 9px rgba(0,0,0,.5);
  margin-top: -2px; z-index: 2;
}
.pole-deco__body {
  width: 32px; height: 200px;
  border-radius: 8px;
  border: 2px solid rgba(171,130,83,.55);
  background-image: repeating-linear-gradient(45deg,
    #f5f3ef 0 10px,
    var(--color-brass) 10px 20px,
    var(--color-bg-primary) 20px 30px);
  background-size: 42.4264px 42.4264px;   /* 30 * √2 — locks a seamless tile */
  box-shadow: inset 0 0 14px rgba(0,0,0,.5), 0 6px 16px rgba(0,0,0,.55);
  animation: barberSpin 2.6s linear infinite;
}
@keyframes barberSpin {
  from { background-position: 0 0; }
  to   { background-position: 42.4264px 0; }   /* exactly one tile → no jump */
}
@media (prefers-reduced-motion: reduce) { .pole-deco__body { animation: none; } }
/* smaller, still lit, behind content on phones/tablets */
@media (max-width: 1024px) {
  .pole-deco { z-index: 0; }
  .pole-deco--left { left: 0; }
  .pole-deco--right { right: 0; }
  .pole-deco__thread { height: 22px; }
  .pole-deco__cap { width: 30px; height: 14px; }
  .pole-deco__base { width: 28px; height: 11px; }
  .pole-deco__body { width: 20px; height: 120px; }
}

.contact .section__head { text-align: center; }
.contact__links {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 760px; margin-inline: auto;
}
.contact__icon { font-size: 2rem; line-height: 1; color: var(--color-brass-light); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  max-width: 980px;
  margin-inline: auto;
  align-items: start;
}
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.contact__form .field { display: flex; flex-direction: column; gap: 6px; }
.contact__form label { font-weight: 600; font-size: .9rem; color: var(--color-text-muted); }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--color-text-primary);
  font-family: var(--font-body-ar);
  font-size: 1rem;
  transition: border-color .2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { outline: none; border-color: var(--color-brass); }
.contact__form textarea { resize: vertical; }
.contact__send { margin-top: 4px; align-self: flex-start; }

.contact__row { display: flex; gap: 14px; }
.contact__row .contact__link { flex: 1; }
.contact__link {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.2);
  border-radius: var(--radius);
  padding: 20px 16px;
  color: var(--color-brass-light);
  transition: transform .25s, border-color .25s;
}
.contact__link:hover { transform: translateY(-4px); border-color: var(--color-brass); }
.contact__label { color: var(--color-text-primary); font-weight: 700; font-size: 1rem; }
.contact__value { color: var(--color-text-muted); font-size: .9rem; }
.contact__hours {
  background: var(--color-bg-primary);
  border: 1px solid rgba(171,130,83,.18);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact__hours-title { display: block; color: var(--color-brass-light); font-weight: 700; margin-bottom: 8px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(171,130,83,.18);
}
.hours-row:last-child { border-bottom: none; }
.hours-row__name { color: var(--color-text-primary); font-weight: 600; }
.hours-row__time { color: var(--color-brass-light); font-size: .95rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-black);
  padding-block: 56px 0;
  border-top: 1px solid rgba(171,130,83,.15);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__logo { height: 70px; width: auto; opacity: .95; margin-bottom: 16px; }
.footer__about { color: var(--color-text-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 18px; max-width: 340px; }
.footer__title {
  font-family: var(--font-heading-en);
  font-size: 1.05rem; font-weight: 700; letter-spacing: .08em;
  color: var(--color-text-primary);
  margin-bottom: 18px;
}
.footer__line { display: block; color: var(--color-text-muted); font-size: .95rem; margin-bottom: 12px; }
a.footer__link { transition: color .2s; }
a.footer__link:hover { color: var(--color-brass-light); }
.footer__hours { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 16px; color: var(--color-text-muted); font-size: .9rem; }
.footer__hours li span:last-child { color: var(--color-brass-light); white-space: nowrap; }
.footer__note { margin-top: 12px; color: var(--color-brass-light); font-size: .85rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--color-text-muted); font-size: .95rem; transition: color .2s; }
.footer__links a:hover { color: var(--color-brass-light); }
.footer__maplink { display: inline-block; margin-top: 16px; color: var(--color-brass-light); font-weight: 600; font-size: .92rem; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  color: var(--color-brass-light);
  font-size: 1.2rem;
  transition: background .25s, color .25s, transform .2s;
}
.footer__social a:hover { background: var(--color-brass); color: #fff; transform: translateY(-2px); }
.footer__bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(171,130,83,.12);
  padding-block: 22px;
  text-align: center;
}
.footer__copy { color: var(--color-concrete); font-size: .85rem; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer__col { display: flex; flex-direction: column; align-items: center; }
  .footer__col--brand { align-items: center; }
  .footer__logo { display: block; margin-inline: auto; }
  .footer__about { max-width: none; }
  .footer__social { justify-content: center; }
  .footer__hours { align-items: stretch; width: 100%; max-width: 300px; }
  .footer__hours li { justify-content: space-between; gap: 10px; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-end: 22px;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brass-light), var(--color-wood));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -6px rgba(171,130,83,.6);
  animation: waPulse 2.4s infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(171,130,83,.5); }
  70% { box-shadow: 0 0 0 16px rgba(171,130,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(171,130,83,0); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(8,8,7,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox--open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox__close {
  position: absolute;
  inset-block-start: 20px;
  inset-inline-end: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    height: 100vh;
    width: min(76vw, 300px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    background: rgba(15,15,13,.97);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform .35s ease;
    font-size: 1.2rem;
  }
  /* RTL: panel sits on the left, so it hides to the left */
  [dir="rtl"] .nav { transform: translateX(-100%); }
  .nav--open,
  [dir="rtl"] .nav--open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  /* move the language toggle into the menu: hide the top-bar one, show the in-menu one */
  .header__actions .lang-toggle { display: none; }
  .lang-toggle--nav { display: inline-flex; margin-top: 6px; }
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .services__inner { gap: 34px; }
  .branch-map { aspect-ratio: 4 / 3; }
}

/* ---------- Mobile ---------- */
@media (max-width: 620px) {
  .section { padding-block: clamp(44px, 11vw, 80px); }
  .section__head { margin-bottom: 34px; }

  /* header a touch tighter */
  .header__actions { gap: 8px; }
  .lang-toggle { height: 36px; padding: 0 10px; font-size: .85rem; gap: 6px; }
  .brand__logo { height: 54px; }
  /* hero logo on phones — slightly smaller than the services logo */
  .hero__logo { width: min(190px, 62vw); height: auto; }

  /* reviews slider: narrower cards on phones */
  .review-card { flex-basis: 78vw; width: 78vw; margin-inline-end: 16px; }

  /* about stacks: image on top */
  .about__inner { grid-template-columns: 1fr; gap: 26px; }
  .about__media img { aspect-ratio: 3 / 2; }

  /* services stack: logo on top, price list below */
  .services__inner { grid-template-columns: 1fr; gap: 28px; }
  .services__head { text-align: center; }
  .services__head .section__kicker, .services__head .section__title { text-align: center; }

  /* gallery carousel on mobile */
  .gallery__carousel { gap: 4px; }
  .gallery__arrow { width: 38px; height: 38px; }
  .gallery__item { width: min(240px, 68vw); padding: 9px 9px 30px; }

  /* map: taller so pins have room */
  .branch-map { aspect-ratio: auto; height: 60vh; min-height: 380px; max-height: 520px; }
  .branch-marker__dot { width: 44px; height: 44px; }
  .branch-marker__logo { width: 28px; height: 28px; }
  .branch-marker__label { font-size: .72rem; }

  /* contact form + side stack */
  .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__send { align-self: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
