/* ══════════════════════════════════════════════
   VIEW SPA — Shared Stylesheet v2
   Fonts: Cormorant Garamond + Lato
   Palette: beige / white / dark / gold
══════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
:root {
  --gold:    #C9A84C;
  --gold-lt: #E2C478;
  --gold-dk: #A8842A;
  --dark:    #1E1E1E;
  --mid:     #5C5C5C;
  --light:   #F7F4EF;
  --beige:   #FAF7F2;
  --white:   #FFFFFF;
  --border:  #E6DDD0;
}
body { font-family: 'Lato', sans-serif; color: var(--dark); background: var(--light); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; object-fit: cover; }

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 80px 0; }
.tc { text-align: center; }
.eyebrow { display: block; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sec-title { font-size: clamp(30px, 5vw, 52px); color: var(--dark); margin-bottom: 14px; }
.sec-title em { font-style: italic; color: var(--gold); }
.rule { width: 40px; height: 1px; background: var(--gold); margin: 18px 0; }
.rule.c { margin: 18px auto; }
.gold-rule { width: 44px; height: 1px; background: var(--gold); margin: 20px 0; }
.gold-rule.center { margin: 20px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; border: 1px solid; transition: background .28s, color .28s, border-color .28s, transform .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-dark  { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-w:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
  position: relative; overflow: hidden;
  animation: pulseGold 4s infinite;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-20deg); animation: shine 3.5s infinite;
}
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
@keyframes pulseGold {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
@keyframes shine { 0%{left:-100%} 20%{left:200%} 100%{left:200%} }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0; transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.hdr { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo img { height: 46px; width: auto; display: block; }
.hdr-cta, .hdr-book { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.promo-badge { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
nav { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dark); padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.hamburger { display: none; cursor: pointer; z-index: 1100; padding: 8px; border-radius: 4px; transition: background .2s; }
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger svg { width: 24px; height: 24px; color: var(--dark); transition: transform .3s; }
.hamburger.active svg { transform: rotate(90deg); }
.nav-submenu { display: none; }
.nav-footer { display: none; }

@media(max-width: 900px) {
  nav {
    display: none; position: absolute;
    top: 74px; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 16px 0; gap: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,.08); z-index: 999;
  }
  nav.active { display: flex; }
  .nav-link { padding: 14px 24px; border-bottom: 1px solid var(--border); width: 100%; font-size: 14px; }
  .nav-submenu { padding-left: 24px; background: var(--beige); }
  .nav-submenu .nav-link { font-size: 12px; color: var(--mid); border-bottom: none; padding: 10px 24px; }
  .hamburger { display: flex; }
  .btn-gold { padding: 9px 16px !important; font-size: 10px !important; }
  .promo-badge { font-size: 8px; }
  .nav-footer {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 20px 24px max(24px, env(safe-area-inset-bottom));
    border-top: 2px solid var(--border); width: 100%;
  }
  .nav-footer .btn { width: 100%; justify-content: center; }
  .nav-footer-contact { display: flex; gap: 20px; font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--mid); }
  .nav-footer-contact a { color: var(--mid); }
}
body.no-scroll { overflow: hidden; }

/* ── HERO (index) ── */
.hero { position: relative; min-height: clamp(340px, 54vh, 520px); display: flex; flex-direction: column; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10,8,5,.8) 0%, rgba(10,8,5,.52) 50%, rgba(10,8,5,.7) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  min-height: inherit;
  padding: 46px 20px max(18px, env(safe-area-inset-bottom));
  gap: 10px;
  max-width: 620px;
}
.hero-inner .eyebrow { color: var(--gold-lt); margin-bottom: 2px; }
/* Убраны: .hero-top, .hero-mid, .hero-bottom, .hero-pains, .hero-tagline, .hero-secondary-desktop */
.hero-top { display: none; } .hero-mid { display: contents; } .hero-bottom { display: contents; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.04; color: var(--white); letter-spacing: -0.5px;
  margin: 0;
}
.hero-h1 em { font-style: italic; color: var(--gold-lt); }
.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2.4vw, 19px);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.78); margin: 0;
  max-width: 34ch;
}

/* CTA block — compact and conversion-first */
.hero-cta-block { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 4px; }
.hero-book-btn { padding: 15px 26px !important; font-size: 12px !important; letter-spacing: 2px !important; }
.hero-call-btn { padding: 14px 20px; font-size: 11px; }

/* Service buttons — secondary navigation */
.hero-service-buttons { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hero-service-buttons .btn { padding: 10px 16px; font-size: 10px; letter-spacing: 1px; }

/* Micro-copy под кнопкой — снижает барьер */
.hero-book-note {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: -2px 0 0;
}
.hero-micro {
  font-size: 10.5px; font-weight: 400;
  color: rgba(255,255,255,.46); letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0;
}
.hero-quote {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 42ch;
  margin: 2px 0 0;
}
.hero-meta { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.52); margin: 0; }

