/* ============================================================
   MIO POP HAIR & BEAUTY LOUNGE — Stylesheet
   Bold theme drawn from the logo: deep royal purple + lavender + gold
   ============================================================ */

:root {
  --purple-900: #22103f;
  --purple-800: #301a5c;
  --purple-700: #42237e;   /* primary — matches logo */
  --purple-600: #54309b;
  --purple-500: #6b46bd;
  --purple-400: #8f6fd4;

  --lavender: #c7b6ec;
  --lavender-200: #ddd2f4;
  --lavender-100: #ece7f8;
  --lavender-50: #f6f3fc;

  --gold: #c8a24a;
  --gold-soft: #e6d29a;

  --ink: #20143f;
  --muted: #6e6390;
  --line: rgba(66, 35, 126, 0.14);

  --surface: #ffffff;

  --radius-xl: 30px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 28px 60px -28px rgba(34, 16, 63, 0.55);
  --shadow-sm: 0 14px 34px -18px rgba(34, 16, 63, 0.42);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", "Segoe UI", system-ui, sans-serif;
  --maxw: 1220px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1100px 640px at 82% -8%, var(--lavender-200), transparent 55%),
    linear-gradient(180deg, var(--lavender-100) 0%, var(--lavender-50) 45%, #fff 100%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; line-height: 1.06; letter-spacing: -0.01em; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.72rem;
  font-weight: 600; color: var(--purple-600); margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-soft); }

