/* Blo Out Beauty Lounge — design tokens & global styles */

:root {
  /* Palette (CLAUDE-DESIGN §5 — feminine premium, NOT clinical) */
  --rose: #C9788A;
  --rose-deep: #A85063;
  --blush: #F4DCDF;
  --champagne: #D8B98C;
  --plum: #3A2230;
  --plum-soft: #5A3A4B;
  --ivory: #FBF6F1;
  --cream: #FFFDFB;
  --charcoal: #2A2024;
  --line: #E8DDD6;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  --shadow-soft: 0 1px 2px rgba(58,34,48,0.04), 0 10px 30px rgba(58,34,48,0.06);
  --shadow-card: 0 1px 2px rgba(58,34,48,0.04), 0 20px 50px -20px rgba(58,34,48,0.18);

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }

/* ---- Typography ---- */
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.05; }
.italic-display { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum-soft);
}
.eyebrow.on-dark { color: rgba(255,253,251,0.7); }

h1.display { font-size: clamp(48px, 7vw, 96px); }
h2.display { font-size: clamp(32px, 4vw, 56px); }
h3.display { font-size: clamp(22px, 2vw, 30px); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--plum); color: var(--ivory); }
.btn-primary:hover { background: var(--rose-deep); }
.btn-rose { background: var(--rose); color: white; }
.btn-rose:hover { background: var(--rose-deep); }
.btn-outline { border-color: var(--plum); color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--ivory); }
.btn-ghost { color: var(--plum); }
.btn-ghost:hover { background: rgba(58,34,48,0.06); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1eb558; }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---- Generic ---- */
.divider { height: 1px; background: var(--line); width: 100%; }
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--plum);
  font-weight: 500;
}

/* Subtle ornamental rules */
.rule {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--plum-soft);
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* ---- Star ---- */
.star { color: var(--champagne); font-size: 14px; line-height: 1; letter-spacing: 1px; }

/* ---- Cards ---- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* Image placeholder for missing photos */
.placeholder {
  background: repeating-linear-gradient(135deg, var(--blush), var(--blush) 8px, var(--ivory) 8px, var(--ivory) 16px);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--plum-soft);
  text-align: center;
  padding: 16px;
}

/* ---- Scrollbar hide ---- */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation: fadeUp .6s .08s ease both; }
.fade-up-d2 { animation: fadeUp .6s .16s ease both; }
.fade-up-d3 { animation: fadeUp .6s .24s ease both; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,241,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-inner > .brand { flex: 0 0 auto; }
.nav-inner > .nav-links { flex: 1 1 auto; justify-content: center; }
.nav-inner > .nav-actions { flex: 0 0 auto; }
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--plum);
  cursor: pointer;
}
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  display: inline-block; transform: translateY(-2px);
}
.brand small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum-soft);
  font-weight: 500;
}
.nav-links {
  display: flex; gap: 6px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--plum);
  font-weight: 450;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
}
.nav-link:hover { background: rgba(58,34,48,0.06); }
.nav-link.active { background: var(--plum); color: var(--ivory); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ---- Mobile sheet ---- */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--plum);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--plum);
}
.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }
@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
}

.mobile-sheet {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ivory);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: transform .3s ease, visibility 0s linear .3s;
}
.mobile-sheet.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .3s ease, visibility 0s linear 0s;
}
.mobile-sheet a, .mobile-sheet button {
  font-family: var(--font-display);
  font-size: 26px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

/* ---- WhatsApp FAB ---- */
.fab {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 45;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.06); }
@media (max-width: 720px) {
  .fab { bottom: 80px; }
}

/* ---- Mobile bottom bar ---- */
.bottom-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 44;
  background: var(--plum);
  color: var(--ivory);
  padding: 12px 14px;
  gap: 10px;
  align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bottom-bar .btn { flex: 1; justify-content: center; }
@media (max-width: 720px) {
  .bottom-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 60px 0 96px;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 32px 0 60px; }
}
.hero h1 { margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero-sub { font-size: 17px; max-width: 540px; color: var(--plum-soft); }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 18px; align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-stat .num {
  font-family: var(--font-display); font-size: 32px; line-height: 1; color: var(--plum);
}
.hero-trust-stat .label { font-size: 12px; color: var(--plum-soft); letter-spacing: 0.05em; margin-top: 4px; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-image-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--ivory);
  color: var(--plum);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-card);
  max-width: 280px;
}
.hero-image-badge .stars-row { font-family: var(--font-display); font-size: 28px; line-height: 1; }

