/* ═══════════════════════════════════════════════════════════
   GlowBeauty — style.css
   Extracted from monolith, organised into logical sections
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Root ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:  #fdfcfb;
  --blush:  #fdf0f0;
  --pink:   #f9e0e0;
  --rose:   #e8a0a0;
  --mauve:  #8b4c6b;
  --deep:   #5c2d47;
  --gold:   #c9a96e;
  --gold2:  #e8c99a;
  --text:   #3a2030;
  --muted:  #9b7e8a;
  --border: #f0dada;
  --white:  #fff;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; cursor: none; }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--mauve); border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  transition: transform .1s, width .2s, height .2s, background .2s;
}
.cursor-aura {
  position: fixed; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,160,160,.15), transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: transform .25s ease;
}
.cursor.hover { width: 20px; height: 20px; background: var(--gold); }

/* ── Scroll Progress ───────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  width: 0%; z-index: 1000; transition: width .1s;
}

/* ── Navigation ────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,251,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--deep); letter-spacing: .02em;
  display: flex; align-items: center; gap: .5rem;
}
.logo-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: .83rem;
  font-weight: 400; letter-spacing: .04em; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  background: var(--deep); color: #fff; padding: .55rem 1.4rem;
  border-radius: 999px; font-size: .8rem; font-weight: 500;
  text-decoration: none; letter-spacing: .04em;
  transition: opacity .2s, transform .15s;
}
.btn-nav:hover { opacity: .85; transform: translateY(-1px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 50%, var(--pink) 100%);
  display: flex; align-items: center; padding: 5rem 5% 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,.12), transparent 70%);
  pointer-events: none; animation: float1 14s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,76,107,.08), transparent 70%);
  pointer-events: none; animation: float1 10s ease-in-out infinite reverse;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  width: 100%; max-width: 1100px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .4rem 1.1rem; font-size: .72rem; color: var(--muted);
  letter-spacing: .08em; margin-bottom: 1.8rem;
}
.badge-gem { color: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem,5.5vw,4.5rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -.01em; color: var(--deep); margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--mauve); }
.hero-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.8;
  max-width: 420px; margin-bottom: 2.2rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; margin-bottom: 2.5rem; flex-wrap: wrap; }

/* ── Shared Buttons ────────────────────────────────────────── */
.btn-primary {
  background: var(--deep); color: #fff; padding: .85rem 2rem;
  border-radius: 999px; font-size: .85rem; font-weight: 500;
  text-decoration: none; letter-spacing: .04em;
  transition: opacity .2s, transform .15s;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
  transition: .6s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); }
.btn-primary:hover::after { left: 100%; }
.btn-primary:active { transform: scale(.97); }
.btn-outline {
  border: 1.5px solid var(--rose); color: var(--mauve); padding: .82rem 2rem;
  border-radius: 999px; font-size: .85rem; font-weight: 500;
  text-decoration: none; letter-spacing: .04em; transition: all .2s;
}
.btn-outline:hover { background: var(--pink); transform: translateY(-2px); }

/* Trust pills */
.trust-pills { display: flex; gap: .75rem; flex-wrap: wrap; }
.pill {
  display: flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .35rem .9rem; font-size: .72rem; color: var(--muted);
}
.pill-icon { font-size: .85rem; }

