/* ============================================================
   MY LUCKY Nail Studio — design system
   Premium minimalism · powder-rose dominant · minimal gold
   ============================================================ */

/* ---- Fonts are loaded via <link> in index.html (non-render-blocking) ---- */

:root{
  /* ---- color tokens ---- */
  --bg:        oklch(0.987 0.006 50);
  --bg-rose:   oklch(0.963 0.013 20);
  --surface:   oklch(1 0 0);
  --ink:       oklch(0.305 0.012 35);
  --ink-soft:  oklch(0.505 0.013 30);
  --muted:     oklch(0.66 0.014 28);
  --line:      oklch(0.905 0.012 30);
  --line-soft: oklch(0.945 0.008 30);

  /* accent — powder rose (tweakable) */
  --rose:      oklch(0.74 0.055 18);
  --rose-deep: oklch(0.62 0.068 16);
  --rose-tint: oklch(0.945 0.018 18);
  --rose-wash: oklch(0.975 0.01 18);

  /* gold — used sparingly (tweakable) */
  --gold:      oklch(0.745 0.044 82);
  --gold-soft: oklch(0.9 0.03 85);

  /* ---- shape ---- */
  --radius:    16px;
  --radius-sm: calc(var(--radius) * 0.55);
  --radius-lg: calc(var(--radius) * 1.6);

  /* ---- type ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* ---- motion ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --anim: 1;

  /* ---- layout ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 84px;
}

/* ============================================================
   reset & base
   ============================================================ */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
::selection{ background: var(--rose-tint); color: var(--ink); }

h1,h2,h3{ font-family: var(--font-display); font-weight: 500; line-height: 1.06; margin:0; letter-spacing: -0.005em; }

.wrap{ width:100%; max-width: var(--maxw); margin-inline:auto; padding-inline: var(--gutter); }

/* ---- shared bits ---- */
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display:flex; align-items:center; gap:12px;
  width: fit-content; max-width:100%;
}
.eyebrow::before{
  content:""; width:26px; height:1px; background: var(--gold); opacity:.8; flex:none;
}
.eyebrow--center{ margin-inline:auto; }
.eyebrow--center::after{
  content:""; width:26px; height:1px; background: var(--gold); opacity:.8; flex:none;
}

.section{ padding-block: clamp(64px, 9vw, 132px); }
.section-head{ max-width: 640px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-title{
  font-size: clamp(34px, 5.2vw, 58px);
  margin-top: 22px;
  text-wrap: balance;
}
.section-sub{
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 52ch;
}
.section-head--center .section-sub{ margin-inline:auto; }

/* ---- buttons ---- */
.btn{
  --btn-pad-y: 16px; --btn-pad-x: 30px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: 13px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase;
  border:1px solid transparent; border-radius: 999px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--rose); color: oklch(0.99 0 0);
  box-shadow: 0 10px 30px -12px var(--rose-deep);
}
.btn--primary:hover{ background: var(--rose-deep); box-shadow: 0 16px 40px -14px var(--rose-deep); }
.btn--ghost{
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--ghost:hover{ border-color: var(--rose); color: var(--rose-deep); }
.btn--light{ background: var(--surface); color: var(--ink); border-color: transparent; box-shadow: 0 12px 34px -16px oklch(0.3 0.02 30 / .45); }
.btn--light:hover{ color: var(--rose-deep); }
.btn--block{ width:100%; }

.link-arrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--ink); transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.link-arrow:hover{ color: var(--rose-deep); gap:16px; }

/* ============================================================
   scroll reveal
   ============================================================ */
@media (prefers-reduced-motion: no-preference){
  html.js .reveal{ opacity:0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
  html.js .reveal.is-in{ opacity:1; transform:none; }
  html.js .reveal--instant{ transition: none !important; }
}

/* ============================================================
   header / nav
   ============================================================ */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck{
  background: oklch(0.987 0.006 50 / 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height: var(--header-h); gap: 24px; }
.nav__logo{ display:flex; align-items:center; gap:12px; }
.nav__logo img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.nav__word{ font-family: var(--font-display); font-size:22px; line-height:1; letter-spacing:.01em; }
.nav__word b{ font-weight:600; }
.nav__word span{ display:block; font-family:var(--font-body); font-size:9.5px; letter-spacing:.34em; text-transform:uppercase; color:var(--muted); margin-top:3px; }
.nav__links{ display:flex; align-items:center; gap: clamp(18px, 2.2vw, 36px); }
.nav__links a{ font-size:13.5px; letter-spacing:.04em; color: var(--ink-soft); position:relative; padding-block:6px; transition: color .3s var(--ease); }
.nav__links a::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--rose); transition: right .35s var(--ease); }
.nav__links a:hover{ color: var(--ink); }
.nav__links a:hover::after{ right:0; }
.nav__right{ display:flex; align-items:center; gap:14px; }
.nav__phone{ font-size:14px; letter-spacing:.02em; color:var(--ink); white-space:nowrap; }
.nav .btn{ --btn-pad-y:12px; --btn-pad-x:22px; }