@media(min-width: 861px) {
  .hero { min-height: clamp(500px, 60vh, 620px); }
  .hero-inner { padding: 88px 48px 40px; }
  .hero-h1 { font-size: clamp(40px, 5.5vw, 60px); }
}
@media(max-width: 860px) {
  .hero { min-height: clamp(300px, 62svh, 420px); }
  .hero-inner { padding: 28px 16px 16px; gap: 8px; }
  .hero-h1 { font-size: clamp(28px, 8vw, 38px); }
  .hero-slogan { font-size: 15px; }
  .hero-cta-block { align-items: stretch; }
  .hero-book-btn { width: 100%; justify-content: center; padding: 14px 18px !important; }
  .hero-service-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; margin-top: 2px; }
  .hero-service-buttons .btn { width: 100%; justify-content: center; padding: 10px 12px; font-size: 9px; }
  .hero-meta { font-size: 9px; letter-spacing: 1px; }
}

/* ── MINI CTA BAR (после hero-strip и других dead zones) ── */
.mini-cta-bar {
  background: var(--dark); padding: 16px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.mini-cta-bar .btn { padding: 11px 22px; font-size: 10px; }
.mini-cta-phone {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55);
  letter-spacing: 1px; transition: color .2s;
}
.mini-cta-phone:hover { color: var(--gold-lt); }
.mini-cta-arrow {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8);
  letter-spacing: 1px;
}

/* ── MID-PAGE CTA STRIP (gold band after pain/gain) ── */
.mid-cta-strip {
  background: var(--gold); padding: 28px 20px; text-align: center;
}
.mid-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,3vw,28px); color: var(--white);
  margin-bottom: 16px;
}
.mid-cta-headline em { font-style: italic; }
.mid-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mid-cta-call { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.mid-cta-call:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.mini-cta-gold { background: var(--gold); gap: 16px; padding: 18px 20px; }
.mini-cta-gold .btn { background: var(--dark); border-color: var(--dark); color: var(--white); }
.mini-cta-gold .btn:hover { background: var(--dark); opacity: .85; }
.mini-cta-text { font-size: 14px; color: var(--white); }
.mini-cta-text strong { font-weight: 700; }
.mini-cta-text span { opacity: .85; }
@media(max-width: 600px) {
  .mini-cta-text { text-align: center; font-size: 13px; }
  .mini-cta-gold { flex-direction: column; gap: 12px; }
  .btn { white-space: normal; padding: 12px 20px; font-size: 10px; line-height: 1.3; }
}

/* ── PAGE HERO (subpages) ── */
.page-hero { min-height: clamp(320px, 48vh, 500px); display: flex; align-items: center; position: relative; color: var(--white); background-size: cover; background-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.page-hero-inner { position: relative; z-index: 1; padding: 38px 24px; max-width: 620px; }
.page-hero-inner .eyebrow { color: var(--gold-lt); }
.page-hero-inner h1 { font-size: clamp(30px, 4.8vw, 54px); font-weight: 300; margin-bottom: 10px; line-height: 1.06; color: var(--white); }
.page-hero-inner h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-inner p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.84); line-height: 1.58; margin-bottom: 14px; max-width: 34ch; }
.page-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.page-hero-link { display: inline-block; margin-top: 2px; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold-lt); }
.page-hero-link:hover { color: var(--white); }
.page-hero-meta { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 6px; }
/* Micro-copy под кнопкой в page-hero */
.page-hero-micro { font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,.54); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 0; }
.page-hero-trust {
  list-style: none; padding: 0; margin: 0;
  font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,.54); letter-spacing: 1.2px; text-transform: uppercase;
}
.page-hero-trust li { margin-bottom: 4px; }
.page-hero-trust li:last-child { margin-bottom: 0; }
.massage-hero { background: url('img/mass.jpg') center/cover no-repeat; }
@media(max-width: 600px) {
  .page-hero { min-height: clamp(300px, 60svh, 400px); }
  .page-hero-inner { padding: 26px 18px; }
  .page-hero-inner h1 { font-size: clamp(26px, 8vw, 34px); }
  .page-hero-inner p { font-size: 14px; line-height: 1.5; margin-bottom: 12px; }
  .page-hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 8px; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero-link { font-size: 10px; }
  .page-hero-meta { font-size: 9px; letter-spacing: 1px; }
  .page-hero-trust { font-size: 9px; letter-spacing: 1px; }
  .page-hero-trust li { margin-bottom: 3px; }
}

/* ── HERO STRIP ── */
.hero-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 180px; gap: 2px; }
.hero-strip-item { position: relative; overflow: hidden; }
.hero-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hero-strip-item:hover img { transform: scale(1.06); }
.hero-strip-item::after { content: attr(data-label); position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.65)); color: rgba(255,255,255,.9); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 20px 12px 10px; }
@media(max-width: 600px) { .hero-strip { grid-template-columns: repeat(2, 1fr); height: 200px; } }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); padding: 0; overflow: hidden; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  min-width: 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-item:nth-child(3n) { border-right: none; }
.trust-item:nth-last-child(-n+3) { border-bottom: none; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media(max-width: 700px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    justify-content: flex-start;
    text-align: left;
    font-size: 9px;
    letter-spacing: 1px;
  }
  .trust-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media(max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none;
    justify-content: center;
    text-align: center;
  }
  .trust-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-item:last-child { border-bottom: none; }
}

