/* ═══════════════════════════════════════════════════════════
   IVY'S BEAUTY SECRET — PRODUCTION STYLESHEET
   Single source of truth: see project specification.
═══════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Primary brand */
  --pink-primary:    #FF4F9A;
  --pink-deep:       #E0337A;
  --pink-soft:       #FFD6E7;
  --pink-blush:      #FFF0F6;
  --pink-whisper:    #FDF8FB;

  /* Supporting — restricted usage */
  --blue-sky:        #7EC8FF;
  --blue-baby:       #D8F1FF;
  --lavender:        #F5F0FF;

  /* Gold — restricted usage */
  --gold:            #D4A04F;
  --gold-light:      #F0D080;

  /* Neutrals */
  --white:           #FFFFFF;
  --dark-text:       #2C2C2C;
  --mid-text:        #666666;
  --light-text:      #999999;
  --dark-surface:    #1A1A1A;
  --darker-surface:  #111111;

  /* Gradients */
  --grad-hero-bg: radial-gradient(ellipse 130% 100% at 70% 40%, #FFD6E7 0%, #EEF6FF 55%, #F5F0FF 100%);
  --grad-pink-cta: linear-gradient(135deg, #FF4F9A 0%, #E0337A 100%);
  --grad-gold-cta: linear-gradient(135deg, #D4A04F 0%, #F0D080 50%, #D4A04F 100%);
  --grad-booking: linear-gradient(145deg, #FF4F9A 0%, #C4479A 35%, #9B6FD4 65%, #7EC8FF 100%);
  --grad-dark-hair: linear-gradient(160deg, #2C1020 0%, #1A0810 50%, #0D0508 100%);
  --grad-bridal-overlay: linear-gradient(180deg, rgba(255,79,154,0.08) 0%, rgba(212,160,79,0.22) 35%, rgba(26,8,16,0.65) 75%, rgba(10,0,5,0.88) 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;

  --container-max: 1240px;
  --container-pad: 80px;
  --container-pad-m: 20px;

  --card-radius: 20px;
  --card-radius-lg: 24px;
  --card-radius-sm: 14px;
  --card-shadow: 0 8px 32px rgba(255,79,154,0.10);
  --card-shadow-lg: 0 16px 48px rgba(255,79,154,0.16);
  --card-shadow-hover: 0 20px 60px rgba(255,79,154,0.20);
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-text);
  background: var(--pink-whisper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; border: none; background: none; cursor: pointer; }

ul, ol { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

@media (max-width: 768px) {
  .container { padding: 0 var(--container-pad-m); }
}

/* Reduced motion — global override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible focus state — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. SHARED TYPOGRAPHY TOKENS ──────────────────────────── */
.section-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--pink-primary);
  margin-bottom: 8px;
}
.section-script--gold { color: var(--gold); text-shadow: 0 0 30px rgba(212,160,79,0.40); }
.section-script--white { color: rgba(255,255,255,0.88); }

.section-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--dark-text);
}
.section-h2--white { color: var(--white); }

.section-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-top: 16px;
}

.section-header { max-width: 600px; margin-bottom: 64px; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header--light .section-body { color: rgba(255,255,255,0.75); }

.ornament-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.ornament-line--center { margin-left: auto; margin-right: auto; }
.ornament-line--gold { background: var(--gold); }

.ornament-duo {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}
.ornament-duo--white { color: rgba(255,255,255,0.6); }

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn--pink {
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,79,154,0.30);
}
.btn--pink:hover { background: var(--pink-deep); box-shadow: 0 6px 26px rgba(255,79,154,0.40); }

.btn--gold {
  background: var(--grad-gold-cta);
  background-size: 200% 100%;
  color: #1A0810;
  font-weight: 700;
  padding: 17px 40px;
  box-shadow: 0 8px 36px rgba(212,160,79,0.40), 0 0 60px rgba(212,160,79,0.12);
  animation: goldShimmer 2.5s ease infinite;
}
.btn--gold:hover { box-shadow: 0 10px 44px rgba(212,160,79,0.55), 0 0 80px rgba(212,160,79,0.18); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
  padding: 13px 34px;
}
.btn--outline:hover { background: var(--pink-primary); color: var(--white); }

.btn--full { width: 100%; }

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

@media (prefers-reduced-motion: reduce) {
  .btn--gold { animation: none; }
}

/* ── 5. SCROLL-TRIGGERED ANIMATION (A8) ───────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-left"].is-visible { transform: translateX(0); }
[data-animate="slide-right"] { transform: translateX(40px); }
[data-animate="slide-right"].is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,79,154,0.08);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled { box-shadow: 0 2px 24px rgba(255,79,154,0.08); }

.nav__inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 52px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-primary { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--dark-text); letter-spacing: 0.04em; }
.nav__logo-secondary { font-family: var(--font-display); font-style: italic; font-size: 13px; color: var(--pink-primary); letter-spacing: 0.06em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--pink-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__link:hover { color: var(--pink-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: var(--pink-primary); }
.nav__link--active::after { transform: scaleX(1); }

.nav__cta { flex-shrink: 0; padding: 11px 24px; font-size: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav__hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-active .nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active .nav__hamburger-bar:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active .nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links { gap: 22px; }
}

@media (max-width: 768px) {
  .nav { height: 64px; }
  .nav__inner { padding: 0 var(--container-pad-m); }
  .nav__logo-img { height: 40px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #FF4F9A 0%, #C4479A 40%, #1A0810 100%);
  transform: translateY(-100%);
  transition: transform 0.4s ease-out;
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s ease-out;
}
.mobile-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
}
.mobile-nav__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.mobile-nav.is-open .mobile-nav__link { opacity: 1; transform: translateX(0); }
.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.21s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.27s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.33s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(5) { transition-delay: 0.39s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(6) { transition-delay: 0.45s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(7) { transition-delay: 0.51s; }
.mobile-nav__link:hover { opacity: 0.7; }
.mobile-nav__link--active { font-style: italic; text-decoration: underline; }

.mobile-nav__footer {
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  text-align: center;
}
.mobile-nav__contact {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.mobile-nav__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.mobile-nav__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@media (min-width: 769px) {
  .mobile-nav { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1 — CINEMATIC HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: var(--grad-hero-bg);
}

.hero__bloom {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__bloom--pink {
  top: -100px; right: -100px;
  width: 600px; height: 450px;
  background: radial-gradient(circle, var(--pink-primary), transparent 70%);
  opacity: 0.16;
  filter: blur(80px);
}
.hero__bloom--blue {
  bottom: -80px; left: -80px;
  width: 500px; height: 350px;
  background: radial-gradient(circle, var(--blue-sky), transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
}

.hero__particles {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 100vh;
}

.hero__content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 60px var(--container-pad);
  position: relative;
  z-index: 6;
}

.hero__script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--pink-primary);
  margin-bottom: 12px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 84px;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.hero__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--mid-text);
}
.hero__trust-item i {
  color: var(--pink-primary);
  font-size: 16px;
  filter: drop-shadow(0 0 4px rgba(255,79,154,0.35));
}

.hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__cta-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.hero__cta-link:hover { color: var(--pink-primary); }
.hero__cta-arrow { color: var(--pink-primary); transition: transform 0.2s ease; }
.hero__cta-link:hover .hero__cta-arrow { transform: translateX(4px); }

.hero__image-zone {
  width: 55%;
  position: relative;
  height: 110vh;
}
.hero__model {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 18%);
  mask-image: linear-gradient(to right, transparent 0%, white 18%);
}
.img-hero { filter: brightness(1.04) saturate(1.08) contrast(1.01); }

.glass-card {
  position: absolute;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(255,79,154,0.18);
  padding: 0 16px;
  display: flex;
  align-items: center;
  z-index: 7;
}
.glass-card--1 {
  right: 5%; top: 22%;
  width: 180px; height: 68px;
  animation: floatCard1 3.5s ease-in-out infinite alternate;
}
.glass-card--2 {
  right: 3%; top: 58%;
  width: 200px; height: 68px;
  box-shadow: 0 8px 32px rgba(124,200,255,0.18);
  animation: floatCard2 4.2s ease-in-out infinite alternate;
  animation-delay: 0.9s;
}
.glass-card__content { display: flex; align-items: center; gap: 10px; }
.glass-card__icon { font-size: 20px; flex-shrink: 0; }
.glass-card__title { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--dark-text); line-height: 1.3; }
.glass-card__sub { font-family: var(--font-body); font-weight: 300; font-size: 11px; color: var(--mid-text); line-height: 1.3; }

@keyframes floatCard1 { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes floatCard2 { from { transform: translateY(0); } to { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  .glass-card--1, .glass-card--2 { animation: none; }
}

.hero__exit {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--pink-whisper));
  pointer-events: none;
  z-index: 5;
}

/* Hero load animation */
.hero__content[data-animate] {
  transition-delay: 0.3s;
}
.hero__model {
  opacity: 0;
  transform: scale(1.06);
  animation: heroModelIn 1.4s ease-out forwards;
}
@keyframes heroModelIn {
  to { opacity: 1; transform: scale(1.0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__model { opacity: 1; transform: none; animation: none; }
}

/* ── HERO MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { height: 100svh; min-height: 100vh; }
  .hero__inner { flex-direction: column; position: relative; height: 100%; }
  .hero__bloom { display: none; }

  .hero__image-zone {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero__model {
    object-position: center 20%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__image-zone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(253,248,251,0.20) 0%,
      rgba(253,248,251,0.00) 22%,
      rgba(253,248,251,0.88) 62%,
      rgba(253,248,251,0.97) 100%);
    z-index: 2;
  }

  .glass-card { display: none; }

  .hero__content {
    position: absolute;
    bottom: 80px;
    left: 0; right: 0;
    width: 100%;
    padding: 0 24px;
    z-index: 3;
    justify-content: flex-end;
  }
  .hero__script { font-size: 20px; }
  .hero__headline { font-size: 46px; text-shadow: 0 1px 3px rgba(255,240,246,0.5); }
  .hero__body { font-size: 14px; margin-bottom: 24px; }
  .hero__body br { display: none; }
  .hero__trust { gap: 14px; margin-bottom: 24px; }
  .hero__trust-item span { display: none; }
  .hero__trust-item { font-size: 18px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta-link { justify-content: center; }
  .hero__exit { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION TRANSITIONS (shared)
═══════════════════════════════════════════════════════════ */
.section-entry { position: relative; height: 0; }
.section-exit {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}
.section-exit--to-white { background: linear-gradient(to bottom, transparent, #FFFFFF); }
.section-exit--to-blush { background: linear-gradient(to bottom, transparent, #FFF0F6); }
.section-exit--to-dark { background: linear-gradient(to bottom, transparent, #1A0810); height: 120px; }
.section-exit--dark-to-warm { background: linear-gradient(to bottom, transparent, #1A0810); height: 80px; }
.section-exit--dark-to-lavender { background: linear-gradient(to bottom, transparent, #F5F0FF); height: 120px; }
.section-exit--lavender-to-booking { background: linear-gradient(to bottom, transparent, #FF4F9A); height: 100px; }

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — FEATURED SERVICE CATEGORIES
═══════════════════════════════════════════════════════════ */
.services {
  position: relative;
  background: linear-gradient(160deg, #FFF5F9 0%, #FFD6E7 60%, #FFF8FB 100%);
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--card-shadow-hover); }

.service-card--featured {
  grid-column: span 2;
  height: 420px;
  border-radius: var(--card-radius-lg);
}
.service-card:not(.service-card--featured):not(.service-card--wide) { height: 380px; }
.service-card--wide {
  grid-column: span 2;
  height: 340px;
}

.service-card__image-wrap {
  position: relative;
  flex: 0 0 58%;
  overflow: hidden;
}
.service-card--featured .service-card__image-wrap { flex: 0 0 62%; border-radius: var(--card-radius-lg) var(--card-radius-lg) 0 0; }
.service-card:not(.service-card--featured) .service-card__image-wrap { border-radius: var(--card-radius) var(--card-radius) 0 0; }

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
}
.img-card { filter: brightness(1.03) saturate(1.06); }
.service-card:hover .service-card__image { filter: brightness(1.10) saturate(1.14) contrast(1.02); transform: scale(1.03); }

.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(255,79,154,0.10) 100%);
  pointer-events: none;
}

.service-card__badge {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pink-primary);
  box-shadow: 0 4px 16px rgba(255,79,154,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin: -30px auto 0;
  z-index: 2;
}
.service-card:not(.service-card--featured) .service-card__badge { width: 54px; height: 54px; font-size: 21px; margin-top: -27px; }

.service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 28px 28px;
}
.service-card:not(.service-card--featured) .service-card__body { padding: 14px 22px 22px; }

.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.service-card:not(.service-card--featured) .service-card__title { font-size: 22px; }

.service-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--mid-text);
  line-height: 1.75;
  margin-bottom: auto;
  padding-bottom: 16px;
}

.service-card__cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}
.service-card__cta-hover { display: none; color: var(--pink-primary); }
.service-card__cta:hover .service-card__cta-default { display: none; }
.service-card__cta:hover .service-card__cta-hover { display: inline; }

@media (max-width: 900px) {
  .services { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card--featured,
  .service-card--wide,
  .service-card:not(.service-card--featured):not(.service-card--wide) {
    grid-column: span 1;
    height: auto;
  }
  .service-card__image-wrap { flex: 0 0 220px; }
  .service-card__title { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — TRANSFORMATIONS GALLERY
═══════════════════════════════════════════════════════════ */
.gallery {
  position: relative;
  background: var(--white);
  padding: 80px 0 100px;
}

.gallery__grid {
  columns: 3;
  column-gap: 12px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  break-inside: avoid;
}
.gallery__item--a, .gallery__item--d { margin-top: -12px; }
.gallery__item--a img { aspect-ratio: 7/9; }
.gallery__item--b img { aspect-ratio: 6/7; }
.gallery__item--c img { aspect-ratio: 6/9.5; }
.gallery__item--d img { aspect-ratio: 1/1; }
.gallery__item--e img { aspect-ratio: 6/8; }
.gallery__item--f img { aspect-ratio: 6/5.8; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
}
.img-gallery { filter: brightness(1.02) saturate(1.06); }
.gallery__item:hover .gallery__img { filter: brightness(1.10) saturate(1.14); transform: scale(1.03); }

.gallery__cta-wrap { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .gallery { padding: 64px 0; }
  .gallery__grid { columns: 2; column-gap: 8px; }
  .gallery__item { margin-bottom: 8px; }
  .gallery__item--a, .gallery__item--d { margin-top: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  background: linear-gradient(135deg, #FFF0F6 0%, #FFD6E7 60%, #FFF8FB 100%);
  padding: 100px 0;
}

.testimonials__carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  padding: 40px 32px;
  position: relative;
  text-align: center;
}

.testimonial-card__quote {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 0.8;
  color: var(--pink-soft);
  z-index: 0;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.70;
  color: #555;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: block;
}

.testimonial-card__divider {
  width: 32px; height: 1px;
  background: var(--pink-soft);
  margin: 20px auto;
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--pink-primary);
  display: block;
  font-style: normal;
}

.testimonial-card__service {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--light-text);
  margin-top: 2px;
}

.testimonial-card__stars { color: var(--gold); font-size: 14px; margin-top: 12px; }

.testimonial-card__source { margin-top: 10px; }
.testimonial-card__source-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: var(--light-text);
  letter-spacing: 0.02em;
}

.testimonials__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.testimonials__fade--left { left: 0; background: linear-gradient(to right, #FFD6E7, transparent); }
.testimonials__fade--right { right: 0; background: linear-gradient(to left, #FFD6E7, transparent); }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testimonials__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(255,79,154,0.14);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.testimonials__arrow:hover { background: var(--pink-primary); color: var(--white); }

.testimonials__dots { display: flex; gap: 8px; align-items: center; }
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50px;
  background: var(--pink-soft);
  transition: width 0.3s ease, background 0.3s ease;
}
.testimonials__dot.is-active { width: 24px; background: var(--pink-primary); }

@media (max-width: 900px) {
  .testimonials { padding: 64px 0; }
  .testimonial-card { flex: 0 0 88vw; }
  .testimonials__arrow { display: none; }
  .testimonials__carousel-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .testimonials__carousel { scroll-snap-align: start; }
  .testimonial-card { scroll-snap-align: center; }
  .testimonials__fade { display: none; }
  .testimonials__dots .testimonials__dot { width: 12px; height: 12px; }
  .testimonials__dots .testimonials__dot.is-active { width: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — HAIR TRANSFORMATIONS
═══════════════════════════════════════════════════════════ */
.hair {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background: var(--grad-dark-hair);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hair__bloom {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,79,154,0.15), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hair__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hair .container { position: relative; z-index: 2; }

.hair__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.hair__tag {
  background: rgba(255,79,154,0.22);
  border: 1px solid rgba(255,79,154,0.55);
  color: rgba(255,255,255,0.90);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 10px 22px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  transition: background 0.25s ease;
}
.hair__tag:hover { background: rgba(255,79,154,0.40); }

/* ── Before/After Slider ──────────────────────────────────── */
.slider-wrap { max-width: 900px; margin: 0 auto; }

.slider {
  position: relative;
  max-width: 860px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,79,154,0.25);
  touch-action: pan-y;
  user-select: none;
}

.slider__before, .slider__after {
  position: absolute;
  inset: 0;
}
.slider__after { clip-path: inset(0 0 0 50%); }

.slider__img { width: 100%; height: 100%; object-fit: cover; }
.slider__img--before { filter: brightness(0.9) saturate(0.6); }
.slider__img--after { filter: brightness(1.06) saturate(1.12); }

.slider__badge {
  position: absolute;
  top: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 50px;
  color: var(--white);
}
.slider__badge--before { left: 14px; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); }
.slider__badge--after { right: 14px; background: var(--pink-primary); }

.slider__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
  cursor: grab;
  transform: translateX(-1px);
}
.slider__divider:active { cursor: grabbing; }

.slider__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--pink-primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 24px rgba(255,79,154,0.60);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__handle-arrows { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 14px; }

.slider__handle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,79,154,0.4);
  animation: sliderPulse 1.8s ease-out infinite;
}
@keyframes sliderPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.slider.is-dragging .slider__handle::before { animation-play-state: paused; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .slider__handle::before { animation: none; }
}

.slider__thumbs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
.slider__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.slider__thumb img {
  width: 120px; height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.slider__thumb span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}
.slider__thumb:hover { opacity: 0.85; }
.slider__thumb--active { opacity: 1; }
.slider__thumb--active img { border-color: var(--pink-primary); transform: scale(1.04); }

@media (max-width: 768px) {
  .hair { padding: 64px 0; }
  .slider { height: 280px; border-radius: 0; max-width: 100%; }
  .slider-wrap { margin: 0 -20px; }
  .slider__thumbs { padding: 0 20px; flex-wrap: wrap; }
  .slider__thumb img { width: 88px; height: 52px; }
  .slider__handle { width: 48px; height: 48px; }
  .hair__tags { gap: 8px; }
  .hair__tag { font-size: 12px; padding: 9px 18px; min-height: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — BRIDAL BEAUTY EXPERIENCE
═══════════════════════════════════════════════════════════ */
.bridal {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.bridal__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: bridalKenBurns 14s ease-in-out infinite alternate;
}
.img-bridal { filter: brightness(0.82) saturate(1.08); }

@keyframes bridalKenBurns {
  from { transform: scale(1.0); }
  to { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .bridal__bg { animation: none; }
}

.bridal__overlay { position: absolute; inset: 0; pointer-events: none; }
.bridal__overlay--main { background: var(--grad-bridal-overlay); z-index: 1; }
.bridal__overlay--left { background: linear-gradient(to right, rgba(26,8,16,0.45), transparent 40%); z-index: 2; }
.bridal__overlay--right { background: linear-gradient(to left, rgba(26,8,16,0.45), transparent 40%); z-index: 2; }

.bridal__particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }

.bridal__content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad) 80px;
  width: 100%;
}

.bridal__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  margin-bottom: 20px;
}

.bridal__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin: 0 auto 32px;
}

.bridal__pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bridal__pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--white);
}

@media (max-width: 768px) {
  .bridal { min-height: 90svh; }
  .bridal__bg { object-position: center 15%; }
  .bridal__headline { font-size: 48px; }
  .section-script--gold { font-size: 24px; }
  .bridal__pills { gap: 10px; }
  .bridal__content { padding-bottom: 64px; }
  .bridal__body { font-size: 14px; }
  .bridal__body br { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7 — BRAND STORY
═══════════════════════════════════════════════════════════ */
.story {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F0FF 100%);
  padding: 100px 0;
}

.story__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.story__image-wrap {
  position: relative;
  flex: 0 0 50%;
  max-width: 580px;
  margin-left: -40px;
}
.story__image {
  width: 100%;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 20px 60px rgba(255,79,154,0.12);
  -webkit-mask-image: linear-gradient(to right, white 78%, transparent 100%);
  mask-image: linear-gradient(to right, white 78%, transparent 100%);
}

.story__stat-card {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border-left: 3px solid var(--pink-primary);
  box-shadow: 0 8px 32px rgba(255,79,154,0.14);
  padding: 16px 20px;
  animation: storyStatFloat 4s ease-in-out infinite alternate;
}
@keyframes storyStatFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .story__stat-card { animation: none; } }

.story__stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--pink-primary);
  line-height: 1.1;
}
.story__stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--mid-text);
  line-height: 1.3;
}

.story__content { flex: 0 0 50%; padding-left: 60px; }

.story__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-bottom: 20px;
}

.story__founder {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  color: var(--light-text);
  margin-bottom: 32px;
}

.story__callouts { margin-bottom: 8px; }
.story__callout-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.story__callout-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid-text);
}
.story__rule { width: 32px; height: 1px; background: var(--pink-soft); margin: 20px 0; }