.section-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); color: var(--purple-800); }
.section-title.light { color: #fff; }
.section-note { color: var(--muted); margin-top: 12px; font-size: 1rem; max-width: 560px; }
.section-head.center .section-note { margin-inline: auto; }

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; font-family: var(--sans);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: 1.6px solid transparent;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary, .btn-purple { background: var(--purple-700); color: #fff; box-shadow: 0 16px 34px -16px rgba(66,35,126,.9); }
.btn-primary:hover, .btn-purple:hover { background: var(--purple-600); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--purple-900); box-shadow: 0 16px 32px -16px rgba(200,162,74,.9); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: transparent; color: var(--purple-700); border-color: var(--purple-700); }
.btn-outline:hover { background: var(--purple-700); color: #fff; }
.btn-whatsapp { background: #25d366; color: #06351b; }
.btn-block { width: 100%; }

/* ---------- Brand lockup ---------- */
.brand { display: flex; align-items: center; gap: 13px; }
.brand-badge {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--purple-700); flex: 0 0 auto;
  font-family: var(--serif); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em;
  border: 1px solid rgba(255,255,255,.5); box-shadow: 0 6px 16px -8px rgba(0,0,0,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.2em; color: #fff; }
.brand-sub { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-top: 5px; }

/* ---------- Header / floating pill nav ---------- */
.site-header { position: sticky; top: 18px; z-index: 100; padding: 0 18px; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: var(--maxw); margin: 0 auto; height: 70px; padding: 0 14px 0 20px;
  background: var(--purple-700);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; box-shadow: var(--shadow);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,.82);
  padding: 9px 15px; border-radius: 999px; transition: color .2s, background .2s;
}
.main-nav a:not(.nav-cta):hover { color: #fff; background: rgba(255,255,255,.1); }
.main-nav a.current { color: var(--purple-800); background: #fff; font-weight: 600; }
.nav-cta { margin-left: 6px; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--purple-900) !important; padding: 11px 22px !important; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
.nav-cta:hover { color: var(--purple-900) !important; background: var(--gold-soft) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ---------- Home Hero (full-bleed real shop) ---------- */
.hero {
  position: relative; margin: 24px 18px 0; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 620px; display: flex; align-items: center; box-shadow: var(--shadow);
  background: var(--purple-900); color: #fff;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(34,16,63,.92) 0%, rgba(42,21,78,.72) 38%, rgba(48,26,92,.38) 68%, rgba(34,16,63,.12) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 74px 8px; max-width: 720px; }
.hero .logo-lockup { margin-bottom: 26px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.74rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 18px; }
.hero-eyebrow::before { content: "📍"; }
.hero-title { font-size: clamp(2.8rem, 6.4vw, 5.2rem); line-height: 0.98; letter-spacing: -0.02em; color: #fff; }
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-tagline { max-width: 500px; margin: 22px 0 0; color: rgba(255,255,255,.86); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 46px; }
.stat-num { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-num .star { color: var(--gold-soft); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lavender); margin-top: 7px; display: block; }

/* Big logo lockup used in hero */
.logo-lockup { display: flex; align-items: center; gap: 16px; }
.logo-lockup .ll-mono {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(230,210,154,.6);
  font-family: var(--serif); font-weight: 800; font-size: 1.7rem; color: #fff;
}
.logo-lockup .ll-name { font-family: var(--serif); font-weight: 800; font-size: 1.7rem; letter-spacing: 0.22em; color: #fff; line-height: 1; }
.logo-lockup .ll-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; }

/* ---------- Inner page hero (banner) ---------- */
.page-hero {
  margin: 26px 18px 0; border-radius: var(--radius-xl); overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34,16,63,.78), rgba(48,26,92,.9)),
    var(--purple-800) center / cover no-repeat;
  color: #fff; text-align: center; padding: 84px 24px 90px; box-shadow: var(--shadow);
}
.page-hero.has-img { background:
    linear-gradient(180deg, rgba(34,16,63,.8), rgba(34,16,63,.86)),
    var(--hero-img) center 35% / cover no-repeat; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; }
.page-hero p { max-width: 620px; margin: 18px auto 0; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.crumbs { margin-top: 22px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.crumbs a:hover { color: var(--gold-soft); }

/* ---------- Address strip ---------- */
.addr-strip { margin: 0 18px; }
.addr-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 40px;
  background: linear-gradient(120deg, var(--purple-800), var(--purple-700));
  color: #fff; border-radius: var(--radius); padding: 22px 34px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.07);
}
.addr-item { display: flex; align-items: center; gap: 14px; }
.addr-ic { width: 34px; height: 34px; flex: 0 0 auto; padding: 7px; border-radius: 50%;
  color: var(--gold-soft); background: rgba(230,210,154,.12); border: 1px solid rgba(230,210,154,.28); }
.addr-txt { display: flex; flex-direction: column; line-height: 1.32; }
.addr-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 3px; }
.addr-val { font-size: 0.9rem; color: rgba(255,255,255,.92); font-weight: 400; }
a.addr-val { color: #fff; }
a.addr-val:hover { color: var(--gold-soft); }
.addr-sep { width: 1px; height: 38px; background: rgba(255,255,255,.16); }

/* ---------- Surfaces ---------- */
.surface {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); padding: 54px; margin: 0 18px;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; }
.about-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transition: transform .8s ease; }
.about-media:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; right: 22px; bottom: 22px; background: var(--purple-700);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm);
  padding: 15px 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.about-badge-num { display: block; font-family: var(--serif); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.about-badge-num span { color: var(--gold-soft); font-size: 1.2rem; }
.about-badge-lbl { display: block; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-top: 5px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-list { list-style: none; margin: 8px 0 28px; display: grid; gap: 11px; }
.about-list li { position: relative; padding-left: 28px; color: var(--ink); }
.about-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.about-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; border-top: 3px solid var(--gold); }
.feat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.feat-ico { font-size: 2rem; }
.feat-card h3 { font-size: 1.3rem; color: var(--purple-700); margin: 14px 0 8px; }
.feat-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Signature Services (image cards) ---------- */
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sig-card {
  position: relative; height: 330px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); border: 5px solid #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sig-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s ease; }
.sig-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(34,16,63,0) 30%, rgba(34,16,63,.6) 62%, rgba(34,16,63,.95) 100%); transition: background .35s; }
.sig-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.sig-card:hover .sig-img { transform: scale(1.09); }
.sig-card:hover .sig-overlay { background: linear-gradient(180deg, rgba(66,35,126,.15) 15%, rgba(48,26,92,.7) 55%, rgba(34,16,63,.96) 100%); }
.sig-label { position: relative; z-index: 2; padding: 24px; width: 100%; }
.sig-name { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: #fff; }
.sig-desc { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; }
.sig-card:nth-child(1) { grid-column: span 2; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 5px solid #fff; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(34,16,63,.45)); opacity: 0; transition: opacity .4s; }
.gal-item:hover img { transform: scale(1.09); }
.gal-item:hover::after { opacity: 1; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* ---------- Services / Menu ---------- */
.menu-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  border: 1.6px solid var(--line); background: #fff; color: var(--purple-700);
  padding: 10px 22px; border-radius: 999px; font-family: var(--sans); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: .2s;
}
.filter-btn:hover { border-color: var(--purple-500); }
.filter-btn.active { background: var(--purple-700); color: #fff; border-color: var(--purple-700); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.menu-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.menu-card h3 { font-size: 1.5rem; color: var(--purple-800); display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.menu-card h3 .cat-tag { font-family: var(--sans); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-600); border: 1px solid var(--gold); border-radius: 999px; padding: 4px 11px; }
.menu-card .grp { margin-top: 18px; }
.menu-card .grp-title { font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-name { color: var(--ink); font-size: 0.95rem; }
.price-name small { color: var(--muted); font-size: 0.78rem; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(66,35,126,.28); transform: translateY(-4px); }
.price-val { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--purple-700); white-space: nowrap; }

.menu-extra { margin-top: 34px; }
.extra-card { background: linear-gradient(135deg, var(--purple-800), var(--purple-600)); color: #fff; border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); }
.extra-card h3 { color: #fff; font-size: 1.7rem; }
.extra-card h3 span { color: var(--gold-soft); }
.extra-card p { color: rgba(255,255,255,.85); margin-top: 12px; }
.extra-highlight { color: var(--gold-soft) !important; font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Brands ---------- */
.brands-band { background: var(--purple-800); color: #fff; }
.brands-band .section-title { color: #fff; }
.brand-block { margin-top: 34px; }
.brand-cat { text-align: center; font-family: var(--sans); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.76rem; color: var(--gold-soft); margin-bottom: 20px; }
.brand-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-track { display: flex; gap: 18px; width: max-content; animation: marquee 40s linear infinite; }
.brand-marquee.reverse .brand-track { animation-direction: reverse; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-chip {
  flex: 0 0 auto; min-width: 220px; height: 100px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; padding: 0 28px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; transition: .3s;
}
.brand-chip:hover { background: #fff; }
.brand-chip .b-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; letter-spacing: 0.02em; color: #fff; transition: .3s; white-space: nowrap; }
.brand-chip .b-tag { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); transition: .3s; text-align: center; }
.brand-chip:hover .b-name { color: var(--purple-800); }
.brand-chip:hover .b-tag { color: var(--purple-600); }

/* ---------- Reviews ---------- */
.google-rating { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 48px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 40px; box-shadow: var(--shadow-sm); }
.g-badge { display: flex; align-items: center; gap: 18px; }
.g-score { display: flex; flex-direction: column; }
.g-num { font-family: var(--serif); font-size: 3rem; font-weight: 800; color: var(--purple-800); line-height: 1; }
.g-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.g-stars .half { opacity: .45; }
.g-count { font-size: 0.82rem; color: var(--muted); margin-top: 5px; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review-text { color: var(--ink); font-size: 1rem; font-style: italic; font-family: var(--serif); }
.review-author { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-700); color: #fff; font-family: var(--serif); font-weight: 700; }
.review-name { font-weight: 600; color: var(--purple-800); font-size: 0.95rem; }
.review-meta { font-size: 0.76rem; color: var(--muted); }

/* ---------- Book ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.book-intro p { color: var(--muted); margin-bottom: 20px; }
.book-contact { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; }
.book-contact li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.book-contact a:hover { color: var(--purple-600); }
.book-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 7px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.6px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--lavender-50); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple-500); background: #fff; box-shadow: 0 0 0 3px rgba(107,70,189,.16); }
.form-msg { margin-top: 14px; text-align: center; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: #1f8a4c; }
.form-msg.err { color: #c0392b; }

/* ---------- Membership + Terms ---------- */
.membership-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.member-card { background: linear-gradient(135deg, var(--purple-700), var(--purple-500)); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-xl); padding: 40px; color: #fff; box-shadow: var(--shadow); }
.member-card .eyebrow { color: var(--gold-soft); }
.member-card .section-title { color: #fff; }
.member-price { font-family: var(--serif); font-size: 3.2rem; font-weight: 800; color: var(--gold-soft); margin: 10px 0 4px; }
.member-price span { font-family: var(--sans); font-size: 1rem; color: rgba(255,255,255,.75); }
.member-desc { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.member-perks { list-style: none; display: grid; gap: 13px; margin-bottom: 28px; }
.member-perks li { position: relative; padding-left: 30px; color: #fff; }
.member-perks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-soft); font-weight: 800; }
.terms-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 40px; color: var(--muted); box-shadow: var(--shadow-sm); }
.terms-card h3 { color: var(--purple-800); font-size: 1.6rem; margin-bottom: 18px; }
.terms-list { list-style: none; display: grid; gap: 10px; }
.terms-list li { position: relative; padding-left: 22px; font-size: 0.92rem; }
.terms-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; line-height: 1; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: stretch; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item span { font-size: 1.25rem; }
.contact-item p { color: var(--muted); }
.contact-item a:hover { color: var(--purple-600); }
.social-row { margin-top: 8px; }
.social { display: inline-block; color: var(--purple-700); font-weight: 600; border-bottom: 1px solid var(--gold); }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; min-height: 420px; box-shadow: var(--shadow); border: 6px solid #fff; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { margin: 0 18px; border-radius: var(--radius-xl); background:
  linear-gradient(135deg, var(--purple-800), var(--purple-600)); color: #fff;
  text-align: center; padding: 72px 30px; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 16px auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-900); color: rgba(255,255,255,.8); margin-top: 96px; padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand .brand-name, .footer-brand .brand-sub { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 16px; font-family: var(--sans); font-weight: 600; text-transform: uppercase; }
.footer-col p, .footer-col a { color: rgba(255,255,255,.7); font-size: 0.9rem; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-about { color: rgba(255,255,255,.7); font-size: 0.92rem; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,.5); }

/* ---------- Floating book button ---------- */
.floating-book { position: fixed; right: 20px; bottom: 20px; z-index: 90; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--purple-900); padding: 15px 24px; border-radius: 999px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 16px 32px -12px rgba(200,162,74,.9); transition: transform .25s; }
.floating-book:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
/* Fail-safe: content is visible by default; only hidden when JS is active (.js),
   then revealed on scroll. If JS/observer fails, nothing stays invisible. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .sig-card:nth-child(1) { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .book-grid, .membership-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media img { min-height: 340px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .surface { padding: 38px 26px; }
  .addr-strip .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .addr-sep { display: none; }
}
@media (max-width: 820px) {
  .main-nav {
    position: fixed; inset: 100px 18px auto 18px; background: var(--purple-700);
    flex-direction: column; gap: 4px; padding: 16px; border-radius: var(--radius);
    box-shadow: var(--shadow); transform: translateY(-160%); transition: transform .35s ease;
    border: 1px solid rgba(255,255,255,.12);
  }
  .main-nav.open { transform: none; }
  .main-nav a { width: 100%; padding: 13px 16px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .section { padding: 62px 0; }
  .hero { min-height: 560px; margin: 16px 8px 0; }
  .about-cards { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .sig-card:nth-child(1) { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gal-wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .surface { padding: 30px 20px; margin: 0 8px; }
  .page-hero { margin: 20px 8px 0; padding: 60px 20px 66px; }
  .logo-lockup .ll-name { font-size: 1.35rem; }
}


/* ---------- Real logo treatments ---------- */
.brand-logo-wrap { background: #fff; border-radius: 12px; padding: 5px 13px; display: inline-flex; align-items: center; box-shadow: 0 6px 16px -8px rgba(0,0,0,.45); }
.brand-logo { height: 42px; width: auto; display: block; }
.hero-logo-card { display: flex; width: fit-content; background: #fff; border-radius: 16px; padding: 14px 24px; box-shadow: var(--shadow-sm); margin-bottom: 26px; }
.hero-logo-card img { height: 78px; width: auto; display: block; }
.footer-logo-wrap { background: #fff; border-radius: 12px; padding: 9px 15px; display: inline-flex; margin-bottom: 16px; }
.footer-logo-wrap img { height: 54px; width: auto; display: block; }
@media (max-width: 560px) { .hero-logo-card img { height: 58px; } .brand-logo { height: 34px; } }


/* ============================================================
   ADD-ONS: promo bar, WhatsApp float, offers, Instagram,
   services male/female toggle + category cards, partner form
   ============================================================ */

/* ---------- Sticky promo bar ---------- */
.promo-bar {
  position: sticky; top: 0; z-index: 101;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: var(--purple-900); text-align: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 44px 9px 16px; min-height: 40px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.promo-bar a { text-decoration: underline; font-weight: 700; }
.promo-bar strong { font-weight: 800; }
.promo-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(34,16,63,.12); border: 0; color: var(--purple-900);
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 1rem; line-height: 1;
}
.promo-close:hover { background: rgba(34,16,63,.25); }
/* header sits just under the promo bar */
.site-header { top: 50px; padding-top: 10px; }
body.no-promo .site-header { top: 14px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,.8);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: "Chat with us"; position: absolute; left: 70px; white-space: nowrap;
  background: var(--purple-800); color: #fff; padding: 8px 14px; border-radius: 8px;
  font-size: 0.8rem; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wa-float:hover::after { opacity: 1; }

/* ---------- Offers banners ---------- */
.offers { background: linear-gradient(180deg, #fff, var(--lavender-50)); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 230px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); border: 5px solid #fff;
  color: #fff;
}
.offer-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s; }
.offer-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(34,16,63,.15) 20%, rgba(34,16,63,.72) 75%, rgba(34,16,63,.92)); }
.offer-card:hover .offer-img { transform: scale(1.08); }
.offer-body { position: relative; z-index: 2; padding: 24px; width: 100%; }
.offer-tag { display: inline-block; background: var(--gold); color: var(--purple-900); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.offer-card h3 { color: #fff; font-size: 1.5rem; }
.offer-card p { color: rgba(255,255,255,.85); font-size: 0.9rem; margin-top: 4px; }
.offer-card .btn { margin-top: 14px; }

/* ---------- Instagram feed ---------- */
.insta { background: #fff; }
.insta-handle { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-700); font-weight: 600; margin-top: 8px; }
.insta-embed { margin-top: 10px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 10px; }
.insta-item { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.insta-item::after { content: "\f16d"; }
.insta-item .ig-ic { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(34,16,63,.35); opacity: 0; transition: opacity .3s; color: #fff; font-size: 1.6rem; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .ig-ic { opacity: 1; }

/* ---------- Services: Male/Female toggle ---------- */
.svc-toggle { display: inline-flex; background: #fff; border: 1.6px solid var(--line); border-radius: 999px; padding: 5px; margin: 0 auto 40px; box-shadow: var(--shadow-sm); }
.svc-toggle button {
  border: 0; background: transparent; color: var(--purple-700); cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 11px 30px; border-radius: 999px; transition: .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.svc-toggle button.active { background: var(--purple-700); color: #fff; box-shadow: 0 10px 22px -12px rgba(66,35,126,.8); }
.toggle-wrap { text-align: center; }

/* ---------- Services: category image cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 20px; }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; border: 0; background: transparent; font-family: var(--sans); }
.cat-thumb { width: 100%; aspect-ratio: 1/1; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); border: 4px solid #fff; position: relative; transition: transform .3s, box-shadow .3s; }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(34,16,63,.18)); }
.cat-card:hover .cat-thumb { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card:hover .cat-thumb img { transform: scale(1.08); }
.cat-card.active .cat-thumb { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft), var(--shadow); }
.cat-name { margin-top: 14px; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--purple-800); line-height: 1.2; }
.cat-count { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-top: 3px; }

/* ---------- Partner form extras ---------- */
.partner-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
.partner-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; }
.partner-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.partner-points { list-style: none; display: grid; gap: 14px; margin: 22px 0 30px; }
.partner-points li { position: relative; padding-left: 34px; color: var(--ink); }
.partner-points li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 1.1rem; }
.partner-points strong { color: var(--purple-700); }

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-bar { font-size: 0.72rem; padding-right: 40px; }
  .wa-float { width: 52px; height: 52px; left: 12px; bottom: 12px; }
  .wa-float::after { display: none; }
}


/* Ensure star glyphs render on all devices */
.stat-num .star, .g-stars, .g-stars .half, .review-stars, .about-badge-num span, .hf-num {
  font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", "Apple Symbols", var(--sans);
}


/* Designer credit */
.footer-credit { display: block; margin-top: 8px; }
.footer-bottom a { color: var(--gold-soft); font-weight: 500; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