.burger{ display:none; width:44px; height:44px; border:1px solid var(--line); border-radius:50%; background:transparent; align-items:center; justify-content:center; }
.burger span{ display:block; width:18px; height:1.5px; background:var(--ink); position:relative; transition: .3s var(--ease); }
.burger span::before,.burger span::after{ content:""; position:absolute; left:0; width:18px; height:1.5px; background:var(--ink); transition:.3s var(--ease); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }
body.menu-open .burger span{ background:transparent; }
body.menu-open .burger span::before{ top:0; transform: rotate(45deg); }
body.menu-open .burger span::after{ top:0; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu{
  position: fixed; inset: var(--header-h) 0 0 0; z-index:55;
  background: var(--bg); padding: 32px var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  display:flex; flex-direction:column; gap: 6px;
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-12px); opacity:0; pointer-events:none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
body.menu-open .mobile-menu{ opacity:1; transform:none; pointer-events:auto; }
.mobile-menu a{ font-family: var(--font-display); font-size:30px; padding-block:12px; border-bottom:1px solid var(--line-soft); color:var(--ink); }
.mobile-menu .btn{ margin-top:24px; }
.mobile-menu__meta{ margin-top:auto; padding-top:28px; color:var(--ink-soft); font-size:15px; display:flex; flex-direction:column; gap:6px; }

/* ============================================================
   HERO  (3 variants via body[data-hero])
   ============================================================ */
.hero{ position:relative; padding-top: var(--header-h); }
.hero__inner{ padding-block: clamp(40px, 7vw, 88px) clamp(56px, 8vw, 104px); }

.usp-badge{
  display:inline-flex; align-items:center; gap:12px;
  padding:9px 18px 9px 12px; border-radius:999px;
  background: var(--surface); border:1px solid var(--line);
  box-shadow: 0 14px 34px -22px oklch(0.3 0.02 30 / .6);
  font-size:13px; letter-spacing:.02em; color:var(--ink);
}
.usp-badge b{ color: var(--rose-deep); font-weight:600; }
.usp-badge .dot{ width:7px; height:7px; border-radius:50%; background: var(--gold); box-shadow:0 0 0 4px var(--gold-soft); }

.hero__title{ font-size: clamp(38px, 5vw, 62px); margin-top:26px; }
.hero__title em{ font-style:italic; color: var(--rose-deep); }
.hero__sub{ margin-top:26px; font-size: clamp(16px, 1.6vw, 19px); color:var(--ink-soft); max-width: 46ch; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top: 36px; align-items:center; }
.hero__rating{ display:flex; align-items:center; gap:14px; margin-top:40px; }
.hero__stars{ display:flex; gap:3px; color: var(--gold); }
.hero__rating-txt{ font-size:14px; color:var(--ink-soft); }
.hero__rating-txt b{ color:var(--ink); font-weight:500; }

.hero__media{ position:relative; }
.hero__media .tag{
  position:absolute; z-index:3; background: var(--surface);
  border-radius: var(--radius); padding:16px 20px; box-shadow: 0 24px 60px -30px oklch(0.3 0.02 30 / .6);
  display:flex; align-items:center; gap:14px;
}
.hero__media .tag .num{ font-family:var(--font-display); font-size:34px; line-height:1; color:var(--rose-deep); }
.hero__media .tag .lbl{ font-size:12px; letter-spacing:.06em; color:var(--ink-soft); text-transform:uppercase; }
.tag--tl{ top:24px; left:-18px; } .tag--br{ bottom:28px; right:-18px; }
.hero-slot{ width:100% !important; height:auto !important; display:block; }
/* real <img> in image spots */
img.hero-slot, img.about-slot{ object-fit:cover; background:var(--rose-tint); border-radius:20px; }
img.insta-slot{ object-fit:cover; background:var(--rose-tint); display:block; }

/* layout A — split */
.hero[data-v="a"] .hero__inner{ display:grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 72px); align-items:center; }
.hero[data-v="a"] .hero-slot{ aspect-ratio: 4/5; }
.hero[data-v="a"] .hero__media .deco{ position:absolute; inset:auto -28px -28px auto; width:60%; height:60%; border:1px solid var(--gold-soft); border-radius: var(--radius-lg); z-index:1; }