/* ── PAIN GAIN ── */
.pain-gain { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; }
.pg-panel { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.pg-panel.dark { background: var(--dark); }
.pg-panel.dark .sec-title { color: var(--white); }
.pg-panel.dark .eyebrow { color: var(--gold-lt); }
.pg-panel.dark p { color: rgba(255,255,255,.62); }
.pg-panel.dark .rule { background: rgba(201,168,76,.5); }
.pain-list { list-style: none; margin: 16px 0 24px; }
.pain-list li { font-size: 14px; color: rgba(255,255,255,.55); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pain-list li::before { content: '—'; color: var(--gold-lt); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.gain-list li { font-size: 14px; color: var(--mid); padding: 8px 0 8px 25px; border-bottom: 1px solid var(--border); line-height: 1.5; position: relative; display: block; }
.gain-list li::before { content: '✓'; color: var(--gold); font-weight: 700; position: absolute; left: 0; top: 8px; }
@media(max-width: 768px) { .pain-gain { grid-template-columns: 1fr; } .pg-panel { padding: 56px 24px; } }

/* ── SERVICE SPLIT ── */
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.svc-split-card { position: relative; overflow: hidden; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 36px; text-decoration: none; background: var(--dark); }
.svc-split-card .svc-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform .7s ease, opacity .4s ease; opacity: .55; }
.svc-split-card:hover .svc-bg { transform: scale(1.04); opacity: .45; }
.svc-split-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%); }
.svc-split-content { position: relative; z-index: 1; color: var(--white); }
.svc-split-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 8px; display: block; }
.svc-split-title { font-size: clamp(22px, 3vw, 36px); font-weight: 300; margin-bottom: 10px; line-height: 1.2; }
.svc-split-desc { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 20px; max-width: 360px; }
.svc-split-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold-lt); margin-bottom: 16px; }
.svc-split-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; transition: border-color .25s, color .25s; }
.svc-split-card:hover .svc-split-btn { border-color: var(--gold-lt); color: var(--gold-lt); }
@media(max-width: 640px) { .services-split { grid-template-columns: 1fr; } .svc-split-card { min-height: 400px; padding: 28px 24px; } }

/* ── VIDEO SECTION ── */
.video-vibe-sec {
  position: relative; width: 100%;
  height: 480px;               /* fixed px — no vh on mobile to avoid false scroll */
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
  touch-action: pan-y;         /* prevents horizontal scroll hijack on iOS */
}
@media(max-width: 600px) { .video-vibe-sec { height: 300px; } }
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .6;
  pointer-events: none;        /* video doesn't capture touch events */
}
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,5,.4); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  pointer-events: none;
}
#video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 10000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
#video-modal.active { display: flex; opacity: 1; }
.video-modal-inner { width: 95%; max-width: 1000px; position: relative; }
.video-modal-close { position: absolute; top: -45px; right: 0; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; }
.video-modal-ratio { position: relative; padding-bottom: 56.25%; height: 0; }
.video-modal-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 260px 260px; gap: 3px; }
.g1{grid-column:1/6;grid-row:1/2;} .g2{grid-column:6/9;grid-row:1/2;} .g3{grid-column:9/13;grid-row:1/2;}
.g4{grid-column:1/4;grid-row:2/3;} .g5{grid-column:4/9;grid-row:2/3;} .g6{grid-column:9/13;grid-row:2/3;}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-grid div { overflow: hidden; position: relative; }
.gallery-grid div:hover img { transform: scale(1.04); }
.gallery-grid div::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.gallery-grid div:hover::after { background: rgba(201,168,76,.1); }
@media(max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); } .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: auto; grid-row: auto; } }

