/* ════════════════════════════════════════════════════════════
   GLOW & GLAM BEAUTÉ CENTRE — style.css
   Premium luxury spa aesthetic with animations
════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --plum:      #1e0828;
  --plum-mid:  #3a1155;
  --rose:      #c1608e;
  --blush:     #f0c0d8;
  --cream:     #fdf6f0;
  --gold:      #d4a757;
  --gold-lt:   #f0d080;
  --white:     #ffffff;
  --text-dark: #1a0a22;
  --text-mid:  #5c3d6b;
  --text-lt:   rgba(255,255,255,0.82);

  --grad-hero:  linear-gradient(135deg, #2d0845 0%, #6b1a5a 50%, #c1608e 100%);
  --grad-card:  linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  --grad-gold:  linear-gradient(90deg, #d4a757, #f0d080, #d4a757);

  --radius:    16px;
  --radius-lg: 28px;
  --shadow:    0 8px 40px rgba(30,8,40,0.18);
  --shadow-lg: 0 20px 60px rgba(30,8,40,0.28);

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);

  --header-h: 140px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;   /* clip — doesn't create a scroll container like hidden does */
  max-width: 100vw;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: clip;
  max-width: 100vw;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  will-change: transform;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0.6;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.3; }

/* ── LOADER ──────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--plum);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s var(--ease-in), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 110px; height: 110px;
  object-fit: contain; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(212,167,87,0.4);
  padding: 10px;
  margin: 0 auto 24px;
  animation: loaderSpin 1.6s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px; overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: var(--grad-gold);
  width: 0; border-radius: 99px;
  animation: loaderFill 1.8s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 24px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-lt); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.18;
  color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--rose); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-lt); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 30px; border-radius: 99px;
  cursor: none; transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(37,211,102,0.5); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
}
.btn-outline:hover { background: var(--rose); color: var(--white); }

.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up   { transform: translateY(48px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right{ transform: translateX(60px); }
.revealed    { opacity: 1 !important; transform: none !important; }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(20, 4, 32, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; overflow: hidden; }
.brand-logo {
  height: 136px; width: auto;
  max-width: 400px;
  object-fit: contain;
  border-radius: 0;
}
.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px; border-radius: 8px;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  margin-left: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 9px 22px; border-radius: 99px;
  background: linear-gradient(135deg, var(--rose), #8a3878);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(193,96,142,0.4);
  transition: box-shadow 0.25s, transform 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(193,96,142,0.55); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10%;    /* extend 10% beyond every edge — no gaps possible */
  background: url('assets/landingbg.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,4,32,0.78) 0%,
    rgba(58,17,85,0.62) 50%,
    rgba(193,96,142,0.35) 100%
  );
}

/* Petals */
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.petal {
  position: absolute;
  width: 10px; height: 14px;
  background: radial-gradient(ellipse at 40% 40%, rgba(240,192,216,0.9), rgba(193,96,142,0.4));
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  opacity: 0;
  animation: petalFall 12s ease-in infinite;
}
.p1 { left: 8%;  animation-delay: 0s;    animation-duration: 11s; }
.p2 { left: 20%; animation-delay: 1.5s;  animation-duration: 13s; }
.p3 { left: 35%; animation-delay: 3s;    animation-duration: 10s; }
.p4 { left: 50%; animation-delay: 0.8s;  animation-duration: 14s; }
.p5 { left: 62%; animation-delay: 2.2s;  animation-duration: 12s; }
.p6 { left: 75%; animation-delay: 4s;    animation-duration: 11s; }
.p7 { left: 88%; animation-delay: 1.1s;  animation-duration: 13s; }
.p8 { left: 92%; animation-delay: 5s;    animation-duration: 10s; }