.story__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--pink-primary);
  margin-top: 32px;
}

.story__ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.story__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.story__link-arrow { color: var(--pink-primary); transition: transform 0.2s ease; }
.story__link:hover { color: var(--pink-primary); }
.story__link:hover .story__link-arrow { transform: translateX(4px); }

.story__link-subtle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--mid-text);
}
.story__link-subtle:hover { color: var(--pink-primary); }

@media (max-width: 900px) {
  .story { padding: 64px 0; }
  .story__inner { flex-direction: column; gap: 48px; }
  .story__image-wrap { margin-left: 0; max-width: 100%; flex: none; width: 100%; }
  .story__image { mask-image: none; -webkit-mask-image: none; border-radius: 16px; }
  .story__stat-card { position: static; width: auto; margin-top: 16px; animation: none; }
  .story__content { flex: none; width: 100%; padding-left: 0; }
  .section-h2 { font-size: 34px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 8 — BOOKING CTA
═══════════════════════════════════════════════════════════ */
.booking {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background: var(--grad-booking);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--space-xxl) var(--container-pad);
}

.booking__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.14), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.booking__particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }

.booking__model-wrap {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  z-index: 3;
}
.booking__model {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) saturate(1.05);
  -webkit-mask-image: linear-gradient(to right, white 60%, transparent 100%);
  mask-image: linear-gradient(to right, white 60%, transparent 100%);
}

