/* =========================================================
   Glamav — Gen-Z beauty theme
   ========================================================= */
:root {
  /* Rose/magenta brand system — no purple. Matches the hero reference art. */
  --pink: #e5187a;
  --pink-soft: #f79ac4;
  --purple: #c2185b;   /* legacy token name, now the deep rose accent */
  --violet: #a3134f;   /* legacy token name, now the darkest rose */
  --coral: #ff7a9a;
  --ink: #1a0b1c;
  --ink-soft: #6b4a5c;
  --bg: #fff7fa;
  --bg-2: #fdedf4;
  --card: #ffffff;
  --line: #f6dfe9;
  --grad: linear-gradient(135deg, #f4468f 0%, #e5187a 55%, #c2185b 100%);
  --grad-soft: linear-gradient(120deg, #fdeef4 0%, #fce3ee 45%, #fbd7e7 100%);
  --shadow: 0 18px 50px -18px rgba(200, 24, 100, .32);
  --shadow-sm: 0 8px 24px -12px rgba(200, 24, 100, .26);
  --radius: 22px;
  --radius-sm: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--pink); }

.container-x { width: min(1180px, 92%); margin-inline: auto; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--pink);
  background: #fff;
  padding: .4rem .9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Buttons ---------- */
.btn-glow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad);
  color: #fff !important;
  border: none;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(229, 24, 122, .6);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-glow:hover { transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 18px 36px -10px rgba(200, 24, 100, .6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ink) !important;
  border: 1.5px solid var(--line);
  padding: .8rem 1.5rem; border-radius: 999px; font-weight: 600;
  transition: all .2s ease;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink) !important; transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Navbar ---------- */
.gg-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(240, 227, 242, .8);
}
.gg-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; }
.gg-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.gg-brand img { width: 40px; height: 40px; }
.gg-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.gg-wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.01em; }
.gg-tagline { font-family: var(--font-body); font-weight: 500; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: #9a8cc0; margin-top: 3px; }
.gg-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.gg-links a { color: var(--ink); font-weight: 500; position: relative; }
.gg-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad); transition: width .25s ease; }
.gg-links a:hover::after, .gg-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.cart-pill { position: relative; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--ink); }
.cart-count { background: var(--grad); color: #fff; border-radius: 999px; font-size: .72rem; min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* ---------- Hero ----------
   Layout mirrors the brand reference art: copy on the left, cut-out model on the
   right sitting inside a pink arc, a stacked trust-card rail pinned to the far
   right edge, and a live-booking pill overlapping the bottom-right corner. */
/* No bottom padding: the model is meant to run off the lower edge of the band,
   which `overflow: hidden` then crops — same framing as the reference art. */
.hero { position: relative; padding: 1.9rem 0 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--grad-soft);
}
.hero .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; animation: float 9s ease-in-out infinite; }
.hero .blob.b1 { width: 420px; height: 420px; background: #f79ac4; top: -110px; right: 18%; }
.hero .blob.b2 { width: 340px; height: 340px; background: #fbc7dd; bottom: -120px; left: -70px; animation-delay: -3s; }

.hero-grid {
  display: grid;
  /* Left column gets the extra width so the headline holds two lines, not three. */
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.5rem; align-items: center;
  position: relative;
  padding-bottom: 2rem;   /* keeps the left copy clear of the band's edge */
}

/* Eyebrow pill */
.hero .eyebrow { font-size: .74rem; letter-spacing: .12em; padding: .55rem 1.15rem; }

/* Capped so "before with Glamav" stays on one line inside the left column —
   above ~3.4rem it wraps the brand word onto a third line. */
.hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin: 1rem 0 0;
}
/* Explicit break so the headline always reads as the two lines in the brand art. */
.hero h1 br { display: inline; }
.hero h1 .brand-accent { color: var(--pink); -webkit-text-fill-color: var(--pink); }

/* Crown rule under the headline */
.hero-rule { display: flex; align-items: center; gap: .55rem; margin: 1.15rem 0 1.3rem; }
.hero-rule::before, .hero-rule::after {
  content: ""; height: 2px; border-radius: 2px; background: var(--pink); opacity: .75;
}
.hero-rule::before { width: 74px; }
.hero-rule::after { width: 96px; }
.hero-rule span { color: var(--pink); font-size: 1.05rem; line-height: 1; }

.hero p.lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 44ch; line-height: 1.65; margin: 0; }

