/* =====================================================
   MASSAGE BY SANA — Shared Stylesheet
   ===================================================== */

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

:root {
  --pink:      #f7c5cc;
  --pink-lt:   #fde8eb;
  --pink-mid:  #f0a8b0;
  --pink-dark: #d4737e;
  --rose:      #c0505c;
  --white:     #ffffff;
  --off:       #fdf9f9;
  --text:      #1e1618;
  --text-mid:  #5a4548;
  --text-lt:   #8a7275;
  --border:    #f0dfe0;
  --green:     #25d366;
}

@media (min-width: 769px) { html { scroll-behavior: smooth; } }
a, button { -webkit-tap-highlight-color: rgba(192,80,92,.15); }
body { padding-bottom: env(safe-area-inset-bottom); font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; overscroll-behavior-y: none; }
::selection { background: var(--pink); color: var(--text); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--pink-lt); }
::-webkit-scrollbar-thumb { background: var(--pink-dark); border-radius: 99px; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── LAYOUT ── */
/* wrap: content container — readable width, centred */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ── HEADER / NAV ── */
/* Inner pages: sticky solid white nav */
body:not(.has-parallax) header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #fff !important;
  border-bottom: 1.5px solid #f0dfe0 !important;
}
body:not(.has-parallax) header .hamburger span { background: var(--text) !important; }
body:not(.has-parallax) header .logo-text-main { color: var(--text) !important; }
body:not(.has-parallax) header .logo-text-by { color: var(--rose) !important; }

/* Header base: z-index only.
   Homepage: position:fixed + transparent via index.html critical CSS.
   Inner pages: position:sticky + white via body:not(.has-parallax) below. */
header { z-index: 200; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: .01em; }
.logo span { color: var(--rose); font-style: italic; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { font-size: .8rem; font-weight: 500; padding: 6px 12px; color: var(--text-mid); text-decoration: none; border-radius: 6px; transition: background .2s, color .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--pink-lt); color: var(--rose); }
/* Over dark hero: glass hover instead of pink */
/* Homepage hero only: glass hover over dark video */
.has-parallax header:not(.nav-solid) .nav-links a:hover,
.has-parallax header:not(.nav-solid) .nav-links a.active { background: rgba(255,255,255,.15); color: #fff; }
.nav-call { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--text-mid); text-decoration: none; padding: 6px 10px; border-radius: 6px; border: 1.5px solid var(--border); transition: border-color .2s, color .2s; white-space: nowrap; }
.nav-call:hover { border-color: var(--rose); color: var(--rose); }
.nav-call svg { width: 14px; height: 14px; stroke: var(--rose); flex-shrink: 0; }
.nav-call span { display: inline; }
.nav-wa { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600; padding: 8px 16px; background: var(--green); color: #fff; text-decoration: none; border-radius: 8px; white-space: nowrap; transition: opacity .2s, transform .2s; }
.nav-wa:hover { opacity: .9; transform: translateY(-1px); }
.nav-wa svg { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }
/* ── MOBILE CALL BUTTON ── */
.mob-call-btn { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; text-decoration: none; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.mob-call-btn svg { stroke: var(--text); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV — slide down dropdown ── */
/* ── MOBILE SLIDE-DOWN NAV ── */
.mob-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 1100;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(30,22,24,.12);
  padding: 8px 0 16px;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
}
.mob-nav.open { display: block; }
.mob-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 24px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  -webkit-tap-highlight-color: transparent;
}
.mob-nav a:last-of-type { border-bottom: none; }
.mob-link-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 16px 0;
  padding: 14px 20px;
  background: var(--green);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  border-bottom: none !important;
  justify-content: center;
}

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; font-size: .78rem; color: var(--text-lt); }
.breadcrumb a { color: var(--rose); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--pink-lt); padding: 48px 0 40px; width: 100%; }
.page-hero-loc { display: inline-flex; align-items: center; gap: 5px; background: var(--white); border: 1px solid var(--border); padding: 5px 12px; border-radius: 99px; font-size: .75rem; font-weight: 500; color: var(--rose); margin-bottom: 16px; }
.page-hero-loc svg { width: 12px; height: 12px; fill: var(--rose); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero p { font-size: .95rem; color: var(--text-mid); line-height: 1.75; max-width: 580px; font-weight: 300; }

/* ── SECTIONS — backgrounds go edge-to-edge, content stays readable ── */
section { padding: 64px 0; width: 100%; }
section + section { border-top: 1.5px solid var(--border); }
.sec-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sec-title em { font-style: italic; color: var(--rose); }
.sec-sub { font-size: .88rem; color: var(--text-lt); margin-bottom: 28px; line-height: 1.65; max-width: 620px; }

/* ── PROSE (SEO content) ── */
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); margin: 32px 0 10px; }
.prose h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 22px 0 8px; }
.prose p { font-size: .9rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 14px; font-weight: 300; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { font-size: .9rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 4px; }
.prose strong { font-weight: 600; color: var(--text); }

/* ── SERVICE CARD (used on multiple pages) ── */
.srv { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 22px 24px; margin-bottom: 10px; transition: border-color .2s, box-shadow .2s; }
.srv:last-child { margin-bottom: 0; }
.srv:hover { border-color: var(--pink-mid); box-shadow: 0 4px 16px rgba(212,115,126,.1); }
.srv-left { display: flex; align-items: flex-start; gap: 14px; }
.srv-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--pink-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srv-icon svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 2; }
.srv-name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.srv-desc { font-size: .82rem; color: var(--text-lt); line-height: 1.6; }
.srv-right { text-align: right; flex-shrink: 0; }
.srv-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--rose); white-space: nowrap; }
.srv-dur { font-size: .75rem; color: var(--text-lt); margin-top: 2px; }
.srv-badge { display: inline-block; font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 99px; background: var(--pink); color: var(--rose); margin-top: 6px; }
.srv-link { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 600; color: var(--rose); text-decoration: none; margin-top: 10px; transition: gap .2s; }
.srv-link:hover { gap: 8px; }
.dur-options { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.dur-opt { font-size: .75rem; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--border); color: var(--text-mid); background: var(--white); }