.booking__content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
  margin-left: 45%;
  text-align: center;
  width: 100%;
}

.booking__queen {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.booking__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,0.18);
  margin-bottom: 20px;
}

.booking__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 480px;
  margin: 0 auto 16px;
}

.booking__scarcity {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 32px;
}

.booking__module {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.14);
}

.booking__wa-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(37,211,102,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 16px;
}
.booking__wa-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.booking__wa-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 8px;
}
.booking__wa-phone {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 28px;
}

/* Form mode */
.form-group { margin-bottom: 14px; text-align: left; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-optional { font-weight: 300; color: rgba(255,255,255,0.55); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.50);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
}
.form-input::placeholder { color: rgba(255,255,255,0.65); }
.form-input:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.form-select option { color: var(--dark-text); }
.form-textarea { resize: vertical; min-height: 70px; }

.booking__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 32px auto 0;
}
.booking__step { display: flex; flex-direction: column; align-items: center; max-width: 130px; }
.booking__step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: rgba(255,255,255,0.30);
  display: block;
}
.booking__step-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  text-align: center;
}
.booking__step-sep { color: rgba(255,255,255,0.25); }

.booking__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.booking__action-pill {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.booking__action-pill:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 900px) {
  .booking { padding: var(--space-xl) var(--container-pad-m); min-height: auto; }
  .booking__model-wrap { display: none; }
  .booking__content { margin-left: 0; max-width: 100%; }
  .booking__headline { font-size: 44px; }
  .booking__module { padding: 28px 20px; }
  .booking__steps { flex-direction: column; gap: 12px; }
  .booking__step-sep { display: none; }
  .booking__actions { gap: 8px; }
  .booking__particles { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 9 — PREMIUM FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--dark-surface);
  padding-top: 72px;
}