.hero-actions { display: flex; gap: 1.1rem; margin-top: 1.9rem; flex-wrap: wrap; }
.hero-actions .btn-glow { padding: .95rem 1rem .95rem 1.9rem; font-size: 1.02rem; gap: .9rem; }
.hero-actions .btn-ghost { padding: .95rem 1.7rem; font-size: 1.02rem; border-color: var(--pink); color: var(--pink) !important; }
/* Circle-arrow chip inside the primary CTA */
.btn-glow .cta-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1;
}

/* Bottom stat strip — icon + number/label, hairline separators between items */
/* Single row, never wrapping — the four stats read as one strip in the brand art. */
.hero-stats { display: flex; align-items: center; gap: .85rem; margin-top: 2.2rem; flex-wrap: nowrap; }
.hero-stats > div { display: flex; align-items: center; gap: .5rem; padding-right: .85rem; border-right: 1px solid rgba(229, 24, 122, .18); white-space: nowrap; }
.hero-stats > div:last-child { border-right: none; padding-right: 0; }
.hero-stats .ic { font-size: 1.1rem; line-height: 1; color: var(--pink); flex: none; }
.hero-stats .num { font-family: var(--font-head); font-size: 1.12rem; font-weight: 800; color: var(--ink); line-height: 1.15; }
.hero-stats .lbl { font-size: .72rem; color: var(--ink-soft); }

/* ----- Right visual ----- */
.hero-visual {
  position: relative; padding-right: 150px;
  align-self: end; margin-bottom: -3rem;   /* bleed past the band, then get cropped */
}
/* Cut-outs usually carry dead space around the subject, so we crop to a portrait
   frame and bias it right — that centres the model inside the arc. Tune
   `object-position` if a replacement image sits differently in its canvas. */
.hero-model {
  position: relative; z-index: 1; display: block;
  width: 100%; height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover; object-position: 62% top;
}
/* Pink arc ring behind the model — conic sweep punched hollow with a radial mask */
.hero-arc {
  position: absolute; z-index: 0;
  top: 44%; left: 44%; transform: translate(-50%, -50%);
  width: 98%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 140deg, rgba(229,24,122,.9), rgba(244,70,143,.7) 22%, rgba(247,154,196,.35) 42%, rgba(253,238,244,0) 58%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 28px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 28px), #000 calc(100% - 28px));
  pointer-events: none;
}
/* Floating petals */
.hero-petal { position: absolute; z-index: 2; font-size: 1.15rem; opacity: .9; animation: float 7s ease-in-out infinite; pointer-events: none; }
.hero-petal.p1 { top: 8%;  left: 6%;  animation-delay: -1s; }
.hero-petal.p2 { top: 30%; right: 4%; animation-delay: -3.5s; }
.hero-petal.p3 { bottom: 14%; left: 12%; animation-delay: -5s; }

/* ----- Trust-card rail (far right) ----- */
.hero-cards {
  position: absolute; z-index: 3; right: 0; top: 50%; transform: translateY(-50%);
  display: grid; gap: .85rem; width: 200px;
}
.hero-card {
  display: flex; align-items: center; gap: .7rem;
  background: #fff; border-radius: 14px; padding: .75rem .85rem;
  box-shadow: 0 12px 34px -16px rgba(200, 24, 100, .45);
}
.hero-card .ic { font-size: 1.35rem; line-height: 1; flex: none; }
.hero-card b { display: block; font-size: 1.02rem; color: var(--pink); line-height: 1.15; }
.hero-card span { font-size: .74rem; color: var(--ink-soft); }
.hero-card.plain b { color: var(--ink); }

/* ----- Recent-booking pill ----- */
.hero-booking {
  position: absolute; z-index: 4; right: 0; bottom: .4rem;
  display: flex; align-items: center; gap: .7rem;
  background: #3d1030; color: #fff;
  border-radius: 999px; padding: .5rem .5rem .5rem .7rem;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, .6);
}
.hero-booking .avs { display: flex; }
.hero-booking .avs img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #3d1030; object-fit: cover; }
.hero-booking .avs img + img { margin-left: -12px; }
.hero-booking .txt b { display: block; font-size: .86rem; font-weight: 700; }
.hero-booking .txt span { font-size: .74rem; opacity: .75; }
.hero-booking .ago { background: var(--pink); border-radius: 999px; padding: .3rem .75rem; font-size: .72rem; font-weight: 600; white-space: nowrap; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .8rem 0 .6rem; }
.section-head p { color: var(--ink-soft); }
.bg-soft { background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%); }