/* ── REVIEWS ── */
.reviews-sec { background: var(--beige); }
.swiper { width: 100%; padding-bottom: 44px; }
.swiper-slide { background: var(--white); border: 1px solid var(--border); padding: 28px; height: auto; display: flex; flex-direction: column; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { display: none !important; }
.rev-header, .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-avatar, .review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dbe7ff;
  box-shadow: 0 6px 18px rgba(66,133,244,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}
.rev-avatar::before, .review-avatar::before {
  content: "";
  width: 22px;
  height: 22px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M24 9.5c3.54 0 6.74 1.22 9.26 3.6l6.9-6.9C35.96 2.32 30.36 0 24 0 14.62 0 6.51 5.38 2.56 13.22l8.02 6.22C12.5 13.63 17.79 9.5 24 9.5Z'/%3E%3Cpath fill='%2334A853' d='M46.5 24.55c0-1.64-.15-3.22-.42-4.74H24v8.98h12.69c-.55 2.96-2.22 5.46-4.73 7.15l7.64 5.92c4.46-4.11 6.9-10.17 6.9-17.31Z'/%3E%3Cpath fill='%23FBBC05' d='M10.58 28.56A14.5 14.5 0 0 1 9.5 24c0-1.58.28-3.11.78-4.56l-8.02-6.22A23.93 23.93 0 0 0 0 24c0 3.84.92 7.47 2.56 10.78l8.02-6.22Z'/%3E%3Cpath fill='%23EA4335' d='M24 48c6.48 0 11.91-2.13 15.88-5.79l-7.64-5.92c-2.12 1.42-4.84 2.26-8.24 2.26-6.21 0-11.5-4.13-13.42-9.94l-8.02 6.22C6.51 42.62 14.62 48 24 48Z'/%3E%3C/svg%3E");
}
.rev-name, .review-name { font-weight: 700; font-size: 13px; color: var(--dark); }
.stars { color: #fbbc05; font-size: 12px; margin-bottom: 1px; }
.rev-text, .review-text { font-size: 13px; color: var(--mid); line-height: 1.75; flex: 1; }

/* ── OFFERS ── */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.offer-card { background: var(--white); border: 1px solid var(--gold); padding: 36px 28px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.07); }
.offer-tag { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); background: var(--gold); color: var(--white); padding: 5px 16px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.offer-card h3 { font-size: 24px; margin: 16px 0 10px; }
.offer-card p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 22px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: var(--gold); }
.team-photo { position: relative; }
.team-photo img { width: 100%; height: 300px; object-fit: cover; object-position: center; transition: transform .5s; }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); padding: 40px 20px 16px; }
.team-photo-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--white); margin-bottom: 2px; }
.team-photo-title { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); }
.team-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.team-body p { font-size: 13px; color: var(--mid); line-height: 1.7; }
.team-badge { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700; color: var(--gold); }
.team-avail { margin-top: 10px; font-size: 11px; color: var(--mid); display: flex; align-items: center; gap: 6px; }
.avail-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.avail-dot.green { background: #3a7d44; } .avail-dot.amber { background: #c98a1a; }
.team-insta { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; transition: .25s; }
.team-insta:hover { background: rgba(255,255,255,.3); }
.team-insta img { width: 16px !important; height: 16px !important; object-fit: contain !important; border-radius: 0 !important; flex-shrink: 0 !important; display: inline-block; margin: 0; }
.team-quote { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--dark); margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border); opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s; }
.team-card:hover .team-quote { opacity: 1; transform: translateY(0); }
@media(max-width: 860px) { .team-grid { grid-template-columns: 1fr; } .team-photo img { height: 280px; } .team-quote { opacity: 1; transform: translateY(0); border-top: 1px solid var(--border); margin-top: 16px; } }