/* ── Hero Visual ───────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.spa-card-main {
  background: #fff; border-radius: 24px; padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(139,76,107,.08), 0 0 60px rgba(232,160,160,.1);
  width: 100%; max-width: 340px; position: relative;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.spa-card-main::before {
  content: 'Est. 2018'; position: absolute; top: -14px; right: 20px;
  background: var(--gold); color: #fff; font-size: .65rem; font-weight: 600;
  padding: .3rem .8rem; border-radius: 999px; letter-spacing: .08em;
}
.spa-thumb {
  height: 160px;
  background: linear-gradient(135deg,var(--pink),var(--blush));
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 4.5rem; margin-bottom: 1.2rem;
  position: relative; overflow: hidden;
}
.spa-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(201,169,110,.15),transparent);
}
.spa-card-main h3 { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:600; color:var(--deep); margin-bottom:.3rem; }
.spa-card-main p  { font-size:.78rem; color:var(--muted); margin-bottom:1rem; }
.spa-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.2rem; }
.spa-duration { font-size:.72rem; color:var(--muted); background:var(--blush); padding:.3rem .7rem; border-radius:999px; }
.spa-price { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:600; color:var(--gold); }
.book-now-btn {
  width:100%; background:linear-gradient(135deg,var(--mauve),var(--deep));
  color:#fff; border:none; border-radius:999px; padding:.75rem;
  font-size:.82rem; font-weight:500; cursor:none; letter-spacing:.04em;
  transition:opacity .2s, transform .15s; position:relative; overflow:hidden;
}
.book-now-btn::after {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.3),transparent);
  transition:.6s;
}
.book-now-btn:hover { opacity:.88; transform:scale(1.01); }
.book-now-btn:hover::after { left:100%; }
.book-now-btn:active { transform:scale(.97); }

.float-card {
  background:rgba(255,255,255,.85); backdrop-filter:blur(8px);
  border:1px solid var(--border); border-radius:16px;
  padding:1rem 1.2rem; display:flex; align-items:center; gap:.75rem;
  box-shadow:0 4px 16px rgba(139,76,107,.06);
  width:85%; max-width:290px;
}
.float-avatar {
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg,var(--pink),var(--rose));
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; flex-shrink:0;
}
.float-card p      { font-size:.74rem; color:var(--muted); line-height:1.5; }
.float-card strong { color:var(--deep); font-size:.8rem; display:block; }
.live-dot {
  width:7px; height:7px; background:#4caf50; border-radius:50%;
  display:inline-block; margin-right:4px; animation:pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal-el { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal-el.revealed { opacity:1; transform:translateY(0); }

/* ── Sections ──────────────────────────────────────────────── */
section { padding:5rem 5%; max-width:1200px; margin:0 auto; }
.section-label { font-size:.68rem; letter-spacing:.18em; color:var(--gold); text-transform:uppercase; margin-bottom:.6rem; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:600; color:var(--deep); letter-spacing:-.01em; margin-bottom:.75rem; }
.section-sub { font-size:.88rem; color:var(--muted); line-height:1.8; max-width:500px; margin-bottom:3rem; font-weight:300; }
.full-divider { height:1px; background:var(--border); margin:0 5%; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.svc-card {
  background:#fff; border:1px solid var(--border); border-radius:20px;
  padding:1.8rem; transition:all .25s; cursor:none; position:relative; overflow:hidden;
}
.svc-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,var(--blush),transparent);
  opacity:0; transition:opacity .25s;
}
.svc-card:hover { border-color:var(--rose); transform:translateY(-4px); box-shadow:0 12px 32px rgba(139,76,107,.12); }
.svc-card:hover::before { opacity:1; }
.svc-card:active { transform:scale(.98); }
.svc-icon { font-size:2rem; margin-bottom:1rem; display:block; position:relative; transition:transform .35s ease; }
.svc-card:hover .svc-icon { transform:scale(1.18) rotate(-4deg); }
.svc-card h3 { font-family:'Playfair Display',serif; font-size:1rem; font-weight:600; color:var(--deep); margin-bottom:.4rem; position:relative; }
.svc-card p  { font-size:.78rem; color:var(--muted); line-height:1.65; margin-bottom:1rem; position:relative; }
.svc-footer  { display:flex; justify-content:space-between; align-items:center; position:relative; }
.svc-duration { font-size:.7rem; color:var(--muted); background:var(--blush); padding:.25rem .65rem; border-radius:999px; }
.svc-price { font-family:'Playfair Display',serif; font-size:1rem; font-weight:600; color:var(--gold); }