@keyframes petalFall {
  0%   { opacity: 0; top: -5%; transform: rotate(0deg) translateX(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; top: 105%; transform: rotate(360deg) translateX(40px); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 18px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.06;
  color: var(--white); margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.78); margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   TICKER STRIP
════════════════════════════════════════════════════════════ */
.strip {
  background: linear-gradient(90deg, var(--rose), var(--plum-mid), var(--rose));
  overflow: hidden; padding: 14px 0;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex; align-items: center; gap: 24px;
  animation: stripRoll 22s linear infinite;
}
.strip-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.strip-track .sep { color: var(--gold-lt); font-size: 0.6rem; }
@keyframes stripRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 40px;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  background: url('assets/snowflake.jpg') center/cover no-repeat;
  transition: transform 0.7s var(--ease-out);
}

/* Sanctuary overlay image — full frame, fades in from top, blends via soft-light */
.about-sanctuary-img-wrap {
  position: absolute; inset: 0;
  pointer-events: none;
}
.about-sanctuary-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
  opacity: 0.88;
  mask-image: linear-gradient(to bottom, transparent 0%, black 45%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 45%);
  transition: transform 0.7s var(--ease-out);
}
.about-img-wrap:hover .about-sanctuary-img { transform: scale(1.04); }
.about-desc {
  font-size: 1rem; line-height: 1.82;
  color: var(--text-mid); margin: 20px 0 28px;
}
.about-desc strong { color: var(--rose); }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 32px;
}
.about-pillars li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
}
.about-pillars li i { color: var(--rose); font-size: 1rem; }

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services {
  position: relative;
  background: var(--plum);
  padding: 120px 0;
}
.services-bg {
  position: absolute; inset: 0;
  background: url('assets/spabackground.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0;
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

/* Card image banner */
.card-img-wrap {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .card-img { transform: scale(1.06); }
.card-img-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to bottom, transparent 0%, rgba(18,4,28,0.55) 50%, rgba(18,4,28,1) 100%);
  pointer-events: none;
}

/* Card text content */
.card-body {
  padding: 24px 28px 30px;
  flex: 1;
}

.card-note {
  margin-top: 16px;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.32);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  line-height: 1.6;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(193,96,142,0.25);
  border-color: rgba(193,96,142,0.3);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }

/* Shine sweep on hover */
.card-shine {
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}
.service-card:hover .card-shine { left: 125%; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,167,87,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(212,167,87,0.25);
  transition: background 0.3s;
}
.service-card:hover .card-icon { background: rgba(212,167,87,0.25); }
.card-icon i { font-size: 1.35rem; color: var(--gold); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.service-card ul li {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.service-card ul li:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
}
.why-bg {
  position: absolute; inset: 0;
  background: url('assets/whychoose.jpg') center/cover no-repeat;
}
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,4,32,0.9) 0%,
    rgba(58,17,85,0.85) 60%,
    rgba(20,4,32,0.88) 100%
  );
}
.why .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}
.why-card:hover {
  background: rgba(193,96,142,0.12);
  border-color: rgba(193,96,142,0.3);
  transform: translateY(-6px);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,167,87,0.25), rgba(193,96,142,0.2));
  border: 1px solid rgba(212,167,87,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
.why-card:hover .why-icon { transform: rotate(10deg) scale(1.1); }
.why-icon i { font-size: 1.25rem; color: var(--gold); }
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.86rem; color: var(--text-lt); line-height: 1.68; }

/* ════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════ */
.reviews { background: var(--cream); padding: 100px 0; overflow: hidden; }
.reviews .container { padding: 0 24px; }
.reviews .section-head { margin-bottom: 48px; }

.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 80s linear infinite;
  /* Ensure animation runs from the start with no delay */
  animation-fill-mode: none;
}
/* Only pause on real pointer devices — never on touch */
@media (hover: hover) and (pointer: fine) {
  .marquee-track:hover { animation-play-state: paused; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(193,96,142,0.08);
  border: 1px solid rgba(193,96,142,0.12);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 10px 40px rgba(193,96,142,0.18);
  transform: translateY(-4px);
}
.stars {
  font-size: 1rem; color: var(--gold); margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 0.9rem; line-height: 1.75; color: var(--text-mid);
  font-style: italic; margin-bottom: 18px;
}
.reviewer {
  font-size: 0.8rem; font-weight: 600; color: var(--rose);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #2d0845 0%, #7a2060 50%, #c1608e 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 12px;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 32px; line-height: 1.15;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-eyebrow { margin-bottom: 8px; }
.contact-info .section-title { margin-bottom: 36px; }
.info-item {
  display: flex; gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(193,96,142,0.12), rgba(212,167,87,0.1));
  border: 1px solid rgba(193,96,142,0.2);
  display: flex; align-items: center; justify-content: center;
}
.info-icon i { color: var(--rose); font-size: 0.95rem; }
.info-item strong { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dark); margin-bottom: 5px; }
.info-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.info-item a { color: var(--text-mid); transition: color 0.2s; }
.info-item a:hover { color: var(--rose); }
.info-item em { color: var(--rose); font-style: italic; font-size: 0.84rem; }

