/* ============================================================
   SKIN BEAUTY WIRRAL — Main Stylesheet
   Premium Aesthetics Clinic
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS RESET & ROOT VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #B8952A;
  --gold-light:  #D4AF37;
  --pink:        #D4618A;
  --pink-light:  #F9D0E0;
  --bg:          #FDF8F5;
  --card-bg:     #FFFAF7;
  --dark:        #2C1810;
  --mid:         #6B3F4A;
  --white:       #ffffff;
  --shadow-neu:  8px 8px 20px #e8d5c8, -8px -8px 20px #ffffff;
  --shadow-inset: inset 4px 4px 10px #e8d5c8, inset -4px -4px 10px #ffffff;
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  all 0.3s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Raleway', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg);
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  background-image: url('../images/newlogo.jpeg');
  background-repeat: repeat;
  background-size: 320px auto;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-color: rgba(253, 248, 245, 0.94);
  z-index: 0;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--mid);
  font-size: 1rem;
  font-weight: 400;
}

.grad-text {
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 72px;
    width: auto;
  }
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(184, 149, 42, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  min-width: 200px;
  padding: 8px;
  border: 1px solid rgba(184, 149, 42, 0.12);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--mid);
  border-radius: 8px;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: rgba(184, 149, 42, 0.08);
  color: var(--gold);
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 15px rgba(184, 149, 42, 0.35);
  transition: var(--transition) !important;
  margin-left: 8px;
}

.nav-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(184, 149, 42, 0.45) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  border-radius: 10px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(184, 149, 42, 0.08);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(184, 149, 42, 0.08);
  color: var(--gold);
}

.mobile-nav .mobile-book-btn {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Live status badge */
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-right: 12px;
}

.live-status.open {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.live-status.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.live-status::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #2C1810 0%, #6B3F4A 40%, #D4618A 75%, #B8952A 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212, 97, 138, 0.2) 0%, transparent 60%);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 1px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero .breadcrumb span {
  color: var(--gold-light);
  font-size: 0.65rem;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 97, 138, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 42, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-left h1 {
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-left h1 span {
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
}

.hero-img-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--pink-light) 0%, rgba(184, 149, 42, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease;
}

/* ── Slideshow dots ──────────────────────── */
.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── Slide label ─────────────────────────── */
.slide-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border-left: 3px solid var(--gold);
  z-index: 10;
  transition: opacity 0.4s ease;
}

.hero-img-placeholder {
  text-align: center;
  color: var(--mid);
  opacity: 0.5;
  font-size: 0.85rem;
  font-weight: 600;
}

.float-bubble {
  position: absolute;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-neu);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.float-bubble .bubble-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-bubble .bubble-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.float-bubble .bubble-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bubble-years {
  top: 24px;
  left: -30px;
  animation: floatUp 4s ease-in-out infinite;
}

.bubble-stars {
  bottom: 40px;
  right: -24px;
  animation: floatDown 4s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #4a2430 100%);
  padding: 28px 24px;
}

.stats-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.stat-icon {
  font-size: 1.4rem;
  margin-right: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 149, 42, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 149, 42, 0.5);
  color: var(--white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), #c0395f);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 97, 138, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: ctaPulse 3s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 97, 138, 0.5);
  color: var(--white);
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 97, 138, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(212, 97, 138, 0.7), 0 0 0 6px rgba(212, 97, 138, 0.1); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 42, 0.3);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  color: var(--gold);
}

/* ============================================================
   CHIP / BADGE
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 149, 42, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(184, 149, 42, 0.2);
}

.chip-pink {
  background: rgba(212, 97, 138, 0.08);
  color: var(--pink);
  border-color: rgba(212, 97, 138, 0.2);
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ============================================================
   CARD (Neumorphic)
   ============================================================ */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  padding: 36px 32px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: 12px 12px 30px #e0cbbf, -12px -12px 30px #ffffff;
  transform: translateY(-4px);
}

/* ============================================================
   TREATMENT CARD
   ============================================================ */