.hero-marquee-bg {
  position: absolute; right: -8%; bottom: -8%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(80px, 11vw, 160px);
  color: var(--blush);
  opacity: 0.45;
  pointer-events: none;
  white-space: nowrap;
  line-height: 0.8;
  letter-spacing: -0.04em;
  z-index: 0;
}
@media (max-width: 760px) { .hero-marquee-bg { display: none; } }

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--plum); color: var(--ivory);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center; justify-content: space-around;
}
.trust-item { display: flex; align-items: baseline; gap: 12px; }
.trust-item .big {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.trust-item .lbl { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,253,251,0.7); }

/* ---- Section heading ---- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { margin: 8px 0 0; }
.section-head .right { color: var(--plum-soft); max-width: 360px; font-size: 15px; }

/* ---- Service tiles ---- */
.signatures-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .signatures-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .signatures-grid { grid-template-columns: 1fr; } }

.sig-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--plum);
  cursor: pointer;
}
.sig-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.sig-card:hover img { transform: scale(1.04); }
.sig-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58,34,48,0.85) 100%);
}
.sig-card .body {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: var(--ivory);
  z-index: 2;
}
.sig-card .body h3 { font-family: var(--font-display); font-size: 26px; margin: 8px 0 6px; }
.sig-card .body p { font-size: 13px; color: rgba(255,253,251,0.85); margin: 0; }
.sig-card .body .tag { background: rgba(255,255,255,0.18); color: var(--ivory); }

/* ---- Category page ---- */
.cat-nav {
  position: sticky; top: 72px; z-index: 30;
  background: rgba(251,246,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.cat-nav-inner {
  display: flex; gap: 8px; overflow-x: auto; padding: 14px 0;
}
.cat-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px; color: var(--plum);
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s ease;
}
.cat-pill:hover { background: var(--blush); }
.cat-pill.active { background: var(--plum); color: var(--ivory); border-color: var(--plum); }

.svc-block { padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block-head { display: flex; gap: 16px; align-items: baseline; margin-bottom: 32px; }
.svc-block-head .icon { font-family: var(--font-display); font-size: 32px; color: var(--rose); }
.svc-block-head h2 { margin: 0; }
.svc-block-head p { color: var(--plum-soft); margin: 4px 0 0; max-width: 600px; font-size: 15px; }

.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px dashed var(--line);
  align-items: center;
}
.svc-row:first-child { border-top: 0; }
.svc-row .name { font-family: var(--font-display); font-size: 22px; color: var(--plum); }
.svc-row .meta { font-size: 12px; color: var(--plum-soft); margin-top: 4px; letter-spacing: 0.04em; }
.svc-row .meta .flag { color: var(--rose-deep); margin-left: 10px; font-style: italic; }
.svc-row .price { text-align: right; min-width: 120px; }
.svc-row .price .amount { font-family: var(--font-display); font-size: 22px; color: var(--plum); }
.svc-row .price .was { font-size: 13px; text-decoration: line-through; color: var(--plum-soft); margin-right: 8px; }
.svc-row .price .unverified { font-size: 12px; color: var(--plum-soft); font-style: italic; }
@media (max-width: 720px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .price { text-align: left; }
}

/* ---- Offer cards ---- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}
.offer-card:hover { transform: translateY(-3px); }
.offer-card .kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 600;
}
.offer-card .ribbon {
  position: absolute; top: 14px; right: 14px;
  background: var(--champagne); color: var(--plum);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.06em; font-weight: 600;
}
.offer-card h3 { font-family: var(--font-display); font-size: 26px; margin: 18px 0 6px; color: var(--plum); }
.offer-card .price-line { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.offer-card .price-line .aed { font-size: 12px; letter-spacing: 0.18em; color: var(--plum-soft); }
.offer-card .price-line .amt { font-family: var(--font-display); font-size: 40px; color: var(--plum); line-height: 1; }
.offer-card .price-line .was { font-size: 14px; color: var(--plum-soft); text-decoration: line-through; }
.offer-card .duration { font-size: 13px; color: var(--plum-soft); margin-top: 8px; }
.offer-card .body { font-size: 14px; color: var(--charcoal); margin: 16px 0 22px; }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* offer card hero variant */
.offer-card.hero-offer {
  grid-column: span 2;
  background: var(--plum);
  color: var(--ivory);
}
.offer-card.hero-offer .kicker { color: var(--champagne); }
.offer-card.hero-offer h3 { color: var(--ivory); }
.offer-card.hero-offer .price-line .amt { color: var(--ivory); }
.offer-card.hero-offer .price-line .aed { color: rgba(255,253,251,0.7); }
.offer-card.hero-offer .price-line .was { color: rgba(255,253,251,0.7); }
.offer-card.hero-offer .duration { color: rgba(255,253,251,0.7); }
.offer-card.hero-offer .body { color: rgba(255,253,251,0.85); }
@media (max-width: 560px) { .offer-card.hero-offer { grid-column: span 1; } }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

.gal-cell {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--blush);
}
.gal-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gal-cell:hover img { transform: scale(1.06); }
.gal-cell.tall { aspect-ratio: 1/1.4; }
.gal-cell.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 600px) { .gal-cell.wide { grid-column: span 2; aspect-ratio: 1/1; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(42,32,36,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fadeUp .2s ease both;
}
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { text-align: center; cursor: pointer; }
.team-card .avatar-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--blush);
}
.team-card .avatar-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.team-card:hover .avatar-wrap img { transform: scale(1.06); }
.team-card .rating-badge {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--plum);
  display: flex; align-items: center; gap: 4px;
}
.team-card .name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--plum);
  margin-bottom: 4px;
}
.team-card .role { font-size: 12px; letter-spacing: 0.04em; color: var(--plum-soft); }
.team-card .unconfirmed {
  display: block;
  font-size: 10px;
  margin-top: 6px;
  color: var(--plum-soft);
  font-style: italic;
  opacity: 0.6;
}