.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,96,142,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1rem;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.contact-socials a:hover {
  background: var(--rose); border-color: var(--rose);
  color: var(--white); transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--plum);
  padding: 72px 24px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 160px; width: auto; max-width: 420px; object-fit: contain; border-radius: 0; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 4px; }
.footer-links h5, .footer-contact h5 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color 0.22s, padding-left 0.22s;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact p {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: rgba(255,255,255,0.55);
  padding: 5px 0;
}
.footer-contact p i { color: var(--rose); width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.22s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════════════════ */
.fab-wa {
  position: fixed; bottom: 32px; right: 20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.85rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.fab-wa:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.fab-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%  { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100%{ transform: scale(1.6); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE ACTION BAR
════════════════════════════════════════════════════════════ */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 60px; z-index: 850;
  background: rgba(20,4,32,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  grid-template-columns: repeat(4, 1fr); /* confirmed: 4 equal columns */
}
.mobile-bar a {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  color: rgba(255,255,255,0.65); font-size: 0.6rem;
  font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.22s, background 0.22s;
  padding: 6px 0;
}
.mobile-bar a i { font-size: 1.15rem; }
.mobile-bar a:first-child { color: #25d366; }
.mobile-bar a:hover { background: rgba(255,255,255,0.05); color: var(--white); }

/* ════════════════════════════════════════════════════════════
   BRIDAL PACKAGES
════════════════════════════════════════════════════════════ */
.bridal {
  position: relative;
  background: #080114;
  padding: 120px 0;
  overflow: hidden;
}

.bridal-img-bg {
  position: absolute; inset: 0;
  background: url('assets/Our%20Sanctuary.jpg') center/cover no-repeat;
  opacity: 0.2;
}

.bridal-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,1,24,0.94) 0%,
    rgba(38,6,68,0.86) 40%,
    rgba(80,20,100,0.72) 70%,
    rgba(20,4,36,0.94) 100%
  );
}

.bridal-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.bridal-bg-glow--rose {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(193,96,142,0.18) 0%, transparent 70%);
  top: -160px; right: -120px;
}
.bridal-bg-glow--gold {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,167,87,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.bridal .container { position: relative; z-index: 1; }

.bridal-section-title { color: var(--white); }
.bridal-section-title em { color: var(--gold-lt); }

.bridal-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(240,192,216,0.7);
  font-style: italic;
  font-weight: 300;
  margin-top: 10px;
}

.bridal-intro {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.82;
}

.bridal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.bridal-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 750px;
  margin-top: 28px;
}

.bridal-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(212,167,87,0.22);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.bridal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(193,96,142,0.28), 0 0 48px rgba(212,167,87,0.08);
  border-color: rgba(212,167,87,0.52);
}

.bridal-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.bridal-card:hover::before { transform: scaleX(1); }

.bridal-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,167,87,0.07) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.bridal-card:hover .bridal-card-glow { opacity: 1; }

.bridal-badge {
  position: absolute;
  top: -1px; right: 22px;
  padding: 7px 18px;
  background: linear-gradient(135deg, var(--rose) 0%, #8a3070 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 20px rgba(193,96,142,0.45);
}

.bridal-crown {
  font-size: 1.85rem; line-height: 1;
  margin-bottom: 14px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(212,167,87,0.3));
}

.bridal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 6px; line-height: 1.22;
}

.bridal-accent {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
}

.bridal-card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.bridal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,167,87,0.45), transparent);
  margin-bottom: 22px;
}

.bridal-items { list-style: none; }
.bridal-items li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.68);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.45;
}
.bridal-items li:last-child { border-bottom: none; }
.bridal-items li::before {
  content: '✦';
  color: var(--gold-lt);
  font-size: 0.48rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.bridal-qty {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem; font-weight: 600;
  font-style: italic;
  color: var(--gold-lt);
  flex-shrink: 0;
  opacity: 0.85;
}

.bridal-card-shine {
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.045) 50%, transparent 100%);
  transition: left 0.65s var(--ease-out);
  pointer-events: none;
}
.bridal-card:hover .bridal-card-shine { left: 125%; }

.bridal-cta {
  text-align: center;
  margin-top: 60px;
}