/* layout B — full-bleed overlay */
.hero[data-v="b"] .hero__inner{ position:relative; }
.hero[data-v="b"] .hero__media{ position:relative; border-radius: var(--radius-lg); overflow:hidden; }
.hero[data-v="b"] .hero-slot{ aspect-ratio: 16/8.4; }
.hero[data-v="b"] .hero__scrim{ position:absolute; inset:0; background: linear-gradient(105deg, oklch(0.32 0.02 25 / .62), oklch(0.32 0.02 25 / .12) 62%); z-index:2; pointer-events:none; }
.hero[data-v="b"] .hero__copy{ position:absolute; z-index:3; left: clamp(24px,5vw,64px); top:50%; transform:translateY(-50%); max-width: 600px; color: oklch(0.99 0 0); }
.hero[data-v="b"] .hero__copy .eyebrow{ color: var(--gold-soft); }
.hero[data-v="b"] .hero__copy .eyebrow::before{ background: var(--gold-soft); }
.hero[data-v="b"] .hero__sub{ color: oklch(0.96 0.01 30 / .9); }
.hero[data-v="b"] .hero__title em{ color: var(--gold-soft); }
.hero[data-v="b"] .usp-badge{ background: oklch(1 0 0 / .14); border-color: oklch(1 0 0 / .28); color: oklch(0.99 0 0); backdrop-filter: blur(6px); }
.hero[data-v="b"] .usp-badge b{ color:#fff; }
.hero[data-v="b"] .hero__rating-txt{ color: oklch(0.96 0.01 30 / .85); }
.hero[data-v="b"] .hero__rating-txt b{ color:#fff; }

/* layout C — editorial */
.hero[data-v="c"] .hero__inner{ text-align:center; }
.hero[data-v="c"] .hero__top{ display:flex; flex-direction:column; align-items:center; }
.hero[data-v="c"] .hero__title{ font-size: clamp(52px, 11vw, 138px); }
.hero[data-v="c"] .hero__sub{ margin-inline:auto; }
.hero[data-v="c"] .hero__actions{ justify-content:center; }
.hero[data-v="c"] .hero__media{ margin-top: clamp(40px,6vw,72px); border-radius: var(--radius-lg); overflow:hidden; }
.hero[data-v="c"] .hero-slot{ aspect-ratio: 16/7; }
.hero[data-v="c"] .hero__rating{ justify-content:center; }

/* single hero variant (A) — always visible */
.hero[data-v="a"]{ display:block; }

/* marquee strip under hero */
.strip{ border-block:1px solid var(--line-soft); background: var(--rose-wash); overflow:hidden; }
.strip__track{ display:flex; gap:64px; padding-block:18px; white-space:nowrap; width:max-content; animation: marquee 32s linear infinite; }
.strip__track span{ font-family:var(--font-display); font-style:italic; font-size:22px; color:var(--rose-deep); display:inline-flex; align-items:center; gap:64px; }
.strip__track span::after{ content:"✦"; font-style:normal; font-size:11px; color:var(--gold); }
@media (prefers-reduced-motion: reduce){ .strip__track{ animation:none; } }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* ============================================================
   advantages
   ============================================================ */
.advantages{ background: var(--bg); }
.adv-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: clamp(40px,5vw,64px); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; background: var(--surface); }
.adv{ padding: clamp(28px,3vw,40px) clamp(22px,2.4vw,30px); border-right:1px solid var(--line-soft); }
.adv:last-child{ border-right:none; }
.adv__num{ font-family:var(--font-display); font-size:44px; line-height:1; color:var(--rose); }
.adv__num sup{ font-size:18px; color:var(--gold); }
.adv__t{ margin-top:18px; font-size:16px; font-weight:500; letter-spacing:.01em; }
.adv__d{ margin-top:8px; font-size:14px; color:var(--ink-soft); line-height:1.55; }

/* ============================================================
   services
   ============================================================ */
.services{ background: var(--bg-rose); }
.svc-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,1.6vw,22px); margin-top: clamp(40px,5vw,64px); }
.svc{
  position:relative; background:var(--surface); border-radius: var(--radius-lg); padding: clamp(28px,2.6vw,38px);
  border:1px solid var(--line-soft); overflow:hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display:flex; flex-direction:column; min-height: 280px;
}
.svc:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -34px oklch(0.3 0.02 30 / .5); }
.svc__idx{ font-size:12px; letter-spacing:.2em; color:var(--muted); }
.svc__name{ font-family:var(--font-display); font-size: clamp(26px,2.4vw,34px); margin-top: 16px; }
.svc__desc{ margin-top:12px; color:var(--ink-soft); font-size:15px; flex:1; }
.svc__foot{ display:flex; align-items:center; justify-content:space-between; margin-top:24px; padding-top:20px; border-top:1px solid var(--line-soft); }
.svc__price{ font-size:14px; color:var(--ink); }
.svc__price b{ font-family:var(--font-display); font-size:22px; color:var(--rose-deep); font-weight:600; }
.svc__price span{ color:var(--muted); }
.svc__arrow{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--ink); transition:.4s var(--ease); }
.svc:hover .svc__arrow{ background:var(--rose); border-color:var(--rose); color:#fff; }
.svc__mark{ position:absolute; right:-10px; top:-18px; font-family:var(--font-display); font-size:120px; color:var(--rose-wash); z-index:0; pointer-events:none; }
.svc > *{ position:relative; z-index:1; }

/* ============================================================
   gallery
   ============================================================ */
.gallery{ background: var(--bg); }
.gallery__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
/* горизонтальна карусель (full-bleed, scroll-snap) */
.gal-carousel{ margin-top: clamp(40px,5vw,60px); }
.gal-track{
  --bleed: calc(max((100vw - var(--maxw)) / 2, 0px) + var(--gutter));
  display:flex; gap: clamp(14px,1.6vw,20px);
  overflow-x:auto; scroll-snap-type:x proximity;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--bleed);
  scroll-padding-inline: var(--bleed);
  padding-bottom: 6px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.gal-track::-webkit-scrollbar{ display:none; }
.shot{
  flex: 0 0 auto; margin:0; height: 240px;
  scroll-snap-align: start;
  border-radius: var(--radius); overflow:hidden;
  position:relative; cursor: pointer; border:1px solid var(--line-soft);
}
.shot__ph{ height:100%; display:block; }
.shot__img{ width:auto; object-fit:cover; background:var(--rose-wash); }
.gal-ctrl{ display:flex; align-items:center; gap: clamp(16px,2.4vw,28px); margin-top: clamp(20px,3vw,30px); }
.gal-ctrl button{ flex:none; width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:var(--surface); color:var(--ink); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.3s var(--ease); }
.gal-ctrl button:hover{ background:var(--rose-wash); border-color:var(--rose); }
.gal-ctrl button:disabled{ opacity:.3; pointer-events:none; }
.gal-progress{ flex:1; height:2px; background:var(--line-soft); border-radius:2px; overflow:hidden; }
.gal-progress i{ display:block; height:100%; width:10%; background:var(--rose-deep); border-radius:2px; transition: width .15s linear; }
.shot__cap{ position:absolute; left:0; right:0; bottom:0; padding:16px; display:flex; align-items:flex-end; justify-content:space-between;
  background: linear-gradient(to top, oklch(0.3 0.02 25 / .55), transparent); color:#fff; opacity:0; transition: opacity .4s var(--ease); }
.shot:hover .shot__cap{ opacity:1; }
.shot__cap .t{ font-family:var(--font-display); font-size:19px; }
.shot__cap .plus{ width:34px; height:34px; border-radius:50%; background: oklch(1 0 0 / .9); color:var(--ink); display:flex; align-items:center; justify-content:center; }

/* lightbox */
.lightbox{ position:fixed; inset:0; z-index:90; background: oklch(0.25 0.012 30 / .9); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center; padding: clamp(20px,5vw,64px); opacity:0; pointer-events:none; transition: opacity .4s var(--ease); }
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox__fig{ max-width: 880px; width:100%; transform: scale(.96); transition: transform .5s var(--ease); }
.lightbox.is-open .lightbox__fig{ transform:none; }
.lightbox__img{ width:100%; border-radius: var(--radius); aspect-ratio: 4/3; }
.lightbox__img--photo{ overflow:hidden; background:#000; }
.lightbox__img--photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.lightbox__cap{ color: oklch(0.96 0.01 30 / .9); text-align:center; margin-top:18px; font-size:14px; letter-spacing:.04em; }
.lightbox__close{ position:absolute; top:24px; right:24px; width:48px; height:48px; border-radius:50%; border:1px solid oklch(1 0 0 / .3); background:transparent; color:#fff; display:flex; align-items:center; justify-content:center; }
.lightbox__nav{ position:absolute; top:50%; transform:translateY(-50%); width:54px; height:54px; border-radius:50%; border:1px solid oklch(1 0 0 / .3); background:transparent; color:#fff; display:flex; align-items:center; justify-content:center; transition:.3s var(--ease); }
.lightbox__nav:hover{ background: oklch(1 0 0 / .12); }
.lightbox__nav--prev{ left: clamp(12px,3vw,40px); } .lightbox__nav--next{ right: clamp(12px,3vw,40px); }

/* ============================================================
   about
   ============================================================ */
.about{ background: var(--bg-rose); }
.about__grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,5vw,80px); align-items:center; }
.about__media{ position:relative; }
.about-slot{ width:100% !important; height:auto !important; aspect-ratio: 4/5; display:block; }
.about__media .stamp{ position:absolute; right:-22px; bottom:-22px; width:118px; height:118px; border-radius:50%; background:var(--surface); box-shadow:0 24px 50px -28px oklch(0.3 0.02 30 / .6); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.about__media .stamp b{ font-family:var(--font-display); font-size:30px; color:var(--rose-deep); line-height:1; }
.about__media .stamp span{ font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); margin-top:4px; }
.about__feats{ margin-top: 32px; display:grid; gap: 4px; }
.about__feat{ display:flex; gap:18px; padding: 18px 0; border-top:1px solid var(--line); }
.about__feat:last-child{ border-bottom:1px solid var(--line); }
.about__feat i{ font-style:normal; font-family:var(--font-display); font-size:18px; color:var(--gold); width:28px; flex:none; }
.about__feat h4{ margin:0 0 4px; font-family:var(--font-body); font-size:16px; font-weight:500; }
.about__feat p{ margin:0; color:var(--ink-soft); font-size:14.5px; }

/* ============================================================
   reviews
   ============================================================ */
.reviews{ background: var(--bg); }
.rev-viewport{ overflow:hidden; margin-top: clamp(40px,5vw,60px); }
.rev-track{ display:flex; transition: transform .6s var(--ease); }
.rev{ flex: 0 0 100%; padding-inline: clamp(0px,2vw,40px); }
.rev__card{ max-width: 820px; margin-inline:auto; text-align:center; }
.rev__stars{ display:flex; gap:5px; justify-content:center; color:var(--gold); }
.rev__quote{ font-family:var(--font-display); font-size: clamp(24px,3.2vw,38px); line-height:1.32; margin-top:26px; text-wrap:balance; }
.rev__by{ margin-top:28px; display:flex; flex-direction:column; align-items:center; gap:4px; }
.rev__by .nm{ font-weight:500; letter-spacing:.02em; }
.rev__by .mt{ font-size:13px; color:var(--muted); letter-spacing:.04em; }
.rev__by .av{ width:54px; height:54px; border-radius:50%; background: var(--rose-tint); color:var(--rose-deep); font-family:var(--font-display); font-size:22px; display:flex; align-items:center; justify-content:center; margin-bottom:8px; }
.rev-ctrl{ display:flex; align-items:center; justify-content:center; gap:24px; margin-top: 44px; }
.rev-ctrl button{ width:50px; height:50px; border-radius:50%; border:1px solid var(--line); background:transparent; color:var(--ink); display:flex; align-items:center; justify-content:center; transition:.3s var(--ease); }
.rev-ctrl button:hover{ border-color:var(--rose); color:var(--rose-deep); }
.rev-dots{ display:flex; gap:2px; }
.rev-dots button{ width:28px; height:28px; padding:0; border:none; background:transparent; position:relative; }
.rev-dots button::after{ content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:8px; height:8px; border-radius:4px; background:var(--line); transition:.3s var(--ease); }
.rev-dots button.is-on::after{ background:var(--rose); width:22px; }

/* ============================================================
   instagram
   ============================================================ */
.insta{ background: var(--bg-rose); }
.insta__grid{ display:grid; grid-template-columns: repeat(6,1fr); gap: clamp(10px,1.2vw,16px); margin-top: clamp(40px,5vw,56px); }
.insta__cell{ aspect-ratio:1; border-radius: var(--radius-sm); overflow:hidden; position:relative; }
.insta-slot{ width:100% !important; height:100% !important; }
.insta__cell .ig{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; opacity:0; background: oklch(0.3 0.02 25 / .35); transition:.4s var(--ease); pointer-events:none; }
.insta__cell:hover .ig{ opacity:1; }
.insta__follow{ display:flex; align-items:center; justify-content:center; gap:10px; margin-top:36px; }

/* ============================================================
   contacts
   ============================================================ */
.contacts{ background: var(--bg); }
.contacts__grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,4vw,64px); margin-top: clamp(40px,5vw,60px); align-items:stretch; }
.contacts__info{ display:flex; flex-direction:column; gap: 4px; }
.cinfo{ display:flex; gap:18px; padding: 22px 0; border-bottom:1px solid var(--line); }
.cinfo:first-child{ border-top:1px solid var(--line); }
.cinfo .ic{ width:42px; height:42px; flex:none; border-radius:50%; background:var(--rose-wash); color:var(--rose-deep); display:flex; align-items:center; justify-content:center; }
.cinfo .lbl{ font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }
.cinfo .val{ font-size:19px; margin-top:4px; font-family:var(--font-display); }
.cinfo .val a:hover{ color:var(--rose-deep); }
.contacts__map{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); min-height: 380px; position:relative; background: var(--rose-wash); }
.contacts__map::before{
  content:"Google Maps · точку буде додано"; position:absolute; inset:0; z-index:0;
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-family: ui-monospace, Menlo, monospace; font-size:12px; letter-spacing:.08em; color:var(--rose-deep);
  background: repeating-linear-gradient(135deg, var(--rose-wash), var(--rose-wash) 16px, var(--rose-tint) 16px, var(--rose-tint) 32px);
}
.contacts__map iframe{ position:relative; z-index:1; width:100%; height:100%; border:0; min-height:380px; filter: grayscale(0.3) saturate(0.9) brightness(1.02); }