/* New team styles */
.team-badge-trophy { position: absolute; top: 12px; left: 12px; font-size: 24px; background: rgba(255,215,0,.9); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.team-badge-fast { position: absolute; top: 12px; left: 12px; background: #25D366; color: white; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 2px 8px rgba(37,211,102,.3); }
.team-features { margin: 16px 0; }
.team-feature { font-size: 12px; color: var(--mid); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.team-best-for { font-size: 13px; color: var(--dark); font-weight: 600; margin: 12px 0; }
.team-body .btn { margin-top: auto; }

/* ── SERVICE LIST (subpages) ── */
.svc-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 20px; border-bottom: 1px solid var(--border); background: var(--white); transition: background .25s; }
.svc-item:hover { background: var(--beige); }
.svc-thumb { width: 90px; height: 90px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.svc-info { flex: 1; }
.svc-info h3 { font-size: clamp(18px,2.5vw,22px); margin-bottom: 6px; }
.svc-info p { font-size: 13px; color: var(--mid); line-height: 1.6; }
.svc-pricing { min-width: 180px; background: var(--beige); padding: 14px; border-radius: 6px; border: 1px solid var(--border); flex-shrink: 0; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 13px; }
.price-row:last-of-type { margin-bottom: 0; }
.staff-n { font-weight: 700; color: var(--dark); }
.staff-level { font-size: 10px; color: #aaa; display: block; font-weight: 400; }
.staff-p { font-weight: 700; font-size: 1rem; color: var(--dark); }
.svc-dur { display: block; margin-top: 8px; font-size: 10px; color: #aaa; letter-spacing: 1px; text-transform: uppercase; }
@media(max-width: 600px) { .svc-item { flex-direction: column; } .svc-pricing { width: 100%; } }

/* ── MASTERS GRID (manicure) ── */
.masters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.master-card { display: flex; align-items: flex-start; gap: 20px; padding: 28px; background: var(--white); border: 1px solid var(--border); transition: box-shadow .3s; }
.master-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.master-card-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold); }
.master-card-body h3 { font-size: 24px; margin-bottom: 4px; }
.master-card-body .tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.master-card-body p { font-size: 13px; color: var(--mid); line-height: 1.65; margin-top: 8px; }
.master-card-body .avail { font-size: 11px; font-weight: 700; color: var(--gold); margin-top: 6px; display: block; }
@media(max-width: 700px) { .masters-grid { grid-template-columns: 1fr; } }

/* ── MASTER BAR (massage) ── */
.master-bar { background: var(--beige); border-bottom: 1px solid var(--border); padding: 48px 0; }
.master-flex { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.master-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.master-text { flex: 1; min-width: 260px; }
.master-text h2 { font-size: clamp(28px,4vw,42px); margin-bottom: 6px; }
.master-text .tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.master-text p { font-size: 15px; color: var(--mid); line-height: 1.75; margin-top: 10px; }
.master-text ul { list-style: none; margin: 16px 0; padding: 0; }
.master-text li { font-size: 15px; color: var(--mid); line-height: 1.75; padding: 4px 0; }
.amta-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border); }
.amta-row img { height: 22px; filter: grayscale(1); opacity: .55; }
.amta-row span { font-size: 11px; color: #aaa; line-height: 1.3; }

/* ── STERILITY (manicure) ── */
.sterile-bar { background: var(--dark); padding: 52px 0; }
.sterile-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.sterile-inner .eyebrow { color: var(--gold-lt); }
.sterile-inner h2 { font-size: clamp(26px,4vw,44px); color: var(--white); margin-bottom: 24px; }
.sterile-inner h2 em { font-style: italic; color: var(--gold-lt); }

/* Utility classes extracted from inline styles */
.eyebrow-gold-lt { color: var(--gold-lt); }
.sec-title-white { color: var(--white); }
.rule-gold-opaque { background: rgba(201,168,76,.4); }
.section-bg-white { background: var(--white); }
.bg-beige { background: var(--beige); }
.google-logo-small { height:20px; margin:0 auto 10px; display:block; }
.mt-32 { margin-top:32px; }
.mt-12 { margin-top:12px; }
.link-review { font-size:13px; color:#4285F4; text-decoration:underline; }
.team-desc { font-size:15px; color:var(--mid); max-width:500px; margin:0 auto; }
.flex-gap-8 { display:flex; align-items:center; gap:8px; }
.amta-img-small { height:18px; filter:grayscale(1); opacity:.5; }
.amta-text-small { font-size:11px; color:#bbb; }
.address-style { font-style:normal; font-size:15px; color:var(--mid); line-height:1.75; }
.strong-dark { color:var(--dark); }
.wa-btn { background:#25D366; border-color:#25D366; color:#fff; margin:14px 0; display:inline-flex; align-items:center; gap:8px; }
.btn-book-small { margin-top:18px; padding:12px 20px; font-size:10px; }
.pos-rel-flex { position:relative; flex:1; display:flex; flex-direction:column; }
.mt-4 { margin-top:4px; }
.section-max-width-800 { max-width:800px; }
.sec-title-clamp-26 { font-size:clamp(26px,4vw,40px); }
.sterile-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; margin-top: 20px; }
.sterile-step { padding: 20px; border: 1px solid rgba(255,255,255,.1); }
.sterile-num { font-family: 'Cormorant Garamond',serif; font-size: 36px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.sterile-step h4 { font-size: 14px; color: var(--white); margin-bottom: 6px; }
.sterile-step p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── AWARD BAR (manicure) ── */
.award-bar { background: linear-gradient(135deg,#2C2C2C 0%,#1a1208 100%); padding: 32px 0; text-align: center; }
.award-bar-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 0 24px; }
.award-text { text-align: left; }
.award-text span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; }
.award-text p { font-size: 18px; font-family: 'Cormorant Garamond',serif; color: var(--white); }
.award-trophy { font-size: 40px; }

/* ── CTA BAND (subpages) ── */
.cta-band { background: var(--gold); padding: 56px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px,4vw,44px); color: var(--white); margin-bottom: 8px; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.cta-band .btn { background: var(--white); color: var(--dark); border-color: var(--white); font-size: 11px; padding: 14px 36px; }
.cta-band .btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { list-style: none; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 0; width: 100%; background: none; border: none; font-family: 'Cormorant Garamond', serif; font-size: clamp(17px,2.5vw,21px); color: var(--dark); cursor: pointer; text-align: left; transition: color .25s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); position: relative; transition: .35s; }
.faq-icon::before,.faq-icon::after { content: ''; position: absolute; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 1px; }
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; transition: .35s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon::before,.faq-item.open .faq-icon::after { background: var(--white); }
.faq-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .42s cubic-bezier(.4,0,.2,1), opacity .3s; }
.faq-item.open .faq-body { opacity: 1; }
.faq-body-inner, .faq-ans { padding: 0 0 22px; font-size: 14px; color: var(--mid); line-height: 1.82; max-width: 680px; }
.faq-ans strong { color: var(--dark); font-weight: 700; }
.faq-sticky-cta-wrap {
  margin-top: 32px;
  text-align: center;
  position: sticky;
  bottom: 18px;
  z-index: 5;
}
.faq-sticky-cta-wrap .btn {
  padding: 14px 28px;
  font-size: 12px;
}
@media (max-width: 860px) {
  .faq-sticky-cta-wrap {
    position: static;
    bottom: auto;
  }
}


/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.map-wrap { border-radius: 4px; overflow: hidden; height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.parking-box { margin-top: 22px; padding: 18px 18px 18px 22px; background: #FFFCF5; border-left: 3px solid var(--gold); }
.parking-box h4 { font-family: 'Lato',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.parking-box p { font-size: 13px; color: var(--mid); line-height: 1.65; }
.contact-phone { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: var(--dark); margin: 14px 0 4px; }
.contact-phone a { color: var(--gold); }
.contact-phone a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.soc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 4px; font-weight: 700; font-size: 11px; color: var(--white) !important; transition: .25s; }
.soc-btn:hover { transform: translateY(-2px); opacity: .9; }
.soc-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-btn.fb { background: #1877F2; }
.soc-btn.gg { background: #ea4335; }
@media(max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .soc-btn { width: 100%; justify-content: center; } }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 56px 0 32px; }
@media(max-width: 860px) { footer { padding-bottom: 120px; } }
.foot-grid, .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer .logo { display: inline-block; margin-bottom: 14px; line-height: 0; }
footer .logo img { height: 46px; width: auto; display: block; filter: none; object-fit: cover; }
.foot-tag, .footer-tagline { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.5; }
.foot-addr { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.8; }
.foot-head, .footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.foot-links, .footer-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a, .foot-links span, .footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.foot-links a:hover, .footer-links a:hover { color: var(--white); }
.foot-bottom, .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 11px; color: rgba(255,255,255,.25); }
@media(max-width: 700px) { .foot-grid, .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
@media(max-width: 860px) { footer { padding-bottom: 90px; } }

/* ── STICKY CALL (desktop) ── */
.sticky-call { position: fixed; bottom: 22px; left: 22px; z-index: 700; background: var(--dark); color: var(--white); border-radius: 50px; padding: 11px 20px; display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 13px; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: background .3s, transform .3s; }
.sticky-call:hover { background: var(--gold); transform: translateY(-2px); }
.sticky-call svg { width: 17px; height: 17px; fill: currentColor; animation: ring 3s infinite; }
@keyframes ring { 0%,100%,26%{transform:rotate(0);} 5%{transform:rotate(14deg);} 10%{transform:rotate(-9deg);} 15%{transform:rotate(5deg);} 20%{transform:rotate(-4deg);} }
@media(max-width: 860px) { .sticky-call { display: none; } }
.sticky-call-label { /* visible on desktop */ }
@media(max-width: 768px) { .sticky-call-label { display: none; } }

/* ── STICKY WHATSAPP (mobile) ── */
.sticky-whatsapp { display: none; position: fixed; bottom: 22px; left: 22px; z-index: 700; background: #25D366; color: var(--white); border-radius: 50%; width: 52px; height: 52px; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .3s; }
.sticky-whatsapp:hover { transform: scale(1.08); }
@media(max-width: 860px) { .sticky-whatsapp { display: flex; bottom: 100px; } }

/* ── AVAILABILITY / URGENCY BAR ── */
.availability-bar {
  background: linear-gradient(135deg, #120f0a 0%, #21180f 100%);
  color: var(--white);
  padding: 18px 0;
  border-top: 1px solid rgba(212,175,55,.22);
  border-bottom: 1px solid rgba(212,175,55,.16);
}
.availability-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.availability-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.availability-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.availability-copy h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--white);
}
.availability-copy p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.availability-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.availability-phone {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-lt);
  white-space: nowrap;
}
.availability-phone:hover {
  color: var(--white);
}
@media(max-width: 860px) {
  .availability-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .availability-actions {
    width: 100%;
  }
  .availability-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .availability-phone {
    width: 100%;
  }
}

/* ── MOBILE BOOK STRIP ── */
.book-strip { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--dark); padding: 12px 16px max(12px, env(safe-area-inset-bottom)); box-shadow: 0 -4px 20px rgba(0,0,0,.2); align-items: center; gap: 10px; }
.book-strip-text { flex: 1; }
.book-strip-text p { font-size: 11px; font-weight: 700; color: var(--white); }
.book-strip-text span { font-size: 10px; color: var(--gold-lt); letter-spacing: 1px; }
.book-strip .btn { padding: 12px 20px; font-size: 10px; border-radius: 2px; flex-shrink: 0; }
@media(max-width: 860px) { .book-strip { display: flex; } }

/* ── SQUARE BOOKING MODAL ── */
#sq-modal { display: none; position: fixed; inset: 0; z-index: 9500; background: rgba(10,8,5,.82); backdrop-filter: blur(6px); align-items: flex-end; justify-content: center; padding: 0; }
#sq-modal.active { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.sq-modal-inner { background: var(--white); width: 100%; max-width: 860px; max-height: 94vh; height: 94vh; border-radius: 12px 12px 0 0; display: flex; flex-direction: column; animation: slideUp .4s cubic-bezier(.4,0,.2,1); overflow: hidden; }
@keyframes slideUp { from{transform:translateY(60px);opacity:0} to{transform:translateY(0);opacity:1} }
.sq-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--dark); flex-shrink: 0; }
.sq-modal-title { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 1px; }
.sq-modal-sub { color: var(--gold-lt); font-size: 11px; letter-spacing: 1px; margin-top: 2px; }
.sq-close { background: none; border: none; color: rgba(255,255,255,.55); font-size: 22px; cursor: pointer; padding: 4px 8px; transition: color .2s; line-height: 1; }
.sq-close:hover { color: var(--white); }
.sq-modal-iframe { flex: 1; border: none; width: 100%; }
.sq-loading { position: absolute; inset: 0; top: 70px; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; font-family: 'Cormorant Garamond',serif; font-size: 18px; color: var(--mid); pointer-events: none; }
.sq-spinner { width: 32px; height: 32px; border: 2px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
@media(min-width: 860px) { #sq-modal { align-items: center; padding: 24px; } .sq-modal-inner { max-height: 88vh; height: 88vh; border-radius: 8px; max-width: 980px; } }


/* ══ MASSAGE SERVICES GRID CARDS ══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 карточки в ряд на десктопе */
  gap: 24px;
  margin-top: 40px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Делаем всю карточку кликабельной */
.svc-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Эффект парения при наведении */
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-lt);
}

/* Картинка: фиксированная высота и зум при наведении */
.svc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-card:hover .svc-img {
  transform: scale(1.04);
}

/* Тело карточки */
.svc-body {
  padding: 24px;
  flex: 1; /* Толкает футер с ценой всегда вниз */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.svc-best-for {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.24);
  color: #8a6a12;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
}

.svc-body h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 10px;
  line-height: 1.2;
}

.svc-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 10px;
}

.svc-bullets li {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  padding: 4px 0;
}

.service-microcta {
  font-size: 14px;
  color: var(--mid);
  max-width: 680px;
  text-align: center;
  margin: 24px auto 0;
}

/* Подвал карточки с ценой и кнопкой */
.svc-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1;
}