/* ════════════════════════════════════════════════════════════
   PERFORMANCE — reduce motion
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════════════════════
   TABLET — 1024px
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px; padding: 80px 28px;
  }
  .about-img-wrap { height: 400px; max-width: 640px; margin: 0 auto; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 320px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Kill expensive backdrop-filter on cards at tablet — solid bg instead */
  .service-card { backdrop-filter: none; background: rgba(255,255,255,0.07); }
  .why-card     { backdrop-filter: none; background: rgba(255,255,255,0.06); }
  .bridal-card  { backdrop-filter: none; background: rgba(255,255,255,0.06); }

  /* Bridal grid — 2 columns at tablet */
  .bridal-grid,
  .bridal-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .bridal-grid-2 { margin-top: 28px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE — 768px
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 92px; }

  /* Cursor off on touch */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  /* Petals — fewer, less CPU */
  .petal.p3, .petal.p4, .petal.p6, .petal.p7 { display: none; }

  /* ── Header ── */
  /* Always show header bg on mobile so logo is visible over hero */
  .header {
    background: rgba(14, 2, 22, 0.82);
  }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; }
  .brand-wordmark { height: 22px; max-width: 130px; width: auto; object-fit: contain; }
  .brand-logo { height: 84px; width: auto; max-width: 280px; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: rgba(10, 2, 18, 0.98); /* solid enough to block hero bleed */
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 80px; /* 80px bottom clears mobile-bar */
    gap: 2px;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease-out);
    z-index: 810;
  }
  .nav.open { transform: translateY(0); }

  /* Full-screen dark backdrop when nav is open */
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 800; /* below nav (810) but above everything else */
    pointer-events: none;
  }
  .nav-link {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .nav-cta {
    margin: 10px 0 0;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  /* ── Hero ── */
  .hero-content { padding: 0 20px; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ── Strip ── */
  .strip-track { animation-duration: 18s; }

  /* ── About ── */
  .about { padding: 64px 20px; gap: 36px; }
  .about-img-wrap { height: 300px; width: 100%; max-width: 100%; }
  .about-badge { bottom: 16px; right: 16px; padding: 12px 16px; }
  .badge-num { font-size: 1.8rem; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-pillars li { font-size: 0.82rem; }
  .about-sanctuary-img {
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 1;
  }

  /* ── Services ── */
  .section { padding: 64px 20px; }
  .services { padding: 64px 0; }
  .services .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-img-wrap { height: 180px; }
  .card-body { padding: 18px 20px 22px; }
  .section-head { margin-bottom: 40px; }

  /* ── Bridal ── */
  .bridal { padding: 64px 0; }
  .bridal-grid,
  .bridal-grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }
  .bridal-grid-2 { margin-top: 16px; }
  .bridal-card { padding: 32px 24px 28px; }
  .bridal-card-title { font-size: 1.35rem; }
  .bridal-cta { margin-top: 44px; }

  /* ── Why ── */
  .why { padding: 64px 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 18px; }
  .why-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .why-card h4 { font-size: 0.95rem; }
  .why-card p { font-size: 0.8rem; }

  /* ── Reviews ── */
  .reviews { padding: 64px 0; }
  .reviews .container { padding: 0 20px; }
  .review-card { flex: 0 0 300px; padding: 24px 20px; }
  .review-card p { font-size: 0.86rem; }

  /* ── CTA Band ── */
  .cta-band { padding: 60px 20px; }
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ── Contact ── */
  .contact { padding: 64px 20px; }
  .contact-wrap { gap: 36px; }
  .contact-map { height: 280px; }
  .info-item { gap: 14px; }
  .info-icon { width: 38px; height: 38px; flex-shrink: 0; }
  .contact-info .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* ── Footer ── */
  .footer { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 44px; }
  .footer-brand p { font-size: 0.84rem; }

  /* ── FAB & bar ── */
  .fab-wa { display: none; } /* bottom bar covers WhatsApp — hide the FAB */
  .mobile-bar { display: grid; }
  .mobile-bar a { font-size: 0.58rem; }

  /* No body scroll when nav is open */
  body.nav-open { overflow: hidden; }
}

/* ════════════════════════════════════════════════════════════
   SMALL MOBILE — 480px
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-eyebrow { display: none; }

  .about-img-wrap { height: 240px; }
  .about-pillars { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .services-grid { gap: 14px; }
  .card-img-wrap { height: 160px; }

  .bridal-card { padding: 28px 20px 24px; }
  .bridal-items li { font-size: 0.82rem; }

  .review-card { flex: 0 0 260px; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .services-title { font-size: clamp(1.6rem, 7vw, 2rem); }

  .footer-inner { gap: 24px; }
  .footer-bottom { font-size: 0.72rem; padding: 16px 0; }

  .strip-track span { font-size: 0.65rem; }
}