/* ---------- Category chips ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cat-card {
  display: block; background: var(--card); border-radius: var(--radius); padding: 1.6rem; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  color: var(--ink);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: var(--ink); }
.cat-card .ic { font-size: 2.4rem; }
.cat-card h3 { font-size: 1.2rem; margin: .6rem 0 .3rem; }
.cat-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-thumb img { transform: scale(1.06); }
.svc-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.9); color: var(--purple); font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.svc-fav { position: absolute; top: 12px; right: 12px; background: var(--grad); color: #fff; font-size: .7rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.svc-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.svc-body h3 { font-size: 1.15rem; margin: 0; }
.svc-body h3 a { color: var(--ink); }
.svc-body h3 a:hover { color: var(--pink); }
.svc-body .desc { color: var(--ink-soft); font-size: .88rem; margin: 0; flex: 1; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.price { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.price small { color: var(--ink-soft); font-weight: 400; text-decoration: line-through; font-size: .8rem; margin-left: .35rem; }
.rating { font-size: .82rem; color: #f6a609; font-weight: 600; }
.duration { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(28,18,48,.75)); color: #fff; padding: 1.4rem .8rem .7rem; font-size: .85rem; font-weight: 600; opacity: 0; transition: opacity .25s ease; }
.gallery-grid figure:hover figcaption { opacity: 1; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tst-card { background: #fff; border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.tst-card .stars { color: #f6a609; margin-bottom: .6rem; }
.tst-card p { color: var(--ink-soft); font-style: italic; }
.tst-author { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.tst-author img { width: 44px; height: 44px; border-radius: 50%; }
.tst-author .nm { font-weight: 700; font-size: .95rem; }
.tst-author .rl { font-size: .8rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); border-radius: 28px; padding: 3rem; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { opacity: .9; }

/* ---------- Footer ---------- */
.gg-footer { background: var(--ink); color: #d9cfe9; padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.gg-footer a { color: #d9cfe9; }
.gg-footer a:hover { color: var(--pink-soft); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; }
.gg-footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 1rem; }
.gg-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .92rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .85rem; color: #9d8fb5; }