.footer__top-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--pink-primary) 50%, transparent 100%);
}

.footer__glow {
  position: absolute;
  top: 0; left: 0;
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(255,79,154,0.06), transparent 70%);
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo-link { display: inline-block; margin-bottom: 16px; }
.footer__logo-text { display: flex; flex-direction: column; filter: drop-shadow(0 0 14px rgba(255,79,154,0.28)); }
.footer__logo-primary { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); letter-spacing: 0.04em; }
.footer__logo-accent { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--pink-primary); letter-spacing: 0.06em; }

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 8px;
}
.footer__location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.70;
  margin-bottom: 24px;
}
.footer__brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer__socials { display: flex; gap: 10px; margin-bottom: 16px; }
.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer__social:hover { background: rgba(255,79,154,0.25); border-color: rgba(255,79,154,0.50); }

.footer__insta { display: flex; gap: 6px; margin-top: 4px; }
.footer__insta-item { width: 64px; height: 64px; border-radius: 6px; overflow: hidden; }
.footer__insta-item img { width: 100%; height: 100%; object-fit: cover; }
.footer__insta-handle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  margin-top: 8px;
}

.footer__col-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer__links { display: flex; flex-direction: column; gap: 0; }
.footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 2.4;
  display: block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__link:hover { color: var(--pink-primary); transform: translateX(4px); }