/* ============================================================
   footer
   ============================================================ */
.footer{ background: oklch(0.28 0.012 32); color: oklch(0.9 0.008 40); }
.footer .wrap{ padding-block: clamp(56px,7vw,88px) 40px; }
.footer__top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; align-items:start; }
.footer__brand .nav__word{ color:#fff; }
.footer__brand .nav__word span{ color: oklch(0.78 0.02 40); }
.footer__brand p{ margin-top:20px; color: oklch(0.8 0.01 40); max-width: 34ch; font-size:15px; }
.footer__brand img{ width:46px; height:46px; border-radius:50%; }
.footer h5{ font-family:var(--font-body); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color: oklch(0.72 0.02 40); margin:0 0 18px; font-weight:500; }
.footer__col a, .footer__col p{ display:block; color: oklch(0.88 0.01 40); margin:0 0 12px; font-size:15px; transition: color .3s var(--ease); }
.footer__col a:hover{ color: var(--gold-soft); }
.footer__cta{ background: oklch(0.32 0.014 30); border-radius: var(--radius-lg); padding: clamp(28px,3vw,40px); }
.footer__cta h3{ color:#fff; font-size:26px; }
.footer__cta p{ color: oklch(0.8 0.01 40); margin:12px 0 22px; font-size:15px; }
.footer__bar{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top: clamp(40px,5vw,64px); padding-top:28px; border-top:1px solid oklch(1 0 0 / .12); font-size:13px; color: oklch(0.72 0.02 40); letter-spacing:.02em; }
.footer__socials{ display:flex; gap:12px; }
.footer__socials a{ width:40px; height:40px; border-radius:50%; border:1px solid oklch(1 0 0 / .18); display:flex; align-items:center; justify-content:center; color:#fff; transition:.3s var(--ease); }
.footer__socials a:hover{ background: var(--rose); border-color:var(--rose); }

/* ============================================================
   booking sheet (all options in one menu)
   ============================================================ */
.book-overlay{ position:fixed; inset:0; z-index:100; background: oklch(0.25 0.012 30 / .5); backdrop-filter: blur(4px); opacity:0; pointer-events:none; transition: opacity .4s var(--ease); }
.book-overlay.is-open{ opacity:1; pointer-events:auto; }
.book-sheet{ position:fixed; z-index:101; right: clamp(12px,2vw,28px); top:50%; transform: translateY(-50%) translateX(20px); width: min(420px, calc(100vw - 24px)); max-height: 92vh; overflow:auto;
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); box-shadow: 0 40px 90px -40px oklch(0.3 0.02 30 / .7);
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease), transform .5s var(--ease);
  scrollbar-width: none; /* контент гортається, але без видимої смуги прокрутки */ }
.book-sheet::-webkit-scrollbar{ display:none; }
.book-sheet.is-open{ opacity:1; pointer-events:auto; transform: translateY(-50%) translateX(0); }
.book-sheet__close{ position:absolute; top:20px; right:20px; width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:transparent; display:flex; align-items:center; justify-content:center; }
.book-sheet h3{ font-size:30px; }
.book-sheet .eyebrow{ margin-bottom:14px; }
.book-sheet p.lead{ color:var(--ink-soft); margin:10px 0 24px; font-size:15px; }
.book-opt{ display:flex; align-items:center; gap:16px; padding:18px; border:1px solid var(--line); border-radius: var(--radius); margin-bottom:12px; transition:.3s var(--ease); }
.book-opt:hover{ border-color:var(--rose); background: var(--rose-wash); transform: translateX(3px); }
.book-opt .ic{ width:46px; height:46px; flex:none; border-radius:50%; background:var(--rose-wash); color:var(--rose-deep); display:flex; align-items:center; justify-content:center; }
.book-opt .tx h4{ margin:0; font-size:16px; font-weight:500; font-family:var(--font-body); }
.book-opt .tx p{ margin:2px 0 0; font-size:13px; color:var(--muted); }
.book-opt .go{ margin-left:auto; color:var(--muted); }
.book-divider{ display:flex; align-items:center; gap:14px; margin:22px 0 18px; color:var(--muted); font-size:12px; letter-spacing:.18em; text-transform:uppercase; }
.book-divider::before,.book-divider::after{ content:""; height:1px; background:var(--line); flex:1; }
.book-field{ margin-bottom:14px; }
.book-field label{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:8px; }
.book-field input, .book-field select{ width:100%; padding:14px 16px; border:1px solid var(--line); border-radius: var(--radius-sm); background:var(--bg); font-family:inherit; font-size:16px; color:var(--ink); transition:.3s var(--ease); } /* 16px — щоб iOS не зумував при фокусі */
.book-field input:focus, .book-field select:focus{ outline:none; border-color:var(--rose); background:var(--surface); }
.book-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.book-success{ text-align:center; padding: 30px 0; }
.book-success .check{ width:72px; height:72px; border-radius:50%; background:var(--rose-tint); color:var(--rose-deep); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.book-success h3{ margin-bottom:10px; }
.book-success p{ color:var(--ink-soft); }

/* floating book button (mobile) */
.book-fab{ position:fixed; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left:50%; transform:translateX(-50%); z-index:50; display:none; box-shadow: 0 14px 38px -12px var(--rose-deep); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.book-fab.is-hidden{ opacity:0; transform: translateX(-50%) translateY(12px); pointer-events:none; }

/* ---- striped placeholder (gallery / lightbox) ---- */
.ph{
  background: repeating-linear-gradient(135deg, var(--rose-wash), var(--rose-wash) 14px, var(--rose-tint) 14px, var(--rose-tint) 28px);
  display:flex; align-items:center; justify-content:center; width:100%;
}
.ph__lbl{
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--rose-deep);
  background: var(--surface); padding:7px 14px; border-radius:999px;
  box-shadow: 0 6px 18px -10px var(--rose-deep);
}

/* ============================================================
   image-slot placeholder styling (rose-tinted, on-brand)
   ============================================================ */
image-slot{
  color: var(--rose-deep);
  font-family: var(--font-body);
  letter-spacing:.04em;
}
image-slot::part(frame){
  background:
    repeating-linear-gradient(135deg, var(--rose-tint), var(--rose-tint) 13px, var(--rose) 13px, var(--rose) 14px);
  border: 1px solid var(--rose);
}
image-slot::part(empty){ gap:8px; }

/* ============================================================
   stars helper
   ============================================================ */
.stars{ display:inline-flex; gap:3px; }
.star{ width:16px; height:16px; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1080px){
  .adv-grid{ grid-template-columns: repeat(2,1fr); }
  .adv:nth-child(2){ border-right:none; }
  .adv{ border-bottom:1px solid var(--line-soft); }
  .adv:nth-last-child(-n+1){ border-bottom:none; }
  .svc-grid{ grid-template-columns: repeat(2,1fr); }
  .insta__grid{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 920px){
  .nav__links, .nav__phone{ display:none; }
  .nav .btn--primary{ display:none; }
  .burger{ display:flex; }
  .hero[data-v="a"] .hero__inner{ grid-template-columns:1fr; }
  .hero[data-v="a"] .hero-slot{ aspect-ratio: 16/12; }
  .about__grid{ grid-template-columns:1fr; }
  .about-slot{ aspect-ratio:16/12; }
  .contacts__grid{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:1fr 1fr; }
  .footer__brand{ grid-column:1/-1; }
}
@media (max-width: 680px){
  :root{ --header-h: 68px; }
  body{ font-size:16px; }
  .nav__logo img{ width:38px; height:38px; }
  .nav__word{ font-size:19px; }
  .adv-grid{ grid-template-columns:1fr; }
  .adv{ border-right:none; }
  .svc-grid{ grid-template-columns:1fr; }
  .gal-ctrl button{ width:44px; height:44px; }
  .insta__grid{ grid-template-columns: repeat(3,1fr); }
  .footer__top{ grid-template-columns:1fr; }
  .book-fab{ display:block; }
  .hero[data-v="b"] .hero__copy{ position:static; transform:none; color:var(--ink); padding: 28px 4px 0; max-width:none; }
  .hero[data-v="b"] .hero__scrim{ display:none; }
  .hero[data-v="b"] .hero__copy .eyebrow{ color:var(--rose-deep); }
  .hero[data-v="b"] .hero__copy .eyebrow::before{ background:var(--gold); }
  .hero[data-v="b"] .hero__sub{ color:var(--ink-soft); }
  .hero[data-v="b"] .hero__title em{ color:var(--rose-deep); }
  .hero[data-v="b"] .usp-badge{ background:var(--surface); border-color:var(--line); color:var(--ink); }
  .hero[data-v="b"] .usp-badge b{ color:var(--rose-deep); }
  .hero[data-v="b"] .hero__rating-txt{ color:var(--ink-soft); }
  .hero[data-v="b"] .hero__rating-txt b{ color:var(--ink); }
  /* шторка запису: на телефонах — на весь екран, без радіусів */
  .book-sheet{ top:0; bottom:0; right:0; left:0; width:100%; height:100dvh; max-height:none; transform: translateY(20px); border-radius: 0; padding-top: calc(clamp(26px,3vw,38px) + env(safe-area-inset-top, 0px)); padding-bottom: calc(clamp(26px,3vw,38px) + env(safe-area-inset-bottom, 0px)); }
  .book-sheet.is-open{ transform: translateY(0); }
  /* декоративні елементи не вилазять за екран */
  .hero[data-v="a"] .hero__media .deco{ display:none; }
  .hero__media .tag{ padding:12px 16px; gap:10px; }
  .hero__media .tag .num{ font-size:26px; }
  .hero__media .tag .lbl{ font-size:10.5px; }
  .tag--br{ right:12px; bottom:14px; }
  .about__media .stamp{ right:12px; bottom:-18px; width:96px; height:96px; }
  .about__media .stamp b{ font-size:24px; }
  .contacts__map{ min-height:300px; }
  .contacts__map iframe{ min-height:300px; }
  .footer__bar{ justify-content:center; text-align:center; }
}

/* лайтбокс на вузьких екранах: стрілки знизу, не поверх фото */
@media (max-width: 560px){
  .lightbox{ padding: 64px 16px 100px; }
  .lightbox__nav{ top:auto; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform:none; width:48px; height:48px; }
  .lightbox__nav--prev{ left: calc(50% - 60px); }
  .lightbox__nav--next{ right: calc(50% - 60px); }
  .lightbox__close{ top:14px; right:14px; width:44px; height:44px; }
}

/* дуже вузькі екрани */
@media (max-width: 440px){
  .hero__title{ font-size: clamp(34px, 10vw, 44px); }
  .hero[data-v="c"] .hero__title{ font-size: clamp(44px, 14vw, 60px); }
  .hero__actions{ width:100%; }
  .hero__actions .btn{ flex:1 1 auto; }
  .usp-badge{ font-size:12px; padding:8px 14px 8px 10px; }
  .section-title{ font-size: clamp(30px, 8.6vw, 38px); }
  .btn{ --btn-pad-y:15px; --btn-pad-x:24px; }
  .svc{ min-height:0; }
  .book-row{ grid-template-columns:1fr; }
  .rev__quote{ font-size:22px; }
  .footer__cta{ text-align:center; }
}