/* ── CALL TYPE CARDS ── */
.call-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.call-card { background: var(--pink-lt); border: 1.5px solid var(--border); border-radius: 10px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 12px; }
.call-ico { width: 38px; height: 38px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.call-ico svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 2; }
.call-name { font-size: .92rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.call-desc { font-size: .79rem; color: var(--text-mid); line-height: 1.55; }

/* ── BOOKING / CONTACT ── */
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.cc { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 16px 18px; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .25s; }
.cc:hover { border-color: var(--pink-mid); box-shadow: 0 4px 16px rgba(212,115,126,.12); transform: translateX(4px); }
.cc-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-ico.wa { background: #e4f9ed; }
.cc-ico.wa svg { width: 22px; height: 22px; fill: var(--green); }
.cc-ico.ph { background: var(--pink-lt); }
.cc-ico.ph svg { width: 20px; height: 20px; stroke: var(--rose); fill: none; stroke-width: 2; }
.cc-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-lt); margin-bottom: 2px; font-weight: 500; }
.cc-val { font-size: .95rem; font-weight: 600; color: var(--text); }
.cc-hint { font-size: .75rem; color: var(--text-lt); margin-top: 2px; }
.cc-arrow { margin-left: auto; }
.cc-arrow svg { width: 16px; height: 16px; stroke: var(--pink-mid); fill: none; stroke-width: 2; transition: transform .25s; }
.cc:hover .cc-arrow svg { transform: translateX(3px); stroke: var(--rose); }
.book-note { margin-top: 14px; padding: 13px 16px; background: var(--white); border-left: 3px solid var(--pink-mid); border-radius: 0 8px 8px 0; font-size: .8rem; color: var(--text-mid); line-height: 1.65; }
.book-note strong { color: var(--rose); }