/* team filter */
.team-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  gap: 14px;
}
.review-card .stars-row { color: var(--champagne); letter-spacing: 2px; font-size: 14px; }
.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--plum);
}
.review-card blockquote::before { content: "“"; color: var(--rose); margin-right: 4px; }
.review-card blockquote::after { content: "”"; color: var(--rose); margin-left: 2px; }
.review-card .who { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--plum-soft); }
.review-card .who strong { color: var(--plum); font-weight: 500; }
.review-card .source-pill {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--blush); color: var(--plum); padding: 2px 8px; border-radius: 999px;
}

/* ---- Aggregate review block ---- */
.rating-hero {
  display: grid; grid-template-columns: auto 1fr; gap: 40px;
  align-items: center;
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 48px;
}
.rating-hero .big-num {
  font-family: var(--font-display);
  font-size: 96px; line-height: 0.9;
  color: var(--plum);
}
.rating-hero .stars-big { color: var(--champagne); font-size: 24px; letter-spacing: 2px; }
.rating-hero .ctx { color: var(--plum-soft); font-size: 14px; margin-top: 8px; }
@media (max-width: 600px) {
  .rating-hero { grid-template-columns: 1fr; padding: 28px; gap: 16px; }
  .rating-hero .big-num { font-size: 72px; }
}

/* ---- Map block ---- */
.map-section {
  background: var(--plum);
  color: var(--ivory);
}
.map-section .eyebrow { color: rgba(255,253,251,0.6); }
.map-section h2 { color: var(--ivory); }
.map-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .map-grid { grid-template-columns: 1fr; gap: 32px; } }