.treatment-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.treatment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 42, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.treatment-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 12px 12px 32px #dfc9bb, -6px -6px 20px #ffffff;
}

.treatment-card:hover::after {
  opacity: 1;
}

.treatment-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(184, 149, 42, 0.12), rgba(212, 97, 138, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.treatment-card h4 {
  font-family: var(--font-head);
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.3;
}

.treatment-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.treatment-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.treatment-card .card-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  transition: var(--transition);
}

.treatment-card:hover .card-arrow {
  transform: translateX(4px);
}

/* ============================================================
   BEFORE & AFTER GRID
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--pink-light) 0%, rgba(184, 149, 42, 0.12) 100%);
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ba-item:hover img {
  transform: scale(1.04);
}

.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.7));
  padding: 24px 20px 16px;
  color: var(--white);
}

.ba-label .ba-treatment {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.ba-label .ba-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   TICK LIST
   ============================================================ */
.tick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}

.tick-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  background: rgba(184, 149, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, #c0785a 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
}

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

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ============================================================
   TREATMENT DETAIL SECTION
   ============================================================ */
.treatment-group {
  margin-bottom: 72px;
}

.treatment-group:last-child {
  margin-bottom: 0;
}

.treatment-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(184, 149, 42, 0.15);
}

.treatment-group-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.treatment-group-header h2 {
  font-size: 1.7rem;
}

.treatment-detail-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  padding: 28px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment-detail-card:hover {
  box-shadow: 10px 10px 28px #dfc9bb, -8px -8px 20px #ffffff;
  transform: translateY(-3px);
}

.treatment-detail-card .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.treatment-detail-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  flex: 1;
}

.treatment-detail-card .card-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 149, 42, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184, 149, 42, 0.12), rgba(212, 97, 138, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-text span,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--mid);
}

.contact-info-text a:hover {
  color: var(--gold);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--mid);
  padding: 3px 0;
}

.hours-row .day {
  font-weight: 600;
  color: var(--dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 2px solid rgba(184, 149, 42, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  box-shadow: var(--shadow-inset);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8952A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  padding: 48px;
  text-align: center;
  border: 2px dashed rgba(184, 149, 42, 0.2);
  margin-top: 40px;
}

.map-placeholder .map-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.map-placeholder h3 {
  margin-bottom: 8px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-neu);
  position: relative;
  background: linear-gradient(160deg, var(--pink-light) 0%, rgba(184, 149, 42, 0.1) 100%);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.8));
  padding: 32px 20px 20px;
}

.gallery-caption .treatment-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  font-weight: 700;
}

.gallery-caption .treatment-type {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  opacity: 0.4;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #1e0f0a 0%, #2C1810 100%);
  padding: 64px 24px 0;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 44px;
}

.footer-brand .footer-logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}

.footer-brand .footer-logo-text span:last-child {
  font-size: 0.6rem;
  color: var(--pink);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item .fc-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-bottom .footer-legal a:hover {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING CALL BUTTON (Desktop)
   ============================================================ */
#float-call {
  position: fixed;
  bottom: 36px;
  right: 32px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 6px 28px rgba(184, 149, 42, 0.45);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

#float-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(184, 149, 42, 0.55);
}

#float-call .fc-icon {
  font-size: 1.1rem;
}

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */
#mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  padding: 14px 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 -4px 20px rgba(184, 149, 42, 0.3);
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  border-radius: 2px;
  margin: 16px 0;
}

.divider-center {
  margin: 16px auto;
}

/* ============================================================
   CONSULTATION BANNER
   ============================================================ */
.consult-card {
  background: linear-gradient(135deg, var(--pink-light), rgba(184, 149, 42, 0.08));
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(212, 97, 138, 0.2);
  flex-wrap: wrap;
}