/* ── INFO PANEL ── */
.info-panel { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.ip-head { background: var(--rose); padding: 18px 22px; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 700; }
.ip-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid var(--border); gap: 12px; }
.ip-row:last-child { border-bottom: none; }
.ip-key { font-size: .77rem; font-weight: 500; color: var(--text-lt); flex-shrink: 0; min-width: 90px; padding-top: 1px; }
.ip-val { font-size: .85rem; color: var(--text); font-weight: 500; text-align: right; line-height: 1.5; }
.ip-chips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.ip-chip { font-size: .72rem; padding: 3px 10px; border-radius: 99px; background: var(--pink-lt); color: var(--rose); font-weight: 500; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rv-card { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 22px 20px; transition: box-shadow .2s, transform .25s; }
.rv-card:hover { box-shadow: 0 6px 20px rgba(212,115,126,.1); transform: translateY(-3px); }
.rv-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.rv-stars svg { width: 14px; height: 14px; fill: #f4a83a; }
.rv-text { font-size: .85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 10px; }
.rv-av { width: 36px; height: 36px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: var(--rose); flex-shrink: 0; }
.rv-name { font-size: .83rem; font-weight: 600; color: var(--text); }
.rv-tag  { font-size: .7rem; color: var(--text-lt); margin-top: 1px; }
.reviews-bottom { margin-top: 20px; text-align: center; font-size: .82rem; color: var(--text-lt); padding: 14px; background: var(--pink-lt); border-radius: 8px; }
.reviews-bottom strong { color: var(--rose); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-size: .92rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--off); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .3s; }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .87rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.faq-a.open { display: block; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--rose); padding: 48px 32px; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; margin-bottom: 10px; }
.cta-banner p { font-size: .92rem; color: rgba(255,255,255,.8); margin-bottom: 28px; font-weight: 300; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: .88rem; font-weight: 600; padding: 13px 24px; border-radius: 8px; text-decoration: none; transition: opacity .2s, transform .2s; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn-wa:hover { opacity: .9; transform: translateY(-2px); }
.btn-wa svg { width: 17px; height: 17px; fill: #fff; }
.btn-wh { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); color: #fff; font-size: .88rem; font-weight: 600; padding: 13px 24px; border-radius: 8px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.4); transition: background .2s, transform .2s; }
.btn-wh:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ── AREA CARDS ── */
.area-card { display: block; background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 20px 22px; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; }
.area-card:hover { border-color: var(--pink-mid); box-shadow: 0 4px 16px rgba(212,115,126,.1); transform: translateY(-2px); }
.area-name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.area-meta { font-size: .75rem; color: var(--text-lt); }

/* ── BLOG CARDS ── */
.blog-card { display: block; background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 24px 22px; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; }
.blog-card:hover { border-color: var(--pink-mid); box-shadow: 0 4px 16px rgba(212,115,126,.1); transform: translateY(-3px); }
.blog-card-tag { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 10px; }
.blog-card-excerpt { font-size: .82rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 14px; font-weight: 300; }
.blog-card-meta { font-size: .72rem; color: var(--text-lt); font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,.65); padding: 60px 0 0; width: 100%; position: relative; z-index: 3; }
.footer-inner { width: 100%; padding: 0 clamp(24px, 5vw, 80px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 0.9fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-brand p { font-size: .82rem; margin-top: 12px; line-height: 1.75; max-width: 260px; color: rgba(255,255,255,.5); }
.f-brand-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.f-brand-badge { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 99px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
.f-links h4, .f-contact-col h4 { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; }
.f-links ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a { font-size: .82rem; text-decoration: none; color: rgba(255,255,255,.55); transition: color .2s; }
.f-links a:hover { color: #fff; }
.f-contact-col p { font-size: .82rem; line-height: 1.9; color: rgba(255,255,255,.55); }
.f-contact-col a { color: var(--pink); text-decoration: none; font-weight: 500; transition: color .2s; }
.f-contact-col a:hover { color: #fff; }

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 0;
}
.footer-bottom-copy {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-dot { color: rgba(255,255,255,.2); font-size: .72rem; }
.footer-back-top {
  margin-left: 8px;
  font-size: .72rem !important;
  font-weight: 500 !important;
  letter-spacing: .01em !important;
  color: rgba(255,255,255,.3) !important;
  cursor: pointer;
  white-space: nowrap;
}
.footer-back-top:hover { color: var(--pink) !important; }
/* Legacy */
.footer-bottom p { display: none; }
.f-contact h4 { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; }
.f-contact p { font-size: .82rem; line-height: 1.7; }
.f-contact a { color: var(--pink); text-decoration: none; font-weight: 500; }

/* ── STICKY WA ── */
.sticky-wa {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: 24px;
  z-index: 200;
  background: var(--green);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.sticky-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,.5);
  animation: waRing 2s ease-out infinite;
}
.sticky-wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,.3);
  animation: waRing 2s ease-out 0.5s infinite;
}
.sticky-wa:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.6); }
.sticky-wa svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
@keyframes waRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); } }