.footer__contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer__contact-list i { color: var(--pink-primary); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer__address { font-style: normal; }

.footer__book-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--pink-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
}

.footer__bottom { background: var(--darker-surface); padding: 16px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy { font-family: var(--font-body); font-weight: 300; font-size: 12px; color: rgba(255,255,255,0.35); }
.footer__address-short { font-family: var(--font-body); font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.22); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__insta { display: none; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING PERSISTENT ELEMENTS
═══════════════════════════════════════════════════════════ */
.whatsapp-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  z-index: 9999;
}
.whatsapp-widget::before, .whatsapp-widget::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 1.8s ease-out infinite;
}
.whatsapp-widget::after { animation-delay: 0.9s; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-widget::before, .whatsapp-widget::after { animation: none; }
}

.whatsapp-widget__tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.whatsapp-widget:hover .whatsapp-widget__tooltip { opacity: 1; }

@media (max-width: 768px) {
  .whatsapp-widget { bottom: 84px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-widget__tooltip { display: none; }
}

.mobile-booking-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--pink-primary);
  display: flex;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(255,79,154,0.22);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}
.mobile-booking-bar.is-visible { transform: translateY(0); }
.mobile-booking-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.mobile-booking-bar__btn:first-child { border-right: 1px solid rgba(255,255,255,0.25); }
.mobile-booking-bar__btn--primary { background: rgba(0,0,0,0.08); }

@media (min-width: 769px) {
  .mobile-booking-bar { display: none; }
}