.svc-duration {
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.svc-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.svc-card:hover .svc-cta {
  color: var(--gold-dk);
}

/* Мобильная версия: 1 колонка */
@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-img {
    height: 180px;
  }
  .svc-body {
    padding: 20px;
  }
  .svc-footer {
    padding: 16px 20px;
  }
}

/* ── WHAT TO EXPECT ── */
.expect-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:24px; margin-top:40px; }
.expect-item { text-align:center; padding:28px 20px; }
.expect-num { font-family:'Cormorant Garamond',serif; font-size:48px; color:var(--gold); line-height:1; margin-bottom:8px; }
.expect-item h4 { font-size:16px; margin-bottom:8px; }
.expect-item p { font-size:13px; color:var(--mid); line-height:1.65; }


.pain-bar {
  background: var(--dark); /* Темный премиальный фон */
  padding: 80px 0; /* Просторные отступы сверху и снизу */
}

.pain-inner {
  max-width: 820px; /* Ограничиваем ширину, чтобы текст было удобно читать */
  margin: 0 auto; /* Центрируем сам блок */
  text-align: center; /* Центрируем текст внутри */
  padding: 0 20px;
}

.pain-inner .eyebrow {
  color: var(--gold-lt);
  margin-bottom: 16px;
}

.pain-inner h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.pain-inner h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.pain-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75); /* Слегка приглушенный белый для читабельности */
  line-height: 1.8;
}
.pain-inner h3 {
  font-size: 24px;
  color: var(--gold-lt);
  margin: 32px 0 16px;
  font-weight: 600;
}
.pain-inner ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.pain-inner li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  padding: 4px 0;
}