/* ── Why Us ────────────────────────────────────────────────── */
.whyus { background:linear-gradient(135deg,var(--deep),var(--mauve)); padding:4rem 5%; margin:0; }
.whyus-inner { max-width:1100px; margin:0 auto; }
.whyus-inner .section-title { color:#fff; }
.whyus-inner .section-label { color:var(--gold2); }
.whyus-inner .section-sub   { color:rgba(255,255,255,.6); }
.pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.pillar {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  border-radius:16px; padding:1.5rem; transition:background .2s, transform .2s;
}
.pillar:hover { background:rgba(255,255,255,.14); transform:translateY(-3px); }
.pillar-icon { font-size:1.8rem; margin-bottom:1rem; }
.pillar h3   { font-family:'Playfair Display',serif; font-size:.95rem; font-weight:600; color:#fff; margin-bottom:.4rem; }
.pillar p    { font-size:.76rem; color:rgba(255,255,255,.55); line-height:1.65; }

/* ── Signature Treatment ───────────────────────────────────── */
.signature {
  background:#fff; border:1px solid var(--border); border-radius:24px;
  overflow:hidden; display:grid; grid-template-columns:1fr 1fr;
}
.sig-visual {
  background:linear-gradient(160deg,var(--pink),var(--blush),var(--cream));
  display:flex; align-items:center; justify-content:center;
  font-size:8rem; padding:3rem; position:relative;
}
.sig-visual::after {
  content:'Signature Treatment'; position:absolute; bottom:1.5rem; left:50%;
  transform:translateX(-50%); background:var(--gold); color:#fff;
  font-size:.65rem; font-weight:600; padding:.3rem 1rem;
  border-radius:999px; letter-spacing:.08em; white-space:nowrap;
}
.sig-body { padding:3rem; }
.sig-body h2 { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:600; color:var(--deep); margin-bottom:.75rem; line-height:1.2; }
.sig-body p  { font-size:.85rem; color:var(--muted); line-height:1.8; margin-bottom:1.5rem; font-weight:300; }
.sig-includes { list-style:none; display:flex; flex-direction:column; gap:.6rem; margin-bottom:2rem; }
.sig-includes li { font-size:.8rem; color:var(--muted); display:flex; align-items:center; gap:.6rem; }
.sig-includes li::before { content:'✦'; color:var(--gold); font-size:.6rem; flex-shrink:0; }
.sig-footer { display:flex; align-items:center; gap:1.5rem; }
.sig-price  { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; color:var(--deep); }
.sig-price span { font-size:.8rem; color:var(--muted); font-family:'Inter',sans-serif; font-weight:300; }

/* ── Booking Form ──────────────────────────────────────────── */
.booking-wrap { background:linear-gradient(135deg,var(--blush),var(--cream)); padding:4rem 5%; margin:0; }
.booking-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; align-items:start; }
.booking-info h2 { font-family:'Playfair Display',serif; font-size:2rem; font-weight:600; color:var(--deep); margin-bottom:.75rem; line-height:1.2; }
.booking-info p  { font-size:.85rem; color:var(--muted); line-height:1.8; margin-bottom:2rem; font-weight:300; }
.booking-detail  { display:flex; align-items:center; gap:.75rem; margin-bottom:1rem; font-size:.82rem; color:var(--muted); }
.b-icon { width:32px; height:32px; border-radius:8px; background:#fff; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.9rem; }
.form-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:2.5rem; box-shadow:0 4px 24px rgba(139,76,107,.06); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.form-group label { font-size:.72rem; color:var(--muted); letter-spacing:.06em; text-transform:uppercase; }
.form-group input,
.form-group select {
  background:var(--cream); border:1px solid var(--border); border-radius:10px;
  padding:.75rem 1rem; font-size:.85rem; color:var(--text);
  font-family:'Inter',sans-serif; outline:none;
  transition:border-color .2s, box-shadow .2s; width:100%; cursor:none;
}
.form-group input:focus, .form-group select:focus {
  border-color:var(--rose); box-shadow:0 0 0 3px rgba(232,160,160,.15);
}
.form-group select option { background:#fff; }
.form-submit {
  width:100%;
  background:linear-gradient(135deg,var(--mauve),var(--deep));
  color:#fff; border:none; border-radius:999px; padding:1rem;
  font-size:.88rem; font-weight:500; cursor:none;
  font-family:'Inter',sans-serif; letter-spacing:.06em;
  transition:opacity .2s, transform .15s; position:relative; overflow:hidden;
}
.form-submit::after {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
  transition:.6s;
}
.form-submit:hover { opacity:.9; }
.form-submit:hover::after { left:100%; }
.form-submit:active { transform:scale(.98); }
.form-submit:disabled { opacity:.6; }
.form-note { text-align:center; font-size:.72rem; color:var(--muted); margin-top:.75rem; }
.form-success {
  display:none; text-align:center; padding:1rem;
  background:linear-gradient(135deg,var(--blush),#fff);
  border:1px solid var(--rose); border-radius:10px;
  color:var(--mauve); font-size:.85rem; margin-top:1rem;
  animation:fadeIn .5s ease;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* ── Testimonials ──────────────────────────────────────────── */
.testi-wrapper { overflow:hidden; position:relative; }
.testi-wrapper::before, .testi-wrapper::after {
  content:''; position:absolute; top:0; width:80px; height:100%;
  z-index:2; pointer-events:none;
}
.testi-wrapper::before { left:0;  background:linear-gradient(to right,var(--cream),transparent); }
.testi-wrapper::after  { right:0; background:linear-gradient(to left,var(--cream),transparent); }
.testi-grid {
  display:flex; gap:16px; overflow-x:auto; padding-bottom:1rem;
  scrollbar-width:none; scroll-snap-type:x mandatory;
}
.testi-grid::-webkit-scrollbar { display:none; }
.testi-card {
  background:#fff; border:1px solid var(--border); border-radius:20px;
  padding:1.8rem; transition:box-shadow .2s, transform .2s;
  flex:0 0 calc(33.33% - 11px); min-width:280px; scroll-snap-align:start;
}
.testi-card:hover { box-shadow:0 8px 28px rgba(139,76,107,.1); transform:translateY(-2px); }
.testi-stars { display:flex; gap:3px; margin-bottom:1rem; }
.tstar { color:var(--gold); font-size:.85rem; }
.testi-card blockquote { font-family:'Playfair Display',serif; font-size:.92rem; font-style:italic; color:var(--text); line-height:1.75; margin-bottom:1.2rem; }
.testi-author { display:flex; align-items:center; gap:.75rem; }
.t-avatar { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--pink),var(--rose)); display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; }
.t-name { font-size:.82rem; font-weight:500; color:var(--deep); }
.t-role { font-size:.7rem; color:var(--muted); }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-strip { display:flex; gap:12px; overflow-x:auto; padding-bottom:1rem; scrollbar-width:none; }
.gallery-strip::-webkit-scrollbar { display:none; }
.gallery-nav { display:flex; gap:.5rem; margin-bottom:1rem; }
.gallery-arrow {
  background:#fff; border:1px solid var(--border); border-radius:8px;
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  cursor:none; font-size:.9rem; transition:background .2s, transform .15s;
}
.gallery-arrow:hover { background:var(--blush); transform:scale(1.05); }
.gal-item {
  flex:0 0 180px; height:180px; border-radius:16px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.5rem; font-size:3rem; border:1px solid var(--border);
  transition:transform .2s, box-shadow .2s; cursor:none;
}
.gal-item:hover { transform:scale(1.05); box-shadow:0 8px 24px rgba(139,76,107,.1); }
.gal-item.g1 { background:linear-gradient(135deg,#fde8f0,#fdf0f8); }
.gal-item.g2 { background:linear-gradient(135deg,#fdf0e0,#fdf8f0); }
.gal-item.g3 { background:linear-gradient(135deg,#f0e8fd,#f8f0fd); }
.gal-item.g4 { background:linear-gradient(135deg,#e8f0fd,#f0f8fd); }
.gal-item.g5 { background:linear-gradient(135deg,#fde8e8,#fdf0f0); }
.gal-item.g6 { background:linear-gradient(135deg,#e8fde8,#f0fdf0); }
.gal-label { font-size:.72rem; color:var(--muted); font-weight:500; }

/* ── Footer ────────────────────────────────────────────────── */
footer { background:var(--deep); color:#fff; padding:3rem 5% 2rem; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2rem; }
.footer-logo-wrap { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:600; color:#fff; margin-bottom:.75rem; display:flex; align-items:center; gap:.4rem; }
.footer-logo-dot  { width:7px; height:7px; background:var(--gold); border-radius:50%; }
.footer-col p, .footer-col a { font-size:.78rem; color:rgba(255,255,255,.5); line-height:2.1; text-decoration:none; display:block; transition:color .2s; }
.footer-col a:hover { color:var(--gold2); }
.footer-col h4 { font-size:.78rem; font-weight:600; color:#fff; letter-spacing:.08em; margin-bottom:.75rem; text-transform:uppercase; }
.social-row { display:flex; gap:.6rem; margin-top:1rem; }
.social-btn {
  width:32px; height:32px; border-radius:8px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; text-decoration:none; transition:background .2s, transform .15s;
}
.social-btn:hover { background:rgba(255,255,255,.18); transform:translateY(-2px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:1.5rem; display:flex; justify-content:space-between; font-size:.72rem; color:rgba(255,255,255,.35); }

/* ── Service Modal ─────────────────────────────────────────── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(58,32,48,.6);
  backdrop-filter:blur(8px); z-index:500;
  opacity:0; pointer-events:none; transition:opacity .3s;
  display:flex; align-items:center; justify-content:center; padding:2rem;
}
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal-box {
  background:#fff; border-radius:24px; max-width:520px; width:100%;
  padding:2.5rem; position:relative;
  transform:translateY(20px) scale(.97); transition:transform .3s ease;
  box-shadow:0 24px 80px rgba(139,76,107,.2);
}
.modal-overlay.open .modal-box { transform:translateY(0) scale(1); }
.modal-close {
  position:absolute; top:1.2rem; right:1.2rem; background:var(--blush);
  border:none; border-radius:50%; width:32px; height:32px;
  font-size:1.1rem; cursor:none; display:flex; align-items:center; justify-content:center;
  transition:background .2s; color:var(--mauve);
}
.modal-close:hover { background:var(--pink); }
.modal-thumb { height:140px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:4rem; margin-bottom:1.5rem; }
.modal-box h2 { font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:600; color:var(--deep); margin-bottom:.5rem; }
.modal-box p  { font-size:.85rem; color:var(--muted); line-height:1.8; margin-bottom:1.2rem; font-weight:300; }
.modal-meta   { display:flex; gap:1rem; margin-bottom:1.5rem; }
.modal-tag    { background:var(--blush); border-radius:999px; padding:.3rem .9rem; font-size:.75rem; color:var(--mauve); }
.modal-price-row { display:flex; align-items:center; justify-content:space-between; }
.modal-price { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:700; color:var(--deep); }

/* ── Gallery Lightbox ──────────────────────────────────────── */
.lightbox {
  position:fixed; inset:0; background:rgba(58,32,48,.85);
  backdrop-filter:blur(12px); z-index:600;
  opacity:0; pointer-events:none; transition:opacity .3s;
  display:flex; align-items:center; justify-content:center;
}
.lightbox.open { opacity:1; pointer-events:all; }
.lightbox-content { text-align:center; }
.lightbox-thumb {
  width:300px; height:300px; border-radius:24px;
  display:flex; align-items:center; justify-content:center;
  font-size:7rem; margin:0 auto 1rem;
}
.lightbox-label { font-family:'Playfair Display',serif; font-size:1.5rem; color:#fff; margin-bottom:.5rem; }
.lightbox-sub   { font-size:.85rem; color:rgba(255,255,255,.5); }
.lightbox-close {
  position:absolute; top:1.5rem; right:1.5rem;
  background:rgba(255,255,255,.12); border:none; border-radius:50%;
  width:44px; height:44px; color:#fff; font-size:1.3rem; cursor:none;
  display:flex; align-items:center; justify-content:center; transition:background .2s;
}
.lightbox-close:hover { background:rgba(255,255,255,.2); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width:768px) {
  .hero-inner, .booking-inner      { grid-template-columns:1fr; }
  .services-grid, .testi-grid      { grid-template-columns:1fr 1fr; }
  .pillars                         { grid-template-columns:1fr 1fr; }
  .footer-grid                     { grid-template-columns:1fr 1fr; }
  .signature                       { grid-template-columns:1fr; }
  .nav-links                       { display:none; }
  .form-row                        { grid-template-columns:1fr; }
  .testi-card                      { flex:0 0 85vw; }
  body                             { cursor:auto; }
  .cursor, .cursor-aura            { display:none; }
}
