/* SANLE Beauty Salon — light purple, gold, black, white. */
:root {
  --lav-50: #faf6fe;
  --lav-100: #f3ebfb;
  --lav-200: #e6d6f5;
  --lav-300: #d3bbec;
  --lav-500: #a784cf;
  --lav-700: #6e4c96;
  --gold: #c6a052;
  --gold-soft: #e5cd92;
  --gold-deep: #9a7730;
  --ink: #16111b;
  --ink-2: #2a2231;
  --muted: #6b6273;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(60, 30, 90, .12);
  --serif: "Cormorant Garamond", "Noto Serif Georgian", Georgia, serif;
  --sans: "Manrope", "Noto Sans Georgian", system-ui, sans-serif;
  --gold-grad: linear-gradient(120deg, #9a7730, #e5cd92 35%, #c6a052 55%, #f4e3b5 70%, #9a7730);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; letter-spacing: .01em; }
:lang(ka) h1, :lang(ka) h2, :lang(ka) h3 { font-family: "Noto Serif Georgian", var(--serif); letter-spacing: 0; }
p { margin: 0 0 1em; }
svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 32px); }
.center { text-align: center; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .85em 1.5em; border-radius: 999px; border: 1px solid transparent; font: 600 .95rem/1.2 var(--sans); text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .55em 1.1em; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold-grad); background-size: 200% 100%; color: var(--ink); box-shadow: 0 8px 24px rgba(198, 160, 82, .35); animation: sheen 6s linear infinite; }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(198, 160, 82, .5); }
.btn-wa { background: #25d366; color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(6px); }
.btn-outline { border-color: var(--gold); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--gold-soft); border-color: var(--ink); }
.link-gold { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.link-gold:hover { text-decoration: underline; }
@keyframes sheen { to { background-position: -200% 0; } }

/* ---------- header ---------- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid rgba(166, 132, 207, .18); transition: background .3s; }
.is-home .site-head:not(.scrolled) { background: linear-gradient(rgba(22, 17, 27, .55), rgba(22, 17, 27, 0)); border-color: transparent; color: #fff; position: fixed; left: 0; right: 0; }
.head-row { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-ka { font: 600 1.9rem/1 "Noto Serif Georgian", serif; background: var(--gold-grad); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 8s linear infinite; }
.logo-en { display: flex; flex-direction: column; font: 600 1.05rem/1 var(--serif); letter-spacing: .18em; }
.logo-en small { font: 500 .52rem/1.6 var(--sans); letter-spacing: .32em; opacity: .75; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: .95rem; position: relative; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right .25s; }
.main-nav a:hover::after, .main-nav a[aria-current]::after { right: 0; }
.head-actions { display: flex; align-items: center; gap: 12px; }
.lang { text-decoration: none; font-weight: 700; font-size: .85rem; border: 1px solid currentColor; border-radius: 999px; padding: 4px 10px; opacity: .85; }
.burger { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 10px; cursor: pointer; color: inherit; }
.burger span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.drawer { background: var(--ink); color: #fff; padding: 12px 16px 24px; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer li a { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); text-decoration: none; font-size: 1.1rem; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; color: #fff; overflow: hidden; background: var(--ink); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 20s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(110, 76, 150, .35), transparent 60%), linear-gradient(90deg, rgba(22, 17, 27, .88) 0%, rgba(22, 17, 27, .55) 55%, rgba(22, 17, 27, .25) 100%); }
.hero-inner { position: relative; padding: 120px 0 90px; max-width: 720px; margin-left: max(16px, (100% - 1180px) / 2); }
.hero h1 { margin: 0 0 .2em; }
.hero-ka { display: block; font: 600 clamp(4rem, 12vw, 8.5rem)/1 "Noto Serif Georgian", serif; background: var(--gold-grad); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 9s linear infinite, rise .9s ease both; }
.hero-sub { display: block; font: 500 clamp(1.2rem, 2.6vw, 1.7rem)/1.3 var(--sans); color: #fff; margin-top: .4em; animation: rise .9s .15s ease both; }
.hero-tag { font: italic 500 clamp(1.4rem, 3vw, 2rem)/1.2 var(--serif); color: var(--lav-300); margin-bottom: .6em; animation: rise .9s .3s ease both; }
.hero-text { max-width: 560px; color: rgba(255, 255, 255, .86); animation: rise .9s .45s ease both; }
.hero-cta { animation: rise .9s .6s ease both; }
.eyebrow { display: inline-block; font: 700 .72rem/1 var(--sans); letter-spacing: .32em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.shimmer { background: linear-gradient(90deg, var(--gold) 0%, #fff4d6 50%, var(--gold) 100%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: sheen 4s linear infinite; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 8px; }
.sec .cta-row { justify-content: center; }
.open-badge:empty { display: none; }
.open-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: rgba(37, 211, 102, .16); color: #1f9d55; }
.hero .open-badge { color: #b6f5cf; }
.open-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse 1.8s infinite; }
.open-badge.closed { background: rgba(198, 160, 82, .18); color: var(--gold-deep); }
.hero .open-badge.closed { color: var(--gold-soft); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .6); border-radius: 14px; transform: translateX(-50%); }
.scroll-hint::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: var(--gold); transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes kenburns { to { transform: scale(1.14) translate(-1.5%, -1%); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes pulse { 50% { opacity: .35; } }
@keyframes scroll { 60% { transform: translate(-50%, 12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--gold-soft); overflow: hidden; border-block: 1px solid rgba(198, 160, 82, .35); }
.marquee-track { display: flex; gap: 48px; width: max-content; padding: 14px 0; animation: marquee 60s linear infinite; font: 500 1.05rem/1 var(--serif); letter-spacing: .04em; }
.marquee-track span::after { content: "✦"; margin-left: 48px; color: var(--lav-300); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.sec { padding: 88px 0; position: relative; }
.sec-tight { padding: 48px 0 80px; }
.sec-lav { background: linear-gradient(180deg, var(--lav-50), var(--lav-100)); }
.sec-dark { background: radial-gradient(ellipse at top, #2c2136, var(--ink) 70%); color: #fff; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.sec-head h1, .sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.sec-head p { color: var(--muted); font-size: 1.05rem; }
.sec-dark .sec-head p { color: rgba(255, 255, 255, .72); }
.sec-head h2::after, .sec-head h1::after { content: ""; display: block; width: 64px; height: 2px; margin: 18px auto 0; background: var(--gold-grad); }
.page-hero { padding: 72px 0 20px; background: radial-gradient(ellipse at top right, var(--lav-200), transparent 55%), radial-gradient(ellipse at bottom left, var(--lav-100), transparent 60%); }
.page-hero .sec-head { margin-bottom: 10px; }
.note { color: var(--muted); font-size: .92rem; text-align: center; margin-top: 28px; }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; text-decoration: none; color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(22, 17, 27, .85)); z-index: 0; }
.cat-card:hover img { transform: scale(1.08); }
.cat-body { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; display: flex; flex-direction: column; }
.cat-name { font: 600 clamp(1rem, 2.6vw, 1.2rem)/1.2 "Noto Serif Georgian", var(--serif); overflow-wrap: anywhere; }
.cat-price { color: var(--gold-soft); font-weight: 600; font-size: .92rem; }

/* ---------- offers ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid var(--lav-200); }
.offer-img { position: relative; padding: 0; border: 0; background: var(--lav-100); cursor: zoom-in; overflow: hidden; display: block; width: 100%; }
.offer-img img { width: 100%; height: auto; transition: transform .7s; }
.offer:hover .offer-img img { transform: scale(1.05); }
.badge { position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--gold-soft); font: 700 1rem/1 var(--sans); padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(0, 0, 0, .25); animation: bob 3s ease-in-out infinite; }
.offer-body { padding: 20px 22px 24px; }
.offer-body h3 { font-size: 1.35rem; }
.offer-body p { color: var(--muted); }
@keyframes bob { 50% { transform: translateY(-4px); } }

/* ---------- live reels ---------- */
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin-inline: auto; }
.reel { margin: 0; border-radius: 22px; overflow: hidden; position: relative; aspect-ratio: 9/16; background: #000; border: 1px solid rgba(198, 160, 82, .4); box-shadow: 0 20px 50px rgba(0, 0, 0, .45); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; background: linear-gradient(transparent, rgba(0, 0, 0, .75)); font-weight: 600; font-size: .95rem; }
.reel::before { content: "● LIVE"; position: absolute; top: 12px; left: 12px; z-index: 1; font: 700 .68rem/1 var(--sans); letter-spacing: .12em; color: #fff; background: rgba(229, 57, 105, .85); padding: 5px 8px; border-radius: 6px; }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item { padding: 26px; border-radius: var(--radius); background: var(--lav-50); border: 1px solid var(--lav-200); transition: transform .3s, box-shadow .3s; }
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-n { font: 600 2.2rem/1 var(--serif); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-item h3 { font-size: 1.2rem; margin-top: 10px; }
.why-item p { color: var(--muted); margin: 0; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; margin-bottom: 20px; }
.person { display: flex; flex-direction: column; align-items: center; background: #fff; border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--lav-200); transition: transform .3s; }
.person:hover { transform: translateY(-6px); }
.mono { display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%; font: 600 2.2rem/1 "Noto Serif Georgian", serif; color: var(--gold-deep); background: radial-gradient(circle at 30% 30%, #fff, var(--lav-200)); border: 2px solid transparent; background-clip: padding-box; box-shadow: 0 0 0 2px var(--gold), 0 10px 26px rgba(110, 76, 150, .25); }
.person h3 { font-size: 1.5rem; margin-bottom: .1em; }
.role { color: var(--lav-700); font-weight: 600; font-size: .92rem; min-height: 2.8em; }
.does { font-size: .88rem; color: var(--muted); }
.person .btn { margin-top: auto; }
.does a { color: var(--gold-deep); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.chip { border: 1px solid var(--lav-300); background: #fff; border-radius: 999px; padding: 8px 16px; font: 600 .9rem var(--sans); cursor: pointer; text-decoration: none; color: var(--ink); transition: background .2s, color .2s; }
.chip:hover, .chip.active { background: var(--ink); color: var(--gold-soft); border-color: var(--ink); }
.masonry { columns: 4 220px; column-gap: 14px; margin-bottom: 30px; }
.tile { display: block; width: 100%; margin: 0 0 14px; padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: zoom-in; break-inside: avoid; background: var(--lav-100); }
.tile img { width: 100%; height: auto; transition: transform .6s, filter .6s; }
.tile:hover img { transform: scale(1.05); filter: saturate(1.1); }
.tile[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12, 8, 16, .94); display: grid; place-items: center; padding: 20px; animation: fade .25s; }
.lightbox img { max-height: 88vh; max-width: 94vw; width: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.lb-btn { position: absolute; background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .3); width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; }
.lb-next { right: 18px; top: 50%; }
@keyframes fade { from { opacity: 0; } }

/* ---------- prices ---------- */
.jump { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; position: sticky; top: 76px; z-index: 5; padding: 10px; background: rgba(255, 255, 255, .9); backdrop-filter: blur(10px); border-radius: 999px; }
.price-block { display: grid; grid-template-columns: 340px 1fr; gap: 36px; padding: 34px; margin-bottom: 26px; border-radius: 24px; background: #fff; border: 1px solid var(--lav-200); box-shadow: var(--shadow); scroll-margin-top: 150px; }
.price-media img { border-radius: 16px; width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
.price-body h2 { font-size: 2rem; }
.who { font-size: .92rem; color: var(--lav-700); font-weight: 600; }
.who a { color: inherit; }
.prices { list-style: none; margin: 18px 0 0; padding: 0; }
.prices li { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px dashed var(--lav-200); }
.prices .dots { flex: 1; }
.prices strong { font: 600 1.2rem/1 var(--serif); color: var(--gold-deep); white-space: nowrap; }
.mini-book { font-size: .78rem; font-weight: 700; text-decoration: none; padding: 5px 10px; border-radius: 999px; background: var(--lav-100); color: var(--lav-700); }
.mini-book:hover { background: var(--ink); color: var(--gold-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 26px; }
.contact-card { padding: 30px; border-radius: 24px; background: var(--ink); color: #fff; }
.contact-card h3 { display: flex; align-items: center; gap: 8px; font: 700 .78rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 22px 0 8px; }
.contact-card h3:first-child { margin-top: 0; }
.contact-card a { color: #fff; }
.contact-card .btn { margin-top: 24px; color: var(--ink); }
.contact-card .open-badge { margin-left: 6px; }
.map { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; background: var(--lav-200); display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); }
.map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(3px) brightness(.55); }
.map .btn, .map p { position: relative; }
.map p { color: #fff; font-size: .85rem; margin: 12px 20px 0; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.social { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(198, 160, 82, .6); color: var(--gold); transition: background .2s, color .2s, transform .2s; }
.social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }

/* ---------- review / faq ---------- */
.review h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.review p { color: rgba(255, 255, 255, .8); max-width: 560px; margin-inline: auto; }
.review .stars { font-size: 1.8rem; letter-spacing: .2em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.faq details { background: #fff; border: 1px solid var(--lav-200); border-radius: 14px; margin-bottom: 12px; padding: 4px 20px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); }

/* ---------- booking ---------- */
.booking-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.book-form { background: #fff; padding: 32px; border-radius: 24px; border: 1px solid var(--lav-200); box-shadow: var(--shadow); display: grid; gap: 16px; }
.book-form label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
.book-form input, .book-form select, .book-form textarea { font: 500 1rem var(--sans); padding: 13px 14px; border-radius: 12px; border: 1px solid var(--lav-300); background: var(--lav-50); color: var(--ink); width: 100%; }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198, 160, 82, .25); background: #fff; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 400 !important; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--lav-700); }
.hp { position: absolute !important; left: -5000px; }
.sum { margin: 0; color: var(--lav-700); font-weight: 600; min-height: 1.4em; }
.form-msg:empty { display: none; }
.form-msg { padding: 16px; border-radius: 14px; background: var(--lav-100); font-weight: 600; }
.form-msg.ok { background: #e8f8ee; color: #176b3a; }
.form-msg.err { background: #fdecef; color: #9b1c3a; }
.form-msg .btn { margin-top: 10px; }
.book-side { background: var(--ink); color: #fff; border-radius: 24px; padding: 28px; display: grid; gap: 12px; }
.book-side p { display: flex; gap: 8px; align-items: center; margin: 0; color: rgba(255, 255, 255, .85); }
.side-img { border-radius: 16px; margin-top: 8px; }

/* ---------- legal / 404 ---------- */
.legal h2 { font-size: 1.4rem; margin-top: 1.6em; }
.legal p { color: var(--ink-2); }
.nf-code { font: 600 7rem/1 var(--serif); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; }
.nf .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: rgba(255, 255, 255, .8); padding: 64px 0 110px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1.5fr 1fr 1fr; gap: 32px; }
.logo-light { color: #fff; }
.foot-tag { font: italic 500 1.3rem var(--serif); color: var(--lav-300); margin-top: 12px; }
.foot-h { font: 700 .75rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.site-foot p { display: flex; gap: 10px; align-items: center; }
.site-foot svg { color: var(--gold); }
.site-foot a { text-decoration: none; }
.site-foot a:hover { color: var(--gold-soft); }
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.tags a { color: var(--lav-300); }
.copy { font-size: .82rem; opacity: .6; margin-top: 18px; }

/* ---------- floating actions ---------- */
.wa-float { position: fixed; right: 20px; bottom: 24px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .45); animation: ring 3s ease-in-out infinite; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes ring { 0%, 90%, 100% { transform: scale(1); } 94% { transform: scale(1.12); } }
.action-bar { display: none; }
.sparkles { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.sparkles i { position: absolute; width: 6px; height: 6px; background: radial-gradient(circle, #fff6d8, var(--gold) 60%, transparent 70%); border-radius: 50%; animation: sparkle 1s ease-out forwards; }
@keyframes sparkle { to { transform: translateY(-40px) scale(0); opacity: 0; } }

/* ---------- reveal on scroll ---------- */
/* Only hidden when JS runs — without JS everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .head-actions { margin-left: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .price-block { grid-template-columns: 1fr; }
  .price-media img { max-height: 280px; }
}
@media (max-width: 700px) {
  body { font-size: 15.5px; }
  .head-actions .btn { display: none; }
  .sec { padding: 64px 0; }
  .hero-inner { padding: 110px 0 80px; }
  .offer-grid, .why, .contact-grid, .booking-grid, .foot-grid { grid-template-columns: 1fr; }
  .reels { grid-template-columns: repeat(3, 72%); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .reel { scroll-snap-align: center; }
  .two { grid-template-columns: 1fr; }
  .price-block { padding: 20px; }
  .jump { border-radius: 16px; top: 72px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
  .jump .chip { flex: none; }
  .jump, .reels { scrollbar-width: none; }
  .jump::-webkit-scrollbar, .reels::-webkit-scrollbar { display: none; }
  .book-form { padding: 22px; }
  .map { min-height: 320px; }
  .action-bar { display: grid; grid-template-columns: 1fr 1fr 1.3fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: rgba(22, 17, 27, .96); backdrop-filter: blur(10px); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
  .action-bar a { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #fff; text-decoration: none; font-size: .75rem; font-weight: 600; padding: 6px; border-radius: 12px; }
  .action-bar a.primary { background: var(--gold-grad); color: var(--ink); }
  .action-bar svg { width: 22px; height: 22px; }
  .wa-float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero { background: var(--ink) url(/img/hero-salon-interior-poster.webp) center/cover; }
}