/* ── BOOK STRIP ── */
.book-strip { background: var(--rose); color: #fff; padding: 16px clamp(16px,4vw,32px); text-align: center; }
.book-strip p { font-size: .88rem; font-weight: 400; line-height: 1.6; }
.book-strip strong { font-weight: 600; }
.book-strip a { color: var(--pink-lt); font-weight: 600; text-decoration: underline; }

/* ── GRID HELPERS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── ICON BOXES ── */
.icon-box { background: var(--off); border: 1.5px solid var(--border); border-radius: 10px; padding: 24px 22px; }
.icon-box-ico { width: 44px; height: 44px; background: var(--pink-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-box-ico svg { width: 22px; height: 22px; stroke: var(--rose); fill: none; stroke-width: 2; }
.icon-box h3 { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.icon-box p { font-size: .82rem; color: var(--text-lt); line-height: 1.65; font-weight: 300; }

/* ── SCROLL REVEAL ── */
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Mobile: kill only compositor-heavy effects that cause scroll jank */
  /* Parallax scale/fade — the actual scroll culprit — stays off */
  .parallax-hero { will-change: auto !important; }
  /* No will-change on anything — prevents unnecessary compositor layers */
  *, *::before, *::after { will-change: auto !important; }
  /* Homepage header: transparent over dark video */
  .has-parallax header { background: transparent !important; border-color: transparent !important; box-shadow: none !important; }
  .has-parallax header.nav-solid { background: #fff !important; border-bottom: 1.5px solid #f0dfe0 !important; box-shadow: 0 2px 8px rgba(30,22,24,.08) !important; }
  /* Hamburger: white over hero, dark on solid */
  .has-parallax header:not(.nav-solid) .hamburger span { background: #fff !important; }
  .has-parallax header:not(.nav-solid) .mob-call-btn svg { stroke: #fff !important; }
  .has-parallax header.nav-solid .mob-call-btn svg { stroke: var(--text) !important; }
  .has-parallax header.nav-solid .hamburger span { background: #1e1618 !important; }
  /* Logo: white over hero */
  .has-parallax header:not(.nav-solid) .logo-text-main { color: #fff !important; }
  .has-parallax header:not(.nav-solid) .logo-text-by { color: #f7c5cc !important; }
  .has-parallax header.nav-solid .logo-text-main { color: #1e1618 !important; }
  .has-parallax header.nav-solid .logo-text-by { color: #c0505c !important; }
  /* Nav */
  .mob-call-btn { display: flex; }
  .nav-links, .nav-wa, .nav-call { display: none !important; } /* mob-call-btn replaces nav-call on mobile */
  .hamburger { display: flex; }

  /* Layout */
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .three-col { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .call-grid { grid-template-columns: 1fr; }
  .srv { grid-template-columns: 1fr; }
  .srv-right { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

  /* Spacing */
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  section { padding: 44px 0; }
  .page-hero { padding: 32px 0 24px; }
  .cta-banner { padding: 36px 20px; }

  /* Typography */
  .sec-title { font-size: 1.4rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .page-hero p { font-size: .9rem; }
  .prose h2 { font-size: 1.2rem; margin-top: 24px; }
  .prose p, .prose ul li { font-size: .88rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: .88rem; }

  /* Service cards */
  .srv-name { font-size: .95rem; }
  .dur-options { gap: 6px; }
  .srv-price { font-size: 1.1rem; white-space: normal; }

  /* Info panel */
  .ip-row { flex-direction: column; gap: 4px; }
  .ip-val { text-align: left; }
  .ip-chips { justify-content: flex-start; }

  /* Contact cards */
  .cc { padding: 14px 14px; }
  .cc-val { font-size: .9rem; }

  /* Footer — stack on mobile */
  /* ── FAT FOOTER — MOBILE ── */
  footer { padding: 44px 0 0; }
  .footer-inner { padding: 0 20px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding-bottom: 32px;
  }
  .footer-top > .f-brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .f-brand p { max-width: 100%; font-size: .85rem; }
  .f-links h4, .f-contact-col h4 { font-size: .68rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .f-links a { font-size: .88rem; }
  .f-links ul { gap: 12px; }
  .footer-top > .f-contact-col {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px 0 36px;
  }
  .footer-bottom-copy { font-size: .72rem; text-align: center; width: 100%; }
  .footer-bottom-links { gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
  .footer-bottom-links a { font-size: .72rem; }

  /* Sticky WA: hidden on mobile (WhatsApp in hamburger menu) */
  .sticky-wa { display: none !important; }

  /* Nav logo image slightly smaller */
  .logo img { height: 30px !important; }
}

@media (max-width: 520px) {
  /* Buttons stack vertically */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-wh { justify-content: center; }

  /* Hero buttons */
  .hero-btns { flex-direction: column; align-items: stretch; }

  /* Reviews — single column with less padding */
  .rv-card { padding: 18px 16px; }

  /* Section titles smaller */
  .sec-title { font-size: 1.25rem; }

  /* Book strip wraps nicely */
  .book-strip p { font-size: .82rem; }

  /* Breadcrumb smaller */
  .breadcrumb { font-size: .72rem; }

  /* Wrap tighter */
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }
}