/* ── STRUCTURE CLEANUP UTILS ── */
.text-center { text-align: center; }
.section-white { background: var(--white); }
.section-beige { background: var(--beige); }
.section-gallery { background: var(--white); padding: 3px 0 0; }
.container-narrow { max-width: 800px; }
.container-mt-32 { margin-top: 32px; }
.step-card {
  margin-top: 32px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
}
.sec-title-mid { font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.sec-title-sm { font-size: clamp(26px, 4vw, 40px); }
.sec-title-contact { font-size: clamp(26px, 4vw, 38px); }
.sec-title-panel { font-size: clamp(28px, 4vw, 44px); }
.section-copy { font-size: 14px; color: var(--mid); max-width: 580px; }
.section-copy-wide { font-size: 14px; color: var(--mid); max-width: 620px; margin: 0 auto; text-align: center; }

/* ── PACKAGES SECTION ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.package-card-featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, #fff, #faf7f2);
}
.package-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.package-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--dark);
}
.package-for {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.package-details {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}
.package-price {
  margin-bottom: 16px;
}
.package-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
}
.package-note {
  display: block;
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
}
.package-benefit {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
  padding: 12px;
  background: var(--beige);
  border-radius: 4px;
}
.package-expiry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 16px;
}
.package-btn {
  width: 100%;
}
.package-reassure {
  text-align: center;
  font-size: 13px;
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto;
}

@media(max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { padding: 24px 20px; }
}
.section-copy-narrow { font-size: 14px; color: var(--mid); max-width: 560px; margin: 12px auto 0; }
.section-copy-lg { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 720px; }
.copy-tight { font-size: 14px; color: var(--mid); line-height: 1.8; max-width: 780px; }
.contact-copy { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.contact-address { font-style: normal; font-size: 15px; color: var(--mid); line-height: 1.75; }
.phone-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
}
.phone-link { color: inherit; }
.footer-meta { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.3); }
.btn-compact { padding: 10px 22px; font-size: 11px; }
.btn-footer { margin-top: 20px; padding: 12px 20px; font-size: 10px; }
.btn-footer-alt { margin-top: 18px; padding: 12px 20px; font-size: 10px; }
.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  margin: 14px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.self-start { align-self: flex-start; }
.text-white { color: var(--white); }
.text-gold-lt { color: var(--gold-lt); }
.text-gold { color: var(--gold); }
.text-mid { color: var(--mid); }
.text-dark { color: var(--dark); }
.rule-soft { background: rgba(201,168,76,.4); }
.video-kicker { color: var(--white); }
.video-title { color: var(--white); font-size: clamp(32px, 5vw, 56px); }
.google-logo { height: 20px; width: auto; margin: 0 auto 10px; }
.review-head { margin-bottom: 36px; }
.review-intro { font-size: 14px; color: var(--mid); max-width: 560px; margin: 12px auto 0; }
.review-link-wrap { margin-top: 10px; }
.review-link { font-size: 13px; color: #4285F4; text-decoration: underline; }
.offer-list { text-align: left; margin: 16px 0; font-size: 14px; color: var(--mid); }
.offer-price { font-size: 18px; font-weight: 700; color: var(--dark); margin: 12px 0; }
.top-border { border-top: 1px solid var(--border); }
.top-border-gap { border-top: 1px solid var(--border); margin-top: 30px; }
.note-divider {
  font-size: 13px;
  color: var(--mid);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-group-title {
  font-size: 12px;
  color: var(--mid);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}
.inline-link-muted {
  font-size: 11px;
  color: var(--mid);
  display: inline-block;
  margin-top: 6px;
}
.price-link { color: var(--gold); text-decoration: underline; }
.avail-green { color: #3a7d44; }
.award-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(212,175,55,.4);
  padding: 10px 18px;
  white-space: nowrap;
  transition: .25s;
}
.award-link:hover { background: rgba(212,175,55,.08); }
.sterile-copy { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 600px; }
.svc-duration-block { display: block; }
.page-hero-manicure { background: url('img/mani.jpg') center/cover no-repeat; }
.booking-loading-title { font-size: 18px; }
.booking-loading-note { font-size: 13px; color: #aaa; }

.mt-4 { margin-top: 4px; }
.mt-6 { margin-top: 6px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-30 { margin-top: 30px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-4 { margin-bottom: 4px; }
.mb-6 { margin-bottom: 6px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-36 { margin-bottom: 36px; }

/* ── BOOKING PAGE ── */
body.booking-page {
  min-height: 100svh;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--light);
  display: flex;
  flex-direction: column;
}