.consult-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.consult-card p {
  font-size: 0.875rem;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 40px;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 40px 24px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    order: -1;
  }

  /* Hero full rework on mobile */
  .hero {
    min-height: auto;
    padding: 20px 0 40px;
    overflow: visible;
  }

  .hero .container {
    padding: 0;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-right {
    order: -1;
    width: 100%;
    overflow: visible;
    padding: 0 16px;
  }

  .hero-img-frame {
    aspect-ratio: 3/4;
    border-radius: 28px;
    min-height: 340px;
    max-height: 480px;
    width: 100%;
    box-shadow: 0 16px 48px rgba(180,130,100,0.22), 0 4px 16px rgba(0,0,0,0.10);
  }

  .hero-left {
    padding: 0 20px;
    gap: 20px;
  }

  /* Float bubbles — scaled down, repositioned inside card edges */
  .float-bubble {
    display: flex !important;
    padding: 8px 12px;
    gap: 7px;
    border-radius: 12px;
  }

  .float-bubble .bubble-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .float-bubble .bubble-num {
    font-size: 1.05rem;
  }

  .float-bubble .bubble-label {
    font-size: 0.6rem;
  }

  .bubble-years {
    top: 20px;
    left: 4px;
  }

  .bubble-stars {
    bottom: 56px;
    right: 4px;
  }

  /* Slide label — bottom centre, above dots */
  .slide-label {
    top: auto;
    bottom: 48px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 0.68rem;
    padding: 5px 12px;
    white-space: nowrap;
  }

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

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

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stats-strip .container {
    gap: 0;
  }

  .stat-item {
    padding: 8px 16px;
    flex: 0 0 50%;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  #float-call {
    display: none !important;
  }

  #mobile-call-bar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .consult-card {
    flex-direction: column;
    text-align: center;
  }

  .treatment-group-header {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .page-hero {
    padding: 56px 24px;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 0 0 100%;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:first-child {
    border-top: none;
  }

  .card {
    padding: 24px 20px;
  }

  .treatment-detail-card {
    padding: 22px 20px;
  }
}

/* ============================================================
   MOBILE RESPONSIVENESS ENHANCEMENTS
   ============================================================ */

/* Fix about section inline gap on mobile */
@media (max-width: 768px) {
  .about-text {
    order: -1;
  }
  /* Override inline gap:60px on grid-2 in about section */
  #about .grid-2 {
    gap: 32px !important;
  }
  /* Before/after grid — 1 col on mobile */
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  /* Stats strip — wrap properly */
  .stats-strip .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Treatment cards full width */
  .treatment-detail-card .treatment-benefits {
    grid-template-columns: 1fr;
  }
  /* Price table on mobile */
  .price-table {
    font-size: 0.875rem;
  }
  /* Hero min-height fix on mobile */
  .hero {
    min-height: auto;
    padding-top: 48px;
  }
  /* Section header padding on mobile */
  .section-header {
    margin-bottom: 36px;
  }
  /* Float bubbles on mobile — keep in frame */
  .float-bubble {
    padding: 10px 14px;
    gap: 8px;
  }
  .bubble-num {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  /* Before/after back to 1 col on small phones */
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  /* Gallery grid 1 col on small phones */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  /* Reduce hero h1 padding */
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  /* CTA banner padding */
  .cta-banner {
    padding: 48px 20px;
  }
  /* Footer brand center align */
  .footer-brand {
    text-align: center;
  }
  .footer-brand .social-links {
    justify-content: center;
  }
  /* Nav logo text hide on very small screens */
  .nav-logo-text {
    display: none;
  }
}

/* Tablet: keep 2-col grids on medium screens (600px+) */
@media (min-width: 600px) and (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch target sizes — accessibility */
@media (max-width: 768px) {
  .nav-book-btn,
  .btn-cta,
  .btn-primary,
  .btn-ghost,
  .mobile-book-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
}

/* Prevent horizontal overflow everywhere */
* {
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}
table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

/* ============================================================
   LUXURY ANIMATIONS — Skin Beauty Wirral
   ============================================================ */

/* ── Particle canvas ─────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ── Custom cursor ───────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

#cursor-dot {
  width: 6px; height: 6px;
  background: linear-gradient(135deg, #D4AF37, #D4618A);
  margin-left: -3px; margin-top: -3px;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

#cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  margin-left: -16px; margin-top: -16px;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

#cursor-dot.cursor-hover {
  width: 10px; height: 10px;
  background: linear-gradient(135deg, #D4618A, #D4AF37);
}

#cursor-ring.cursor-hover {
  width: 48px; height: 48px;
  border-color: rgba(212, 97, 138, 0.4);
  margin-left: -24px; margin-top: -24px;
}

@media (max-width: 768px) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── Button shimmer sweep ────────────────────────────────── */
.btn-cta, .btn-primary, .nav-book-btn {
  position: relative;
  overflow: hidden;
}

.btn-cta::after, .btn-primary::after, .nav-book-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 3.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

/* ── Ripple effect ───────────────────────────────────────── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleOut 0.7s linear;
  pointer-events: none;
}

@keyframes rippleOut {
  to { transform: scale(1); opacity: 0; }
}

/* ── Section label / chip shimmer-in ────────────────────── */
.shimmer-in {
  animation: labelShimmer 1s ease forwards;
}

@keyframes labelShimmer {
  0%   { opacity: 0.4; letter-spacing: 1px; }
  50%  { letter-spacing: 4px; }
  100% { opacity: 1; letter-spacing: 3px; }
}

/* ── Gold divider line ───────────────────────────────────── */
.divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  border-radius: 2px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: dividerShine 2.5s ease-in-out infinite;
}

@keyframes dividerShine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ── Price badge pulse ───────────────────────────────────── */
.price-badge {
  animation: pricePulse 4s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,149,42,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(184,149,42,0); }
}

