/* =========================================================
   The Vibrant Glance — Premium Beauty & Wellness Spa, Kumasi
   Brand identity: black · white · editorial serif · geometric
   Archane substitute: Fraunces · Stara substitute: Inter
   ========================================================= */

:root {
  --bg:      #090909;
  --bg-2:    #111111;
  --bg-3:    #1b1b1b;
  --line:    rgba(255,255,255,.07);
  --line-2:  rgba(255,255,255,.15);
  --text:    #F0EDE8;
  --muted:   #969696;
  --muted-2: #636363;

  /* Monochrome base + gold highlight system */
  --accent:     #FFFFFF;
  --accent-mid: #BEBEBE;
  --accent-dim: rgba(255,255,255,.4);
  --gold:       #D9B26A;
  --gold-soft:  rgba(217,178,106,.16);

  --grad-accent: linear-gradient(135deg, #FFFFFF 0%, #C8C8C8 100%);
  --grad-gold:   linear-gradient(135deg, #E8C687 0%, #C89B52 100%);
  --grad-dark:   linear-gradient(160deg, #111111 0%, #070707 100%);

  --shadow-sm: 0 8px 24px rgba(0,0,0,.55);
  --shadow-md: 0 22px 55px rgba(0,0,0,.68);
  --shadow-lg: 0 40px 90px rgba(0,0,0,.78);

  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1200px;

  --font-head:  "Fraunces", "Playfair Display", Georgia, serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body:  "Inter", -apple-system, "Segoe UI", sans-serif;

  /* V-motif chevron pattern — section texture device */
  --vg-pattern: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 0L20 20L40 0 M0 20L20 40L40 20' stroke='white' stroke-width='0.65' fill='none' opacity='0.055'/></svg>");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.14; letter-spacing: -.02em; }
h2 { color: var(--text); }
h3 { font-size: 1.35rem; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.4rem; }
.section { }
.section--tint { background-color: #080808; background-image: var(--vg-pattern), var(--grad-dark); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 500; font-size: .92rem; letter-spacing: .06em;
  padding: .95rem 1.9rem; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-transform: uppercase; white-space: nowrap;
}
.btn--sm { padding: .62rem 1.25rem; font-size: .78rem; }
/* Primary CTA — gold gradient, near-black text. Contrast ratio ≈ 9:1. */
.btn--gold { background: var(--grad-gold); color: #090909; box-shadow: 0 12px 28px rgba(217,178,106,.16); font-weight: 600; }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(217,178,106,.24); background: linear-gradient(135deg, #F0D093 0%, #D3A65C 100%); }
/* Ghost — transparent bg, light border/text. Contrast ratio > 7:1 on dark bg. */
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn--whatsapp { background: #25D366; color: #05391b; font-weight: 600; }
.btn--whatsapp:hover { background: #1fbe5b; transform: translateY(-3px); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 1rem; display: inline-block; }
.eyebrow--gold { color: var(--gold); }
.section-head { max-width: 660px; margin: 0 auto; text-align: center; }
.section-head__lead { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }

/* ---------- Announcement ---------- */
.announcement { background: #050505; color: #b8b8b8; font-size: .82rem; letter-spacing: .04em; border-bottom: 1px solid var(--line); }
.announcement__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .55rem; }
.announcement__item { opacity: .8; }
.announcement__phone { color: var(--gold); font-weight: 500; }
.announcement__phone:hover { color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent; transition: border-color .3s ease, box-shadow .3s ease;
}
/* backdrop-filter lives on a pseudo-element so it does NOT create a containing
   block for position:fixed children — which would trap the mobile nav drawer
   and make it clip to the header height instead of covering the full viewport */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(9,9,9,.55);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .3s ease;
}
.header.is-scrolled { border-bottom-color: rgba(255,255,255,.09); box-shadow: var(--shadow-sm); }
.header.is-scrolled::before { background: rgba(9,9,9,.93); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark { height: 42px; width: auto; transition: height .3s ease; }
.header.is-scrolled .brand__mark { height: 36px; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word-top { font-family: var(--font-body); font-size: .68rem; letter-spacing: .38em; text-transform: uppercase; color: var(--muted); margin-bottom: .18rem; }
.brand__word-main { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text); }
@media (max-width: 600px) { .brand__word-main { font-size: 1rem; letter-spacing: .12em; } .brand__mark { height: 36px; } }

.nav { display: flex; gap: 2rem; }
.nav a { font-size: .9rem; letter-spacing: .05em; color: var(--text); position: relative; padding: .3rem 0; font-weight: 400; opacity: .75; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { opacity: 1; color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; width: 44px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: #000; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: grayscale(80%); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,9,9,.97) 0%, rgba(9,9,9,.78) 45%, rgba(9,9,9,.28) 100%),
              linear-gradient(to top, var(--bg) 0%, transparent 12%);
}
.hero__inner { position: relative; padding-block: 6rem; max-width: 780px; }
.hero__title { margin-bottom: 1.3rem; color: #fff; }
.hero__title em { color: var(--gold); font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.hero__sub { font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 640px; color: #c0c0c0; margin-bottom: 2.2rem; font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 2.6rem; }
.hero__badges li { font-size: .88rem; color: #808080; letter-spacing: .02em; }
.hero__badges strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); font-weight: 600; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  background: #050505; color: var(--accent-mid); overflow: hidden; padding-block: 1rem; border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: inline-flex; gap: 1.7rem; white-space: nowrap; animation: marquee 32s linear infinite; font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: .06em; }
.marquee__track span:nth-child(even) { color: var(--muted-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; border: 1px solid var(--line); }
.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(0.25, 1, 0.5, 1); filter: grayscale(30%); }
.about__media:hover img { transform: scale(1.05); }
.about__stat { position: absolute; left: 1.1rem; bottom: 1.1rem; background: rgba(9,9,9,.88); border: 1px solid var(--line-2); padding: .85rem 1.25rem; border-radius: 14px; backdrop-filter: blur(6px); }
.about__stat-num { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.about__stat-label { font-size: .76rem; letter-spacing: .05em; color: var(--muted); }
.about__body h2 { margin-bottom: 1.2rem; }
.about__body p { color: var(--muted); margin-bottom: 1rem; }
.ticklist { list-style: none; margin: 1.5rem 0 2rem; display: grid; gap: .7rem; }
.ticklist li { position: relative; padding-left: 1.9rem; color: var(--text); font-weight: 400; }
.ticklist li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--accent-mid); font-size: .85rem; }

/* ---------- Service category cards ---------- */
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 270px;
}
.svc-card::before { content: ""; position: absolute; inset: auto 0 0 0; height: 2px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 3; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.svc-card:hover .svc-card__bg { transform: scale(1.07); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.97) 0%, rgba(9,9,9,0.65) 45%, rgba(9,9,9,0.12) 100%);
  z-index: 1; transition: background .4s ease;
}
.svc-card:hover .svc-card__overlay {
  background: linear-gradient(to top, rgba(9,9,9,0.99) 0%, rgba(9,9,9,0.8) 55%, rgba(9,9,9,0.32) 100%);
}
.svc-card__content {
  display: flex; flex-direction: column; gap: 0.25rem; width: 100%; position: relative; z-index: 2;
}
.svc-card h3 { color: #ffffff; margin-bottom: .2rem; font-size: 1.25rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.svc-card__count { color: var(--accent-mid); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.svc-card__price { display: block; margin-top: .4rem; font-family: var(--font-head); font-weight: 600; color: #ffffff; font-size: 0.95rem; opacity: 0.95; }
.svc-card__cta { margin-top: .6rem; color: var(--accent-mid); font-size: .82rem; letter-spacing: .04em; font-weight: 500; transition: transform 0.3s ease; }
.svc-card:hover .svc-card__cta { transform: translateX(3px); }

/* ---------- Feature / space ---------- */
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature__body h2 { margin: .8rem 0 1rem; }
.feature__body > p { color: var(--muted); margin-bottom: 2rem; max-width: 46ch; }
.feature__list { display: grid; gap: 1.4rem; }
.feature__item { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature__num { font-family: var(--font-head); font-size: 1.3rem; color: var(--accent-mid); font-weight: 700; min-width: 2rem; }
.feature__item h4 { color: var(--text); font-size: 1.1rem; margin-bottom: .2rem; }
.feature__item p { color: var(--muted); font-size: .95rem; }
.feature__media { position: relative; display: grid; gap: 1rem; }
.feature__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); width: 100%; object-fit: cover; filter: grayscale(40%); }
.feature__media-2 { width: 72% !important; margin-left: auto; margin-top: -3rem; position: relative; z-index: 2; border: 2px solid var(--bg) !important; }

/* ---------- Price menu ---------- */
.menu__panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.menu__bar { padding: 1.4rem; border-bottom: 1px solid var(--line); display: grid; gap: 1rem; }
.menu__tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.menu__tab {
  background: var(--bg); border: 1px solid var(--line); color: var(--muted);
  padding: .55rem 1.1rem; border-radius: 100px; font-family: var(--font-body); font-size: .86rem;
  cursor: pointer; letter-spacing: .03em; transition: all .2s ease; white-space: nowrap;
}
.menu__tab:hover { color: var(--text); border-color: var(--line-2); }
/* Active tab — white bg, dark text. Contrast > 19:1. */
.menu__tab.is-active { background: var(--accent); color: #090909; border-color: transparent; font-weight: 600; }

.menu__body { padding: .6rem 1.4rem 1.4rem; max-height: 620px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.menu__body::-webkit-scrollbar { width: 8px; }
.menu__body::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }

.subcat { border-bottom: 1px solid var(--line); }
.subcat:last-child { border-bottom: none; }
.subcat__head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem .2rem; background: none; border: none; cursor: pointer; text-align: left; color: var(--text); font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; }
.subcat__head:hover { color: var(--accent); }
.subcat__meta { display: flex; align-items: center; gap: .9rem; }
.subcat__count { font-family: var(--font-body); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); font-weight: 400; }
.subcat__chev { color: var(--accent-mid); transition: transform .3s ease; font-size: .9rem; }
.subcat.is-open .subcat__chev { transform: rotate(180deg); }
.subcat__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.subcat.is-open .subcat__panel { grid-template-rows: 1fr; }
.subcat__inner { overflow: hidden; }
.subcat__note { color: var(--muted); font-size: .85rem; padding: 0 .2rem .6rem; font-style: italic; }
.svc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6rem .2rem; border-top: 1px dashed var(--line); }
.svc-row:first-child { border-top: none; }
.svc-row__name { color: var(--muted); font-weight: 300; font-size: .98rem; }
.svc-row__price { font-family: var(--font-head); color: var(--accent); font-weight: 600; white-space: nowrap; font-size: 1rem; }
.svc-row mark { background: rgba(255,255,255,.1); color: var(--accent); border-radius: 3px; padding: 0 2px; }
.menu__empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.menu__foot { padding: 1.1rem 1.4rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .82rem; text-align: center; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--bg-2); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; filter: grayscale(60%); }
.gallery__item:hover img { transform: scale(1.07); filter: grayscale(15%); }
.gallery__item::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.gallery__item:hover::after { opacity: 1; }

/* ---------- Rating band ---------- */
.rating__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; background: var(--grad-dark); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.5rem); box-shadow: var(--shadow-md); }
.rating__score { text-align: center; padding-right: clamp(1rem, 3vw, 3rem); border-right: 1px solid var(--line); }
.rating__num { font-family: var(--font-head); font-size: 4.5rem; font-weight: 700; color: var(--accent); line-height: 1; display: block; }
.rating__stars { color: var(--gold); letter-spacing: .1em; font-size: 1.1rem; display: block; margin: .4rem 0; }
.rating__label { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.rating__text h2 { margin-bottom: 1rem; }
.rating__text p { color: var(--muted); margin-bottom: 1.6rem; max-width: 60ch; }

/* ---------- Booking CTA ---------- */
.book { position: relative; overflow: hidden; background: #050505; }
.book::before, .book::after { content: ""; position: absolute; border-radius: 50%; filter: blur(24px); }
.book::before { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%); top: -140px; right: -80px; }
.book::after { width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.03), transparent 70%); bottom: -140px; left: -70px; }
.book__inner { position: relative; max-width: 720px; margin-inline: auto; }
.book__lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 2rem; }
.book__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.book__perk { margin-top: 1.8rem; color: var(--accent-mid); font-size: .9rem; letter-spacing: .04em; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info h2 { margin-bottom: 2rem; }
.contact__list { list-style: none; display: grid; gap: 1.5rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.15rem; flex-shrink: 0; }
.contact__list h4 { color: var(--text); margin-bottom: .25rem; font-size: 1.06rem; }
.contact__list p, .contact__list a { color: var(--muted); }
.contact__list a:hover { color: var(--accent); }
.hours { border-collapse: collapse; font-size: .95rem; color: var(--muted); }
.hours td { padding: .16rem 1.4rem .16rem 0; }
.hours td:first-child { color: var(--text); font-weight: 500; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 440px; height: 100%; }
.contact__map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(.85) contrast(1.1) brightness(.9); }

/* ---------- Footer ---------- */
.footer { background: #050505; color: var(--muted); padding-top: 4rem; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { height: 60px; width: auto; margin-bottom: 1rem; }
.footer__brand p { color: var(--muted-2); font-size: .95rem; max-width: 32ch; }
.footer__col h4 { color: var(--accent-mid); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 500; }
.footer__col a { display: block; color: var(--muted); padding: .3rem 0; font-size: .95rem; }
.footer__col a:hover { color: var(--text); }
.socials { display: flex; flex-wrap: wrap; gap: .5rem; }
.socials a { padding: .4rem .85rem; border: 1px solid var(--line-2); border-radius: 100px; font-size: .8rem; }
.socials a:hover { background: var(--accent); color: #090909; border-color: transparent; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted-2); flex-wrap: wrap; }

/* ---------- Floating actions ---------- */
.fab-stack { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 40; display: flex; flex-direction: column; gap: .7rem; align-items: center; }
.fab { display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .25s ease; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab--wa { width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; }
.fab--book { display: none; background: var(--grad-gold); color: #090909; font-weight: 600; letter-spacing: .05em; padding: .9rem 1.4rem; border-radius: 100px; text-transform: uppercase; font-size: .82rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Dim overlay behind the mobile nav drawer */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 44;
  background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
body.nav-open::before { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); background: var(--bg-2); flex-direction: column; gap: 0; padding: 6rem 2rem 2rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s ease; z-index: 45; border-left: 1px solid var(--line); overflow-y: auto; }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; width: 100%; text-align: left; opacity: .9; }
  .nav-toggle { display: block; z-index: 46; }
  .about__grid, .feature__grid, .contact__grid { grid-template-columns: 1fr; }
  .feature__media { order: -1; max-width: 560px; }
  .feature__media-2 { margin-top: -2rem; }
  .about__media { max-height: 520px; }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .rating__inner { grid-template-columns: 1fr; text-align: center; }
  .rating__score { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 1.5rem; }
  .rating__text p { margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .announcement__item { display: none; }
  .announcement__inner { justify-content: center; }
  .header__actions .book-link { display: none; }
  .svc-cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
  .hero__badges { gap: 1.5rem; }
  .book__cta .btn, .hero__cta .btn { flex: 1 1 auto; }
  .fab--book { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .menu__tab { font-size: .8rem; padding: .5rem .9rem; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .subcat__panel { transition: none; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   Booking wizard
   ========================================================= */
.book { text-align: center; }
.bw { max-width: 820px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; text-align: left; position: relative; }
.bw__steps { display: flex; list-style: none; margin: 0; padding: 1.05rem 1.2rem; gap: .5rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); flex-wrap: wrap; }
.bw__steps li { display: flex; align-items: center; gap: .5rem; color: var(--muted-2); font-size: .82rem; letter-spacing: .03em; }
.bw__dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-3); border: 1px solid var(--line-2); color: var(--muted); font-size: .8rem; font-weight: 600; flex-shrink: 0; }
.bw__steps li.is-active { color: var(--text); }
/* Active step dot — white bg, dark text. Contrast > 19:1. */
.bw__steps li.is-active .bw__dot { background: var(--accent); color: #090909; border-color: transparent; }
.bw__steps li.is-done .bw__dot { background: rgba(255,255,255,.12); color: var(--accent); border-color: transparent; }

.bw__body { padding: 1.4rem 1.4rem 1.6rem; }
.bw__panel { display: grid; gap: 1.1rem; }
.bw__cats { display: flex; flex-wrap: wrap; gap: .5rem; }
.bw__cat { background: var(--bg); border: 1px solid var(--line); color: var(--muted); padding: .5rem .9rem; border-radius: 100px; font-family: var(--font-body); font-size: .85rem; cursor: pointer; transition: all .2s ease; }
.bw__cat:hover { color: var(--text); border-color: var(--line-2); }
.bw__cat.is-active { background: var(--accent); color: #090909; border-color: transparent; font-weight: 600; }

.bw__svc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; max-height: 340px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.bw__svc-list::-webkit-scrollbar { width: 8px; }
.bw__svc-list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.bw__svc { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: .7rem .9rem; cursor: pointer; color: var(--text); transition: border-color .18s ease, background .18s ease; }
.bw__svc:hover { border-color: var(--line-2); }
.bw__svc.is-selected { border-color: var(--accent-mid); background: rgba(255,255,255,.06); }
.bw__svc-name { display: flex; flex-direction: column; font-size: .96rem; line-height: 1.3; }
.bw__svc-name em { font-style: normal; color: var(--muted-2); font-size: .74rem; letter-spacing: .03em; margin-top: .1rem; }
.bw__svc-price { font-family: var(--font-head); color: var(--gold); font-weight: 600; white-space: nowrap; }

.bw__field { display: grid; gap: .4rem; }
.bw__field > label { font-size: .85rem; color: var(--text); letter-spacing: .03em; }
.bw__field > label span { color: var(--accent-mid); }
.bw__field > label small { color: var(--muted-2); font-weight: 300; }
.bw__field input, .bw__field textarea { background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px; padding: .78rem .9rem; color: var(--text); font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color .18s ease; width: 100%; }
.bw__field input:focus, .bw__field textarea:focus { border-color: var(--accent); }
.bw__field textarea { resize: vertical; min-height: 76px; }
.bw__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.85); cursor: pointer; }

.bw__slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .5rem; }
.bw__slot { background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: .6rem .3rem; border-radius: 10px; cursor: pointer; font-family: var(--font-body); font-size: .9rem; transition: all .18s ease; }
.bw__slot:hover:not(:disabled) { border-color: var(--accent-mid); color: var(--accent); }
.bw__slot.is-selected { background: var(--accent); color: #090909; border-color: transparent; font-weight: 600; }
.bw__slot:disabled { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

.bw__actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .3rem; }
.bw__actions--center { justify-content: center; }
.bw__hint { color: var(--muted-2); font-size: .85rem; }
.bw__error { color: #ff9584; background: rgba(255,149,132,.1); border: 1px solid rgba(255,149,132,.32); border-radius: 10px; padding: .6rem .8rem; font-size: .9rem; margin: 0; }
.bw__fineprint { color: var(--muted-2); font-size: .85rem; margin: 0; }

.bw__review { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.bw__review-row { display: flex; justify-content: space-between; gap: 1rem; padding: .72rem .95rem; background: var(--bg); }
.bw__review-row span { color: var(--muted); font-size: .9rem; }
.bw__review-row strong { color: var(--text); font-weight: 500; text-align: right; }
.bw__review--sm { margin: .6rem 0; }

.bw__success { text-align: center; display: grid; gap: .85rem; justify-items: center; padding: 1rem 0 .4rem; }
/* Success tick — white bg, dark text. Contrast > 19:1. */
.bw__tick { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #090909; display: grid; place-items: center; font-size: 2rem; font-weight: 700; }
.bw__success h3 { font-size: 1.65rem; }
.bw__success > p { color: var(--muted); margin: 0; }
.bw__ref { font-family: var(--font-head); font-size: 1.45rem; color: var(--accent); letter-spacing: .08em; background: var(--bg); border: 1px dashed var(--line-2); padding: .5rem 1.2rem; border-radius: 10px; }
.bw__success .bw__review { width: 100%; max-width: 460px; text-align: left; }

.book__alt { text-align: center; margin-top: 2rem; color: var(--muted); }
.book__alt > span { display: block; margin-bottom: .8rem; font-size: .92rem; }
.book__alt-btns { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.book__perk { text-align: center; }

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: var(--shadow-lg); }
.cookie[hidden] { display: none; }
.cookie__inner { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 1.3rem; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.cookie__text { color: var(--muted); font-size: .9rem; margin: 0; flex: 1; min-width: 240px; }
/* Cookie banner link — accent-mid (silver) on dark bg. Readable. */
.cookie__text a { color: var(--accent-mid); text-decoration: underline; }
.cookie__btns { display: flex; gap: .6rem; flex-shrink: 0; }

/* =========================================================
   Footer legal + content pages (privacy / 404)
   ========================================================= */
.footer__legal { display: flex; gap: .6rem; align-items: center; color: var(--muted-2); }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

.simple-header { position: sticky; top: 0; z-index: 50; background: rgba(9,9,9,.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.simple-header .header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: .7rem; }
.simple-header .btn { flex-shrink: 0; }

.page { padding: clamp(3rem, 7vw, 6rem) 0; min-height: 62vh; }
.page__inner { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .4rem; }
.legal .updated { color: var(--muted-2); font-size: .85rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 .6rem; color: var(--accent-mid); }
.legal p, .legal li { color: var(--muted); margin-bottom: .8rem; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--accent-mid); text-decoration: underline; }

.error404 { text-align: center; min-height: 74vh; display: grid; place-content: center; gap: 1.1rem; padding: 2rem 1rem; }
.error404 .code { font-family: var(--font-head); font-size: clamp(5rem, 18vw, 10rem); color: var(--accent); line-height: 1; }
.error404 h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.error404 p { color: var(--muted); max-width: 46ch; margin: 0 auto; }
.error404 .btn { justify-self: center; margin-top: .6rem; }

/* =========================================================
   Responsive — new components
   ========================================================= */
@media (max-width: 640px) {
  .bw__step-label { display: none; }
  .bw__steps { justify-content: space-between; gap: .3rem; }
  .bw__grid2 { grid-template-columns: 1fr; }
  .bw__actions { flex-direction: column; align-items: stretch; }
  .bw__actions .btn { width: 100%; }
  .bw__hint { text-align: center; order: 2; }
  .cookie__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie__btns { justify-content: center; }
  .cookie__btns .btn { flex: 1; }
  /* Hero: flex-column + order so CTAs appear right after the h1, above the paragraph.
     This keeps the CTA buttons above the fixed cookie banner on first-visit mobile. */
  .hero__inner { display: flex; flex-direction: column; padding-bottom: 12rem; }
  .hero__cta { order: 2; }
  .hero__sub { order: 3; }
  .hero__badges { order: 4; }
}

/* =========================================================
   Premium pass — texture, motion, editorial type
   ========================================================= */

/* Refined type scale & breathing room */
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); letter-spacing: -.02em; }
.hero__title { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
.section-head { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* Gold selection + refined scrollbar */
::selection { background: var(--gold); color: #090909; }
html { scrollbar-width: thin; scrollbar-color: #2a2a2a #090909; }
body::-webkit-scrollbar, ::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #090909; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 8px; border: 2px solid #090909; }
::-webkit-scrollbar-thumb:hover { background: #3c3c3c; }

/* Film grain — very subtle */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 160px 160px;
}

/* Hero: slow cinematic zoom */
@keyframes vg-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09) translate(1.2%, -0.8%); }
}
.hero__media img { animation: vg-kenburns 28s ease-in-out infinite alternate; will-change: transform; }

/* Hero title em — gold gradient clip */
.hero__title em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: #888; font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; opacity: .6;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--accent), transparent); animation: vg-drop 2.4s ease-in-out infinite; }
@keyframes vg-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-height: 700px), (max-width: 640px) { .hero__scroll { display: none; } }

/* Section heading: minimal gold line ornament */
.section-head::after {
  content: ""; display: block; margin: 1.5rem auto 0;
  width: 28px; height: 1px; background: var(--gold); opacity: .8;
}

/* Buttons: sheen sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.btn:hover::before { left: 125%; }

/* Cards & gallery: white ring on hover */
.svc-card:hover { box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255,255,255,.1); }
.gallery__item::after { background: linear-gradient(to top, rgba(9,9,9,.55), transparent 60%); }

/* Marquee: pause on hover, italic alternation */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:nth-child(4n+1) { font-style: italic; }

/* Home: seven treatment categories (12-col grid → 4 + 3 layout) */
.cats-home { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.cats-home .svc-card { grid-column: span 3; aspect-ratio: 3/3.6; }
.cats-home .svc-card:nth-child(n+5) { grid-column: span 4; }
@media (max-width: 980px) {
  .cats-home .svc-card, .cats-home .svc-card:nth-child(n+5) { grid-column: span 6; }
  .cats-home .svc-card:last-child { grid-column: 4 / span 6; }
}
@media (max-width: 600px) {
  .cats-home .svc-card, .cats-home .svc-card:nth-child(n+5), .cats-home .svc-card:last-child { grid-column: span 12; aspect-ratio: 16/9; }
}

/* Signature rituals (legacy — kept for .ritual styles reuse) */
.rituals { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.8rem); }
.ritual {
  position: relative; border-top: 1px solid var(--line); padding-top: 1.8rem;
  display: flex; flex-direction: column; gap: .65rem;
  transition: border-color .4s ease;
}
.ritual:hover { border-top-color: var(--accent-mid); }
.ritual__num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 2.6rem; line-height: 1; color: rgba(255,255,255,.14);
}
.ritual__kicker { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.ritual h3 { color: var(--text); font-size: 1.45rem; }
.ritual p { color: var(--muted); font-size: .97rem; flex: 1; }
.ritual__price { font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: 1.3rem; }
.ritual__link { color: var(--accent-mid); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .45rem; }
.ritual__link::after { content: "→"; transition: transform .3s ease; }
.ritual__link:hover { color: var(--accent); }
.ritual__link:hover::after { transform: translateX(5px); }
@media (max-width: 900px) { .rituals { grid-template-columns: 1fr; gap: 2.2rem; } }

/* Tactile click feedback */
.menu__tab:active, .bw__cat:active, .bw__slot:active:not(:disabled) { transform: scale(0.96); }

/* Service category booking icon */
.cat-icon { width: 18px; height: 18px; object-fit: cover; border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: 0.35rem; margin-top: -2px; filter: grayscale(1); }

/* ---------- Testimonials (real Google reviews) ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tst {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .7rem;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, border-color .3s ease;
}
.tst:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tst::before { content: "\201C"; font-family: var(--font-head); font-size: 2.6rem; line-height: .6; color: var(--gold); opacity: .85; }
.tst p { color: var(--muted); font-size: .94rem; flex: 1; margin: 0; }
.tst footer { display: flex; flex-direction: column; gap: .1rem; margin-top: .4rem; }
.tst__stars { color: var(--gold); font-size: .8rem; letter-spacing: .14em; }
.tst cite { font-style: normal; color: var(--text); font-weight: 500; font-size: .92rem; }
.tst__src { color: var(--muted-2); font-size: .76rem; }
@media (max-width: 980px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials__grid { grid-template-columns: 1fr; } }