.map-canvas {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/3;
  background: linear-gradient(135deg, #2a1820 0%, #4a2c3c 100%);
  isolation: isolate;
  min-height: 280px;
}
@media (max-width: 880px) { .map-canvas { aspect-ratio: 4/3; } }
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-canvas iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15) contrast(1.05); }
.map-pin {
  position: absolute;
  left: 56%; top: 62%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.map-pin .pin-circle {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216,185,140,0.3), 0 0 0 16px rgba(216,185,140,0.12);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(216,185,140,0.3), 0 0 0 16px rgba(216,185,140,0.12); }
  50% { box-shadow: 0 0 0 6px rgba(216,185,140,0.4), 0 0 0 28px rgba(216,185,140,0.04); }
}
.map-pin .pin-label {
  margin-top: 10px;
  background: var(--ivory); color: var(--plum);
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  font-weight: 500;
  font-family: var(--font-display);
}
.map-pin .pin-label small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--plum-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.contact-block .row {
  display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,253,251,0.12);
  align-items: baseline;
}
.contact-block .row:first-child { border-top: 0; }
.contact-block .row .lbl { width: 90px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,253,251,0.55); flex-shrink: 0; }
.contact-block .row .val { font-family: var(--font-display); font-size: 22px; color: var(--ivory); line-height: 1.25; }
.contact-block .row .val small { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,253,251,0.55); display: block; margin-top: 4px; font-style: italic; }
/* On-dark button variants used inside .map-section */
.btn-on-dark-primary {
  background: var(--champagne);
  color: var(--plum);
}
.btn-on-dark-primary:hover { background: var(--ivory); }
.btn-on-dark-outline {
  border: 1px solid rgba(255,253,251,0.28);
  color: var(--ivory);
  background: transparent;
}
.btn-on-dark-outline:hover { background: rgba(255,253,251,0.08); border-color: rgba(255,253,251,0.5); }
.btn-on-dark-ghost {
  color: var(--ivory);
  background: rgba(255,253,251,0.06);
}
.btn-on-dark-ghost:hover { background: rgba(255,253,251,0.12); }

/* WhatsApp variant adapted for dark backgrounds — quieter */
.btn-wa-dark {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(37,211,102,0.55);
  position: relative;
}
.btn-wa-dark::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 12px rgba(37,211,102,0.6);
}
.btn-wa-dark:hover { background: rgba(37,211,102,0.1); }

.contact-block .actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
.footer h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--plum-soft); margin: 0 0 16px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a:hover { color: var(--rose-deep); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--plum-soft); }

/* ---- Booking modal ---- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(42,32,36,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeUp .2s ease both;
}
.modal {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.modal-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-head h3 { font-family: var(--font-display); font-size: 24px; margin: 0; color: var(--plum); }
.modal-head .step-dots { display: flex; gap: 6px; margin-top: 6px; }
.modal-head .step-dots i {
  width: 22px; height: 3px; background: var(--line); border-radius: 999px;
  display: inline-block;
}
.modal-head .step-dots i.on { background: var(--rose); }
.modal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--plum); }
.modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.modal-foot { padding: 18px 28px; border-top: 1px solid var(--line); display: flex; gap: 10px; justify-content: space-between; align-items: center; }

.choice-list { display: flex; flex-direction: column; gap: 8px; }
.choice {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  transition: all .15s ease;
  text-align: left;
}
.choice:hover { border-color: var(--rose); }
.choice.active { border-color: var(--rose); background: var(--blush); }
.choice .l { font-family: var(--font-display); font-size: 18px; color: var(--plum); }
.choice .r { font-size: 12px; color: var(--plum-soft); }

.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 480px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }
.time-pill {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all .15s ease;
}
.time-pill:hover { border-color: var(--rose); }
.time-pill.active { background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.time-pill.busy { opacity: 0.35; pointer-events: none; text-decoration: line-through; }

.date-strip { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 18px; }
.date-pill {
  flex: 0 0 auto;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  cursor: pointer;
  min-width: 64px;
  transition: all .15s ease;
}
.date-pill .dow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--plum-soft); }
.date-pill .day { font-family: var(--font-display); font-size: 22px; color: var(--plum); line-height: 1; margin-top: 2px; }
.date-pill.active { background: var(--plum); border-color: var(--plum); }
.date-pill.active .dow, .date-pill.active .day { color: var(--ivory); }

.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px dashed var(--line); }
.summary-row:first-child { border-top: 0; padding-top: 0; }
.summary-row .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--plum-soft); }
.summary-row .val { font-family: var(--font-display); color: var(--plum); font-size: 18px; text-align: right; }

.success {
  text-align: center;
  padding: 32px 8px;
}
.success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  color: var(--rose-deep);
}
.success h3 { font-family: var(--font-display); font-size: 32px; color: var(--plum); margin: 0 0 8px; }
.success p { color: var(--plum-soft); margin: 0; }

/* ---- Page transition ---- */
.page-wrap { animation: fadeUp .35s ease both; }

/* small device tweaks for review cards in carousel */
.reviews-marquee { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.reviews-marquee .review-card { flex: 0 0 calc((100% - 32px) / 3); min-width: 280px; scroll-snap-align: start; }
@media (max-width: 760px) { .reviews-marquee .review-card { flex: 0 0 78%; } }