/* ── Floating stat bubbles ───────────────────────────────── */
.float-bubble {
  animation: luxFloat 4s ease-in-out infinite;
}

.bubble-stars {
  animation-delay: -2s;
}

@keyframes luxFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* ── Hero image subtle breathe ───────────────────────────── */
.hero-img-frame {
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { box-shadow: 8px 8px 20px #e8d5c8, -8px -8px 20px #ffffff; }
  50%       { box-shadow: 12px 12px 32px rgba(184,149,42,0.25), -8px -8px 24px #ffffff; }
}

/* ── Gradient text animate ───────────────────────────────── */
.grad-text {
  background-size: 200% auto;
  animation: gradShift 4s linear infinite;
}

@keyframes gradShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Treatment card gold border sweep ────────────────────── */
.treatment-card {
  position: relative;
}

.treatment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--pink), var(--gold));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderRotate 3s linear infinite;
}

.treatment-card:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── CTA banner shimmer overlay ──────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.06),
    transparent
  );
  animation: ctaBannerShine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaBannerShine {
  0%   { left: -100%; }
  100% { left: 160%; }
}

/* ── Scroll reveal enhanced ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.grid-3 .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-3 .reveal:nth-child(2) { transition-delay: 100ms; }
.grid-3 .reveal:nth-child(3) { transition-delay: 200ms; }
.grid-3 .reveal:nth-child(4) { transition-delay: 300ms; }
.grid-3 .reveal:nth-child(5) { transition-delay: 400ms; }
.grid-3 .reveal:nth-child(6) { transition-delay: 500ms; }

.grid-2 .reveal:nth-child(2) { transition-delay: 120ms; }

/* ── Navbar scroll effect ────────────────────────────────── */
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(44, 24, 16, 0.1);
  border-bottom-color: rgba(184, 149, 42, 0.25);
}

/* ── Page hero entrance ──────────────────────────────────── */
.page-hero h1 {
  animation: heroHeadIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero p {
  animation: heroHeadIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroHeadIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Typewriter cursor blink ─────────────────────────────── */
.grad-text::after {
  content: '|';
  animation: blink 0.9s step-end infinite;
  -webkit-text-fill-color: var(--pink);
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Mobile hero chips + text overflow fixes ─── */
@media (max-width: 768px) {
  .hero-chips {
    flex-wrap: wrap;
    gap: 6px;
  }
  .hero-chips .chip {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
  .section-label {
    white-space: normal;
    overflow: visible;
  }
  .chip {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90vw;
  }
  .hero-left h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
