/* ============================================================
   La Playa Salon & Spa — styles
   Palette: #0a0a0c bg · #D4AF37 gold · #F5F0E6 ivory · #AAA59B grey
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-soft: #111014;
  --bg-card: rgba(22, 20, 16, 0.55);
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --gold-line: rgba(212, 175, 55, 0.30);
  --ivory: #F5F0E6;
  --grey: #AAA59B;
  --serif: 'Cormorant Garamond', 'Cairo', serif;
  --sans: 'Poppins', 'Cairo', sans-serif;
  --ar: 'Cairo', 'Poppins', sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--ar);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
html[lang="en"] body { font-family: var(--sans); font-weight: 300; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 15px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s;
  text-align: center;
}
.btn-small { padding: 10px 22px; font-size: 13.5px; }
.btn-gold {
  background: linear-gradient(135deg, #e6c862, var(--gold) 55%, #b8932b);
  color: #14120a;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
.btn-ghost {
  border: 1px solid var(--gold-line);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled { background: rgba(10, 10, 12, 0.92); border-bottom-color: var(--gold-line); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 44px; height: 44px; object-fit: contain; }
.nav-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.34em;
  color: var(--gold);
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14px;
  color: var(--ivory);
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s, opacity 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 7px 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.lang-toggle:hover { background: var(--gold); color: var(--bg); }
.nav-book {
  background: var(--gold);
  color: #14120a;
  font-weight: 500;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 2px;
  transition: filter 0.3s;
}
.nav-book:hover { filter: brightness(1.12); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 1.6px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero_bg.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) infinite alternate;
}
.no-webp .hero-bg { background-image: url('../assets/img/hero_bg.jpg'); }
@keyframes heroDrift { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.12) translateY(-14px); } }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 105%, rgba(212,175,55,0.10), transparent 55%),
    linear-gradient(180deg, rgba(10,10,12,0.82) 0%, rgba(10,10,12,0.72) 45%, rgba(10,10,12,0.94) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 110px 22px 60px; max-width: 860px; }
.hero-logo { width: 170px; height: auto; margin: 0 auto 16px; filter: drop-shadow(0 8px 32px rgba(212,175,55,0.35)); }
.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
html[lang="ar"] .hero-kicker { letter-spacing: 0.2em; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 56px);
  line-height: 1.3;
  color: var(--ivory);
}
html[lang="ar"] .hero-title { font-family: var(--ar); font-weight: 700; }
.hero-tagline-alt {
  display: block;
  font-size: clamp(15px, 2vw, 21px);
  color: var(--grey);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 12px;
}
.hero-positioning {
  margin: 26px auto 0;
  color: var(--gold);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.04em;
  border-block: 1px solid var(--gold-line);
  display: inline-block;
  padding: 10px 18px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-offer-hint { margin-top: 22px; font-size: 14px; color: var(--grey); }
.hero-offer-hint strong { color: var(--gold); font-weight: 600; }
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--gold-line);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollDrop 2.4s var(--ease) infinite;
}
@keyframes scrollDrop { to { top: 110%; } }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-kicker {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
html[lang="ar"] .section-kicker { letter-spacing: 0.18em; }
.section-title {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  color: var(--ivory);
}
html[lang="ar"] .section-title { font-family: var(--ar); font-weight: 700; }
.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px auto 0;
  position: relative;
}
.gold-rule::after {
  content: '';
  position: absolute;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background: var(--gold);
}

/* ---------- about ---------- */
.about { background: var(--bg); }
.about-lead {
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
  font-size: clamp(15.5px, 1.8vw, 18px);
  color: var(--ivory);
  opacity: 0.92;
}
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.ritual-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 3px;
  padding: 34px 24px;
  text-align: center;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.ritual-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.ritual-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ritual-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ritual-card h3 { font-size: 16.5px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.ritual-card p { font-size: 14px; color: var(--grey); }

/* ---------- services ---------- */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%); }
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 44px 0 26px;
  flex-wrap: wrap;
}
.svc-tab {
  padding: 12px 28px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  color: var(--ivory);
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.svc-tab.active {
  background: var(--gold);
  color: #14120a;
  border-color: var(--gold);
  font-weight: 600;
}
.svc-tab:not(.active):hover { border-color: var(--gold); color: var(--gold); }
.svc-pills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.svc-pill {
  padding: 8px 20px;
  font-size: 13.5px;
  color: var(--grey);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 30px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.svc-pill.active { color: var(--gold); border-color: var(--gold); background: var(--gold-soft); }
.svc-pill:not(.active):hover { color: var(--ivory); border-color: var(--gold-line); }
.svc-note { text-align: center; color: var(--grey); font-size: 14.5px; max-width: 640px; margin: 0 auto 30px; }

.svc-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.svc-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.35s;
}
.svc-card.open, .svc-card:hover { border-color: var(--gold-line); }
.svc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-align: start;
}
.svc-code {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 4px 9px;
  border-radius: 2px;
  white-space: nowrap;
}
.svc-names { flex: 1; min-width: 0; }
.svc-name-main { font-size: 16.5px; font-weight: 600; color: var(--ivory); line-height: 1.4; }
.svc-name-sub {
  font-size: 12.5px;
  color: var(--grey);
  font-family: var(--serif);
  letter-spacing: 0.08em;
}
html[lang="en"] .svc-name-sub { font-family: var(--ar); letter-spacing: 0; }
.svc-meta { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.svc-duration { font-size: 13px; color: var(--grey); }
.svc-price { font-size: 17px; color: var(--gold); font-weight: 600; font-family: var(--serif); }
html[lang="ar"] .svc-price { font-family: var(--ar); }
.svc-chevron {
  width: 10px;
  height: 10px;
  border-inline-end: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.svc-card.open .svc-chevron { transform: rotate(225deg); }
.svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.svc-card.open .svc-body { grid-template-rows: 1fr; }
.svc-body-inner { overflow: hidden; }
.svc-body-pad { padding: 4px 22px 22px; border-top: 1px solid rgba(212, 175, 55, 0.12); }
.svc-inc-title {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 10px;
}
html[lang="ar"] .svc-inc-title { letter-spacing: 0.1em; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-chip {
  font-size: 13px;
  color: var(--ivory);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 30px;
  padding: 5px 14px;
}
.svc-chip.choose { border-style: dashed; color: var(--grey); }
.svc-book {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #e6c862, var(--gold) 55%, #b8932b);
  color: #14120a;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.svc-book:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(212, 175, 55, 0.35); }
.svc-book svg { width: 17px; height: 17px; fill: #14120a; }

/* add-ons */
.addon-group-title {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 38px 0 18px;
  font-weight: 600;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 3px;
  padding: 14px 18px;
  transition: border-color 0.3s;
}
.addon-card:hover { border-color: var(--gold-line); }
.addon-info { min-width: 0; }
.addon-name { font-size: 14.5px; font-weight: 600; color: var(--ivory); }
.addon-sub { font-size: 11.5px; color: var(--grey); }
.addon-side { text-align: end; white-space: nowrap; }
.addon-price { font-size: 15px; color: var(--gold); font-weight: 600; }
.addon-price.free { font-size: 12.5px; letter-spacing: 0.04em; }
.addon-dur { font-size: 11.5px; color: var(--grey); }

/* ---------- offer band ---------- */
.offer-band {
  background:
    radial-gradient(ellipse 70% 130% at 50% 50%, rgba(212, 175, 55, 0.14), transparent 70%),
    var(--bg-soft);
  border-block: 1px solid var(--gold-line);
  padding: 60px 0;
}
.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.offer-main { display: flex; align-items: center; gap: 26px; }
.offer-pct {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 84px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.offer-title { font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; color: var(--ivory); }
.offer-sub { color: var(--grey); font-size: 15px; margin-top: 6px; }
.offer-loyalty { text-align: center; max-width: 360px; }
.offer-loyalty p { color: var(--ivory); font-size: 14.5px; margin-bottom: 16px; opacity: 0.9; }

/* ---------- gallery ---------- */
.gallery-grid {
  margin-top: 50px;
  columns: 4 240px;
  column-gap: 14px;
}
.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 0;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease), opacity 0.6s;
  opacity: 0.92;
}
.gallery-item:hover img { transform: scale(1.045); opacity: 1; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: var(--gold-line); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 6, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: var(--ivory);
  font-size: 30px;
  line-height: 1;
  padding: 14px;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; color: var(--gold); }
.lb-close { top: 14px; inset-inline-end: 18px; font-size: 40px; }
.lb-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 10px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--grey);
  font-size: 13.5px;
  text-align: center;
  max-width: 80vw;
}

/* ---------- location ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.loc-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 3px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.4s;
}
.loc-card:hover { border-color: var(--gold-line); }
.loc-card h3 {
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
html[lang="ar"] .loc-card h3 { letter-spacing: 0.12em; }
.loc-card p { color: var(--ivory); font-size: 15px; opacity: 0.92; }
.loc-hours-time {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  direction: ltr;
}
.loc-parking { color: var(--gold) !important; font-size: 13.5px !important; margin: 10px 0 18px; }
.loc-card .btn { margin-top: 14px; }

/* ---------- footer ---------- */
.footer {
  background: #070708;
  border-top: 1px solid var(--gold-line);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand img { width: 80px; height: auto; margin-bottom: 14px; }
.footer-tagline { color: var(--grey); font-size: 13.5px; max-width: 240px; }
.footer-col h4 {
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
html[lang="ar"] .footer-col h4 { letter-spacing: 0.1em; }
.footer-link {
  display: block;
  color: var(--ivory);
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
html[dir="rtl"] .footer-link[dir="ltr"] { text-align: right; }
.footer-link:hover { color: var(--gold); }
.footer-addr, .footer-hours { color: var(--grey); font-size: 13.5px; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 18px 22px;
  text-align: center;
  color: var(--grey);
  font-size: 13px;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 18px; }
}

@media (max-width: 767px) {
  .section { padding: 68px 0; }
  .nav-links {
    position: fixed;
    top: 64px;
    inset-inline: 0;
    background: rgba(10, 10, 12, 0.97);
    border-bottom: 1px solid var(--gold-line);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 26px; font-size: 15.5px; }
  .nav-burger { display: flex; }
  .nav-book { display: none; }
  .loc-grid { grid-template-columns: 1fr; }
  .offer-inner { flex-direction: column; text-align: center; }
  .offer-main { flex-direction: column; gap: 10px; text-align: center; }
  .svc-head { flex-wrap: wrap; gap: 10px 14px; padding: 16px; }
  .svc-names { flex-basis: calc(100% - 110px); }
  .svc-meta { width: 100%; justify-content: space-between; order: 3; }
  .svc-chevron { position: absolute; } /* repositioned via head padding */
  .svc-card { position: relative; }
  .svc-chevron { inset-inline-end: 18px; top: 26px; }
  .svc-body-pad { padding: 4px 16px 18px; }
  .addon-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 150px; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-logo { width: 130px; }
  .lb-prev, .lb-next { font-size: 24px; padding: 10px; }
}

@media (max-width: 419px) {
  .container { padding: 0 16px; }
  .svc-tabs { gap: 6px; }
  .svc-tab { padding: 10px 16px; font-size: 13.5px; }
  .hero-ctas .btn { width: 100%; }
}

.footer-sublabel{display:block;margin-top:.9rem;color:#D4AF37;font-size:.78rem;letter-spacing:.05em;opacity:.85}
.footer-sublabel:first-of-type{margin-top:.2rem}

/* ============ batch 2: service photos, social icons, logo sizing ============ */

/* service card thumbnail (in head) */
.svc-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 80px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  display: block;
}
.svc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* large photo inside expanded card */
.svc-photo-zoom {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 16px auto 4px;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  cursor: zoom-in;
  position: relative;
}
.svc-photo-zoom::after {
  content: '⤢';
  position: absolute;
  bottom: 8px;
  inset-inline-end: 10px;
  color: var(--gold);
  background: rgba(10, 10, 12, 0.65);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 14px;
  pointer-events: none;
}
.svc-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.svc-photo-zoom:hover img { transform: scale(1.03); }

/* addon thumbnail */
.addon-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 65px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  padding: 0;
  cursor: zoom-in;
}
.addon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* single-image lightbox mode */
.lightbox.single .lb-prev,
.lightbox.single .lb-next { display: none; }

/* footer social icons */
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.social-icon svg { width: 21px; height: 21px; fill: currentColor; }
.social-icon:hover { background: var(--gold); color: #14120a; transform: translateY(-3px); }

/* "see you soon" kicker — emphasized */
.kicker-big {
  font-size: 20px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
}
html[lang="ar"] .kicker-big { letter-spacing: 0.1em; }

/* live-menu nav link */
.nav-livemenu {
  color: var(--gold) !important;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  padding: 6px 12px !important;
  opacity: 1 !important;
}
.nav-livemenu:hover { background: var(--gold-soft); }
.nav-livemenu::after { display: none !important; }
.nav-livemenu-ext { font-size: 11px; }

/* bigger palm logo everywhere */
.nav-logo { width: 58px; height: 58px; }
.hero-logo { width: 220px; filter: drop-shadow(0 0 1px rgba(212,175,55,0.6)) drop-shadow(0 8px 36px rgba(212,175,55,0.45)); }
.footer-brand img { width: 110px; }

@media (max-width: 767px) {
  .hero-logo { width: 165px; }
  .nav-logo { width: 48px; height: 48px; }
  .svc-thumb { width: 54px; height: 68px; }
  .svc-head { padding-inline-end: 44px; }
  .svc-names { flex-basis: calc(100% - 190px); }
  .nav-livemenu { display: inline-block; margin: 8px 26px; width: fit-content; }
}