/* ---------- Forms / cards ---------- */
.card-x { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.6rem; }
.form-label { font-weight: 600; font-size: .9rem; margin-bottom: .3rem; display: block; }
.form-control, .form-select, textarea, input[type=text], input[type=email], input[type=tel], input[type=date], input[type=password], input[type=number] {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; font-family: inherit; font-size: .95rem; background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus, .form-select:focus, textarea:focus, input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,79,154,.12); }
.field { margin-bottom: 1.1rem; }
.text-danger, .validation-summary-errors { color: #e23d57; font-size: .85rem; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Breadcrumb / page header ---------- */
.page-hero { background: var(--grad-soft); padding: 3rem 0; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .crumb { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2rem; }
.filter-chip { background: #fff; border: 1.5px solid var(--line); color: var(--ink); padding: .5rem 1.1rem; border-radius: 999px; font-size: .9rem; font-weight: 600; cursor: pointer; }
.filter-chip.active, .filter-chip:hover { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- Cart ---------- */
.cart-row { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 80px; height: 60px; object-fit: cover; border-radius: 10px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { background: #fff; border: none; width: 34px; height: 34px; cursor: pointer; font-size: 1.1rem; color: var(--purple); }
.qty span { width: 38px; text-align: center; font-weight: 600; }

/* ---------- Alerts ---------- */
.alert-x { border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .92rem; margin-bottom: 1rem; }
.alert-success { background: #e7f9ee; color: #1b7a44; border: 1px solid #b6ebcb; }
.alert-error { background: #fdeef0; color: #c0203a; border: 1px solid #f5c4cc; }

/* ---------- WhatsApp floating button ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 1200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff !important;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .7);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-fab:hover { transform: scale(1.08); color: #fff !important; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25d366; color: #fff !important; border: none;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-family: inherit;
  transition: transform .2s ease, filter .2s ease;
}
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.04); color: #fff !important; }
.btn-wa.btn-block { width: 100%; }

/* ---------- Mobile sticky action bar (Call + Book Now) ---------- */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1250;
    padding: .55rem .8rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px -12px rgba(0, 0, 0, .35);
  }
  .mobile-cta a {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .8rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
    transition: filter .2s ease;
  }
  .mobile-cta-call { border: 1.5px solid var(--pink); color: var(--pink) !important; background: #fff; }
  .mobile-cta-book { background: var(--grad); color: #fff !important; }
  .mobile-cta a:active { filter: brightness(.95); }
  /* Lift the WhatsApp FAB above the bar so they never overlap. */
  .wa-fab { bottom: 84px; }
  /* Keep the footer's last line clear of the fixed bar. */
  .gg-footer { padding-bottom: 80px; }
}

/* ---------- City landing pages ---------- */
.landing-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.landing-body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2rem 0 .8rem; }
.landing-body p { color: var(--ink-soft); line-height: 1.85; margin: 0 0 1rem; }
.landing-body .lead-intro { font-size: 1.12rem; color: var(--ink); }
.check-list { list-style: none; padding: 0; margin: .5rem 0 1.4rem; display: grid; gap: .55rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.3rem; height: 1.3rem; background: var(--grad); color: #fff; border-radius: 50%; font-size: .8rem; display: grid; place-items: center; font-weight: 700; }
.landing-cta-inline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--grad-soft); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.4rem 0; flex-wrap: wrap; }

.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: .7rem; box-shadow: var(--shadow-sm); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--pink); font-weight: 700; font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-soft); margin: .7rem 0 0; line-height: 1.7; }

.landing-aside { position: sticky; top: 90px; display: grid; gap: 1.2rem; }
.lead-form .field { margin-bottom: .7rem; }
.mini-facts { list-style: none; padding: 0; margin: .6rem 0 0; display: grid; gap: .5rem; color: var(--ink-soft); font-size: .92rem; }

.link-chips { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.link-chips .filter-chip { cursor: pointer; }

@media (max-width: 900px) {
  .landing-grid { grid-template-columns: 1fr; }
  .landing-aside { position: static; order: -1; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Below ~1150px the right-edge rail has nowhere to sit, so the cards and the
   booking pill drop back into normal flow beneath the model. */
@media (max-width: 1150px) {
  .hero-visual { padding-right: 0; }
  .hero-cards {
    position: static; transform: none; width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem;
  }
  .hero-booking { position: static; align-self: start; width: fit-content; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero .blob.b1 { right: -60px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero h1 br { display: none; }          /* let it wrap naturally when narrow */
  .hero-stats { flex-wrap: wrap; }        /* four across won't fit on a phone */
  .hero-rule::before { width: 48px; }
  .hero-rule::after { width: 64px; }
  .cat-grid, .svc-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gg-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; background: #fff; padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow); transform: translateY(-150%); transition: transform .3s ease; }
  .gg-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .cat-grid, .svc-grid, .tst-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px 1fr; grid-auto-flow: row; }
  .hero-stats { gap: .9rem; }
  .hero-stats > div { padding-right: .9rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-actions .btn-glow, .hero-actions .btn-ghost { flex: 1; justify-content: center; }
  .row-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   Blog
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--grad); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px;
}
.blog-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.blog-tag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  color: var(--purple); background: var(--grad-soft);
  padding: .25rem .7rem; border-radius: 999px;
}
.blog-card-body h3 { margin: .2rem 0; font-size: 1.18rem; line-height: 1.3; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--pink); }
.blog-excerpt { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; margin: 0; }
.blog-meta { color: var(--ink-soft); font-size: .82rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.blog-readmore { margin-top: auto; font-weight: 700; color: var(--pink); padding-top: .4rem; }

/* Rendered article body (admin-authored HTML) */
.blog-content { color: var(--ink); font-size: 1.04rem; line-height: 1.8; }
.blog-content h2 { font-size: 1.7rem; margin: 2rem 0 .8rem; }
.blog-content h3 { font-size: 1.3rem; margin: 1.6rem 0 .6rem; }
.blog-content p { margin: 0 0 1.1rem; color: var(--ink-soft); }
.blog-content a { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.blog-content a:hover { color: var(--pink); }
.blog-content ul, .blog-content ol { margin: 0 0 1.2rem; padding-left: 1.3rem; color: var(--ink-soft); line-height: 1.9; }
.blog-content li { margin-bottom: .3rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 1.2rem 0; }
.blog-content strong { color: var(--ink); }
.blog-content blockquote {
  margin: 1.4rem 0; padding: .9rem 1.3rem;
  border-left: 4px solid var(--pink); background: var(--bg-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-soft);
}
.blog-content .blog-cta {
  margin: 2rem 0; padding: 1.6rem 1.7rem; text-align: center;
  background: var(--grad-soft); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.blog-content .blog-cta h3 { margin: 0 0 .4rem; font-size: 1.35rem; }
.blog-content .blog-cta p { margin: 0 0 1rem; color: var(--ink-soft); }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.blog-content thead th { background: var(--grad); color: #fff; text-align: left; padding: .8rem 1rem; font-family: var(--font-body); font-weight: 600; }
.blog-content tbody td { padding: .75rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.blog-content tbody tr:nth-child(even) { background: var(--bg-2); }
.blog-content tbody tr:last-child td { border-bottom: none; }

/* Blog toolbar: search + tag filter */
.blog-toolbar { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.blog-search { display: flex; gap: .5rem; flex: 1 1 280px; max-width: 420px; }
.blog-search input {
  flex: 1; border: 1.5px solid var(--line); background: #fff;
  border-radius: 999px; padding: .65rem 1.1rem; font-family: inherit; font-size: .92rem; color: var(--ink);
}
.blog-search input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,79,154,.12); }
.blog-tagbar { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip.active { background: var(--grad); color: #fff !important; border-color: transparent; }
.blog-resultline { color: var(--ink-soft); font-size: .9rem; margin: -.6rem 0 1.6rem; }

.blog-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.blog-share { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.blog-share .share-label { font-weight: 700; color: var(--ink); margin-right: .2rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font-weight: 600; font-size: .85rem; font-family: inherit; line-height: 1;
  transition: all .2s ease;
}
.share-btn svg { width: 18px; height: 18px; flex: none; }
.share-btn:hover { transform: translateY(-2px); border-color: transparent; color: #fff; }
.share-btn.wa:hover { background: #25D366; }
.share-btn.fb:hover { background: #1877F2; }
.share-btn.x:hover { background: #000; }
.share-btn.pin:hover { background: #E60023; }
.share-btn.li:hover { background: #0A66C2; }
.share-btn.copy:hover { background: var(--pink); }
.share-btn.copied { background: #16a34a; border-color: transparent; color: #fff; }

/* Footer social icons */
.foot-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.foot-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff !important;
  transition: transform .2s ease, background .2s ease;
}
.foot-social a svg { width: 19px; height: 19px; }
.foot-social a:hover { transform: translateY(-3px); color: #fff !important; }
.foot-social a.ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.foot-social a.fb:hover { background: #1877F2; }
.foot-social a.pin:hover { background: #E60023; }
.foot-social a.yt:hover { background: #FF0000; }
.foot-social a.x:hover { background: #000; }

@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Home SEO copy block + narrow FAQ */
.seo-copy-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.seo-copy p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 1.1rem; }
.faq-narrow { max-width: 760px; margin: 0 auto; }
@media (max-width: 760px) {
  .seo-copy-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* Service detail SEO content */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.svc-detail-grid h2 { font-size: 1.35rem; margin: 0 0 .8rem; }
.step-list { list-style: none; counter-reset: step; padding: 0; margin: .5rem 0 0; display: grid; gap: .75rem; }
.step-list li { position: relative; padding-left: 2.5rem; color: var(--ink-soft); line-height: 1.6; counter-increment: step; }
.step-list li b { color: var(--ink); }
.step-list li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 1.75rem; height: 1.75rem; background: var(--grad); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .85rem;
}
.svc-why { color: var(--ink-soft); line-height: 1.85; max-width: 80ch; }
@media (max-width: 760px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* =========================================================
   Locations directory page (Landing/Index)
   ========================================================= */
.loc-hero {
  background: var(--grad-soft);
  text-align: center;
  padding: 4rem 0 3.2rem;
  position: relative;
  overflow: hidden;
}
.loc-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 1rem 0 .8rem; }
.loc-hero-sub { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }
.loc-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2.2rem;
}
.loc-hero-stats > div {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(6px);
  border: 1px solid #fff;
  border-radius: var(--radius-sm);
  padding: .9rem 1.4rem; min-width: 118px;
  box-shadow: var(--shadow-sm);
}
.loc-hero-stats b { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--purple); line-height: 1; }
.loc-hero-stats span { font-size: .78rem; color: var(--ink-soft); font-weight: 600; }

/* quick popular-categories band */
.loc-quick { background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 0; }
.loc-quick .container-x { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.loc-quick-label { font-weight: 700; color: var(--ink); font-size: .9rem; white-space: nowrap; }
.loc-quick-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.loc-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--grad-soft); color: var(--purple);
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600; font-size: .88rem;
  border: 1.5px solid transparent; transition: all .2s ease;
}
.loc-pill:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* region sections */
.loc-region { margin-bottom: 3rem; }
.loc-region-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; padding-bottom: .8rem; border-bottom: 2px dashed var(--line); }
.loc-region-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 0; }
.loc-region-count { font-size: .82rem; font-weight: 700; color: var(--pink); background: #fff; border: 1.5px solid var(--line); padding: .35rem .85rem; border-radius: 999px; white-space: nowrap; }

.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.3rem; }
.loc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.loc-card-head {
  display: flex; align-items: center; gap: .55rem;
  padding: 1.15rem 1.3rem; color: #fff !important;
  position: relative;
}
.loc-card-head .loc-pin { font-size: 1.15rem; }
.loc-card-head .loc-city { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: #fff; }
.loc-card-head .loc-explore { margin-left: auto; font-size: .82rem; font-weight: 600; opacity: .9; transition: transform .2s ease; }
.loc-card:hover .loc-card-head .loc-explore { transform: translateX(4px); }

.loc-card-body { padding: 1.1rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.loc-areas { margin: 0; font-size: .84rem; color: var(--ink-soft); line-height: 1.55; }
.loc-areas b { color: var(--ink); }

.loc-chip-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.loc-mini-chip {
  display: inline-block; font-size: .8rem; font-weight: 600;
  padding: .38rem .8rem; border-radius: 999px;
  background: var(--grad-soft); color: var(--purple) !important;
  border: 1.5px solid transparent; transition: all .18s ease;
}
.loc-mini-chip:hover { background: var(--grad); color: #fff !important; transform: translateY(-2px); }
.loc-mini-chip.ghost { background: #fff; border-color: var(--line); color: var(--ink-soft) !important; }
.loc-mini-chip.ghost:hover { border-color: var(--pink); color: var(--pink) !important; background: #fff; }

.loc-more { margin-top: auto; }
.loc-more > summary {
  cursor: pointer; list-style: none; font-size: .82rem; font-weight: 700;
  color: var(--purple); padding: .5rem 0 .2rem; user-select: none;
}
.loc-more > summary::-webkit-details-marker { display: none; }
.loc-more > summary::after { content: " ▾"; }
.loc-more[open] > summary::after { content: " ▴"; }
.loc-more > summary:hover { color: var(--pink); }
.loc-chip-row-soft { margin-top: .6rem; }

/* closing CTA */
.loc-cta { background: var(--grad); color: #fff; text-align: center; padding: 3.5rem 0; }
.loc-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0 0 .7rem; }
.loc-cta p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.6rem; line-height: 1.6; }
.loc-cta-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.loc-cta .btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
.loc-cta .btn-ghost:hover { background: #fff; color: var(--purple) !important; border-color: #fff; }

@media (max-width: 560px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-hero-stats > div { min-width: 100px; padding: .75rem 1rem; }
  .loc-hero-stats b { font-size: 1.4rem; }
}

/* ---------- Review star picker (Views/Review/Index) ----------
   Radios laid out in reverse (5→1) so the CSS sibling combinator can light up the
   chosen star and every one before it — pure CSS, no JS, keyboard-navigable. */
.star-pick { display: inline-flex; flex-direction: row-reverse; gap: .25rem; }
.star-pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-pick label {
    font-size: 2.1rem;
    line-height: 1;
    color: #e6d8e4;
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
}
.star-pick label:hover,
.star-pick label:hover ~ label,
.star-pick input:checked ~ label { color: #ffb020; }
.star-pick label:hover { transform: scale(1.12); }
/* Keyboard users get a visible ring — the real input is off-screen. */
.star-pick input:focus-visible + label { outline: 2px solid var(--brand, #ff4f9a); outline-offset: 3px; border-radius: 4px; }

/* City-specific copy on landing pages — visually distinguished from the generated body
   because it's the part written by a human about that actual city. */
.local-intro {
    border-left: 3px solid var(--brand, #ff4f9a);
    padding: .1rem 0 .1rem 1rem;
    margin: 1.2rem 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

/* Pointer from a city landing page to the service page that carries the full detail. */
.detail-link {
    background: var(--bg-2, #faf7fa);
    border: 1px solid var(--line, #f0e6ef);
    border-radius: var(--radius-sm, 12px);
    padding: 1.4rem 1.5rem;
    margin: 2rem 0;
}
.detail-link p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