.booking-page .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  padding: 0 20px;
  height: 56px;
  flex-shrink: 0;
  gap: 12px;
}
.booking-page .top-bar-logo img { height: 34px; }
.booking-page .top-bar-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Lato', sans-serif;
}
.booking-page .top-bar-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.booking-page .top-bar-sub { font-size: 10px; color: var(--gold-lt); letter-spacing: 1px; }
.booking-page .top-bar-back {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}
.booking-page .top-bar-back:hover { color: var(--gold-lt); }
.booking-page .top-bar-back svg { width: 14px; height: 14px; fill: currentColor; }
.booking-page .top-bar-meta { text-align: right; }
.booking-page .top-bar-note { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-lt); }
.booking-page .top-bar-value { font-size: 13px; font-weight: 700; color: var(--white); }
.booking-page .trust-row {
  background: var(--gold);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.booking-page .tr-item {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.booking-page .tr-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,.3); }
.booking-page .svc-selector {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.booking-page .svc-selector-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); flex-shrink: 0; }
.booking-page .svc-pills { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.booking-page .svc-pill {
  padding: 7px 14px;
  border: 1px solid var(--border);
  background: var(--light);
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  color: var(--mid);
  border-radius: 2px;
}
.booking-page .svc-pill:hover { border-color: var(--gold); color: var(--dark); }
.booking-page .svc-pill.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.booking-page .booking-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.booking-page .sq-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.booking-page .sq-loading {
  position: absolute;
  inset: 0;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--mid);
  transition: opacity .4s;
}
.booking-page .sq-loading.hidden { opacity: 0; pointer-events: none; }
.booking-page .sq-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}
.booking-page .bottom-note {
  background: var(--dark);
  padding: 10px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.booking-page .bn-item {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

@media (max-width: 600px) {
  body.booking-page { overflow: auto; }
  .booking-page .booking-wrap { height: calc(100svh - 56px - 34px - 56px - 36px); min-height: 500px; }
  .booking-page .svc-pill { padding: 6px 10px; font-size: 9px; }
  .booking-page .top-bar-back span { display: none; }
  .booking-page .trust-row { display: none; }
}



