/*
Theme Name:       Livia Med Spa
Theme URI:        https://liviamedspa.com
Author:           Livia Med Spa
Author URI:       https://liviamedspa.com
Description:      Premium, performance-optimized theme for Livia Med Spa.
Version:          4.0.0
Requires at least: 6.0
Tested up to:     6.7
Requires PHP:     8.0
License:          GPL v2 or later
Text Domain:      livia-medspa
*/

/* Fonts loaded via wp_enqueue_style in functions.php — no @import needed */

/* Cookie banner: hidden by default via CSS — JS reveals after 5s.
   contain:strict + content-visibility:hidden excludes it from LCP calculation. */
.cookie-banner {
  display: none !important;
  contain: strict;
}
.cookie-banner.is-visible {
  display: flex !important;
  contain: layout style;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip-to-content (accessibility) */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  padding: 0.75rem 2rem;
  background: #AC13F9;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  line-height: 1.6;
  color: #1A0E2E;
  background: #F0EBE3;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #AC13F9 transparent;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #AC13F9, #9B2FD0);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d4b87a, #AC13F9);
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #AC13F9;
}

ul,
ol {
  list-style: none;
}

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

/* Lazy-load fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].is-loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

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

/* Gold text selection */
::selection {
  background: rgba(172, 19, 249, 0.25);
  color: #1A0E2E;
}

::-moz-selection {
  background: rgba(172, 19, 249, 0.25);
  color: #1A0E2E;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  color: #1A0E2E;
}

::selection {
  background: #AC13F9;
  color: #fff;
}

/* Focus ring for keyboard users — golden glow */
:focus-visible {
  outline: 2px solid #AC13F9;
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Staggered children animation */
.reveal.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: #FDF9F6;
  border-bottom: 1px solid rgba(172, 19, 249, 0.15);
  text-align: center;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.announcement-bar.is-dismissed {
  max-height: 0;
  opacity: 0;
  border-bottom: none;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.announcement-bar__text {
  font-size: 0.72rem;
  color: #4A3560;
  letter-spacing: 0.02em;
}

.announcement-bar__text strong {
  color: #AC13F9;
}

.announcement-bar__link {
  color: #AC13F9;
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}

.announcement-bar__link:hover {
  color: #d4b87a;
}

.announcement-bar__close {
  background: none;
  border: none;
  color: rgba(100, 60, 140, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.announcement-bar__close:hover {
  color: #1A0E2E;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.75rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

/* ── WordPress Admin Bar Fix ─────────────────────────────────────
   When logged in, WP adds a 32px admin bar at top.
   This hides it on the frontend so it doesn't break the layout.
   ──────────────────────────────────────────────────────────────── */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 19, 249, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Logo ──────────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.site-logo__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #AC13F9 0%, #F471D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 0px transparent);
}

.site-logo:hover .site-logo__name {
  filter: drop-shadow(0 0 8px rgba(172, 19, 249, 0.35));
}

/* Image logo */
.site-logo__img {
  height: clamp(30px, 2rem + 0.3vw, 40px);
  width: auto;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.site-logo:hover .site-logo__img {
  filter: drop-shadow(0 0 12px rgba(172, 19, 249, 0.25));
  transform: scale(1.02);
}

.site-logo__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C955F0;
  margin-top: -3px;
  transition: letter-spacing 0.4s ease;
}

.site-logo:hover .site-logo__tagline {
  letter-spacing: 0.4em;
}

/* ── Desktop Nav ───────────────────────────────────────────────── */
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: static;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.78rem, 0.73rem + 0.22vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1A0E2E;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav__link:hover {
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.08);
}

.nav__item--active>.nav__link {
  color: #AC13F9;
}

/* Active indicator dot */
.nav__item--active>.nav__link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #AC13F9;
}

.nav__arrow {
  transition: transform 0.3s ease;
  font-size: 0.55rem;
  opacity: 0.5;
}

.nav__item--has-mega:hover .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Invisible bridge so mega menu doesn't vanish when moving mouse down */
.nav__item--has-mega>.nav__link::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

/* ── Header Actions ────────────────────────────────────────────── */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #5A4660;
  transition: all 0.3s ease;
}

.site-header__phone:hover {
  background: rgba(172, 19, 249, 0.12);
  color: #AC13F9;
  transform: scale(1.05);
}

/* Divider between icons and CTA */
.header__divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.68rem, 0.63rem + 0.2vw, 0.73rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #AC13F9 0%, #F471D1 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(172, 19, 249, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Shimmer sweep on hover */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 100%);
  transform: rotate(30deg) translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  transform: rotate(30deg) translateX(130%);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(172, 19, 249, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
}

.btn--outline {
  background: transparent;
  color: #1A0E2E;
  border: 1.5px solid #ddd;
}

.btn--outline:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.04);
  transform: translateY(-2px);
}

/* Arrow icon shift on hover */
.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   MEGA MENU
   ========================================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #f0f0f4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  z-index: 100;
  /* Invisible top padding acts as hover bridge between nav link and dropdown */
  padding-top: 0.5rem;
  margin-top: 0;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #AC13F9, transparent);
}

.nav__item--has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 300px;
  gap: 2rem;
}

.mega-menu__column {
  display: flex;
  flex-direction: column;
}

.mega-menu__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f4;
}

.mega-menu__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu__item:hover {
  background: #F5EFE8;
  transform: translateX(4px);
}

.mega-menu__item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F5EFE8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mega-menu__item:hover .mega-menu__item-icon {
  transform: scale(1.12);
}

.mega-menu__item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.78rem, 0.73rem + 0.22vw, 0.85rem);
  font-weight: 600;
  color: #1A0E2E;
  display: block;
  line-height: 1.3;
}

.mega-menu__item-desc {
  font-size: 0.7rem;
  color: #A899AD;
  line-height: 1.4;
  margin-top: 2px;
  display: block;
}

.mega-menu__item-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #AC13F9;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.85rem;
}

.mega-menu__item:hover .mega-menu__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Promo panel */
.mega-menu__promo {
  background: #F5EFE8;
  border: 1px solid rgba(172, 19, 249, 0.12);
  border-left: 4px solid #AC13F9;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.mega-menu__promo::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mega-menu__promo::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mega-menu__promo-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 0.75rem;
}

.mega-menu__promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  font-weight: 300;
  color: #1A0E2E;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.mega-menu__promo-text {
  font-size: 0.75rem;
  color: #6B5B73;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mega-menu__promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #AC13F9;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.mega-menu__promo-cta:hover {
  background: #9B2FD0;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(172, 19, 249, 0.3);
  color: #fff;
}

/* Mega menu bottom bar */
.mega-menu__bottom {
  border-top: 1px solid #f0f0f4;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.mega-menu__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mega-menu__bottom-link {
  font-size: 0.73rem;
  font-weight: 500;
  color: #8A7B8F;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.mega-menu__bottom-link:hover {
  color: #AC13F9;
}

.mega-menu__bottom-cta {
  font-size: 0.73rem;
  font-weight: 600;
  color: #AC13F9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.mega-menu__bottom-cta:hover {
  color: #882BC4;
}

/* Compact mega menu (About) */
.mega-menu__inner--compact {
  grid-template-columns: 1fr 1fr 280px;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.nav__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 301;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1A0E2E;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger__line:nth-child(2) {
  width: 65%;
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f0f0f4;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0EBE3;
  color: #1A0E2E;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.mobile-menu__close:hover {
  background: rgba(172, 19, 249, 0.15);
  color: #AC13F9;
}

.mobile-menu__nav {
  flex: 1;
  padding: 1.5rem 2rem;
}

.mobile-menu__links li {
  border-bottom: 1px solid #f5f5f7;
}

.mobile-menu__links li:last-child {
  border-bottom: none;
}

.mobile-menu__links a {
  display: block;
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: #1A0E2E;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__links a:hover {
  color: #AC13F9;
  padding-left: 0.5rem;
}

.mobile-menu__footer {
  padding: 2rem;
  border-top: 1px solid #f0f0f4;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #5A4660;
  text-decoration: none;
}

.mobile-menu__contact-item:hover {
  color: #AC13F9;
}

/* ==========================================================================
   CONTENT AREA
   ========================================================================== */
.site-main {
  padding-top: 0;
  margin-bottom: 0;
}

.test-section {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 2rem;
}

.test-section h1 {
  font-size: clamp(2.8rem, 2rem + 3.5vw, 4.5rem);
  margin-bottom: 1rem;
}

.test-section p {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  color: #8A7B8F;
  line-height: 1.7;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(172, 19, 249, 0.12);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 2rem;
}

.test-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #AC13F9;
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(10px, -20px);
    opacity: 1;
  }
}

/* Scroll reveal — GPU-accelerated */
.reveal {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* ── Section Shared ────────────────────────────────────────────── */
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(172, 19, 249, 0.1);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.section__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section__desc {
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  color: #8A7B8F;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #F5EFE8;
  padding: clamp(6rem, 5rem + 3vw, 8rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  overflow: hidden;
  contain: layout style;
}

/* ── Aurora blobs ─────────────────────────────────────────────── */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.hero__aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.12), transparent 70%);
  top: -150px;
  right: -100px;
  animation-duration: 14s;
}

.hero__aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 113, 209, 0.12), transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-duration: 18s;
  animation-delay: -4s;
}

.hero__aurora-blob--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.07), transparent 70%);
  top: 40%;
  left: 40%;
  opacity: 0.5;
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(172, 19, 249, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(172, 19, 249, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: #AC13F9;
  border-radius: 50%;
  animation: float 6s ease-in-out var(--delay) infinite;
}

/* ── Layout ────────────────────────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 2rem + 5vw, 7rem);
}

/* ── Left content ──────────────────────────────────────────────── */
.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(172, 19, 249, 0.1);
  border: 1px solid rgba(172, 19, 249, 0.25);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A0BB8;
  margin-bottom: 1.75rem;
  animation: fadeIn 1s ease 0.2s both;
}

.hero__title {
  font-size: clamp(3rem, 2rem + 4vw, 5.75rem);
  font-weight: 300;
  color: #1A0E2E;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  animation: fadeIn 1s ease 0.4s both;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #AC13F9 20%, #e0c48a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated divider line */
.hero__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #AC13F9, #e0c48a);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: expand 1s ease 0.6s both;
}

@keyframes expand {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  color: rgba(80, 50, 110, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease 0.6s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease 0.8s both;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.78rem;
}

.hero__actions .btn--outline {
  color: #1A0E2E;
  border-color: rgba(26, 14, 46, 0.2);
}

.hero__actions .btn--outline:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.08);
}

/* ── Stats row ─────────────────────────────────────────────────── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  animation: fadeIn 1s ease 1s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1A0E2E;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(80, 50, 110, 0.5);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(172, 19, 249, 0.25);
  flex-shrink: 0;
}

/* ── Right visual panel ─────────────────────────────────────────── */
/* ── Right: Model image ─────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 560px;
  animation: fadeIn 1.2s ease 0.5s both;
}

/* ── Background lighting glows (behind the model) ─────────────── */
.hero__model-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero__model-glow--purple {
  width: 380px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(172, 19, 249, 0.22), transparent 70%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse-glow 5s ease-in-out infinite alternate;
}

.hero__model-glow--gold {
  width: 220px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(224, 196, 138, 0.12), transparent 70%);
  bottom: 10%;
  right: 5%;
  animation: pulse-glow 7s ease-in-out 2s infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.7; transform: translateX(-50%) scale(0.95); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

/* ── Model container with bottom fade ─────────────────────────── */
.hero__model {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero__model-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* Bottom fade — blends into the light hero background */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

/* Floating treatment badges */
.hero__visual-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(172, 19, 249, 0.2);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1A0E2E;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 28px rgba(172, 19, 249, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 5;
}

.hero__visual-badge--1 {
  top: 18%;
  left: -8%;
  animation: float 5s ease-in-out 0.5s infinite;
}

.hero__visual-badge--2 {
  top: 38%;
  right: -8%;
  animation: float 6s ease-in-out 1.5s infinite;
}

.hero__visual-badge--3 {
  bottom: 28%;
  left: -6%;
  animation: float 7s ease-in-out 1s infinite;
}

/* ── Scroll indicator ──────────────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scroll-fade 1.5s ease-in-out 2s forwards;
  opacity: 0;
  z-index: 5;
}

@keyframes scroll-fade {
  to { opacity: 1; }
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(172, 19, 249, 0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: #AC13F9;
  border-radius: 2px;
  margin-top: 6px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.hero__scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(122, 11, 184, 0.6);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { text-align: center; }
  .hero__divider { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { height: 380px; order: -1; }
  .hero__model-img { height: 380px; }
  .hero__visual-badge--1 { left: 0; top: 10%; }
  .hero__visual-badge--2 { right: 0; top: 35%; }
  .hero__visual-badge--3 { left: 0; bottom: 22%; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FAF7F4;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #AC13F9, #D06AF5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__thumb {
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-card__thumb img {
  transform: scale(1.06);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.85rem;
  color: #8A7B8F;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #AC13F9;
  letter-spacing: 0.03em;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card:hover .service-card__link {
  gap: 0.5rem;
}

/* ==========================================================================
   TRUST TICKER
   ========================================================================== */
.trust-ticker {
  background: #EDE7DF;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.trust-ticker__track {
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-ticker__items {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.trust-ticker__item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A5C6E;
  flex-shrink: 0;
  padding: 0 1.5rem;
  position: relative;
}

/* Gold dot separator between items */
.trust-ticker__item::after {
  content: '✦';
  position: absolute;
  right: -0.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  -webkit-text-fill-color: rgba(172, 19, 249, 0.35);
}

.trust-ticker__item:last-child::after {
  display: none;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES CAROUSEL
   ========================================================================== */
.carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1rem;
  perspective: 1200px;
}

.carousel__track {
  position: relative;
  height: 480px;
  transform-style: preserve-3d;
}

.carousel__slide {
  position: absolute;
  width: calc(33.333% - 1rem);
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.75) rotateY(0deg);
  filter: blur(3px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotateY(0deg);
  filter: blur(0);
  z-index: 5;
  pointer-events: auto;
}

.carousel__slide.is-prev {
  opacity: 0.7;
  transform: translateX(calc(-50% - 105%)) scale(0.88) rotateY(-8deg);
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.carousel__slide.is-next {
  opacity: 0.7;
  transform: translateX(calc(-50% + 105%)) scale(0.88) rotateY(8deg);
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.carousel__slide.is-far-prev {
  opacity: 0.25;
  transform: translateX(calc(-50% - 200%)) scale(0.75) rotateY(-15deg);
  filter: blur(2px);
  z-index: 1;
}

.carousel__slide.is-far-next {
  opacity: 0.25;
  transform: translateX(calc(-50% + 200%)) scale(0.75) rotateY(15deg);
  filter: blur(2px);
  z-index: 1;
}

.carousel-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.3s ease, border-color 0.4s ease;
  position: relative;
}

.carousel-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #AC13F9, #D06AF5, #AC13F9);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.carousel__slide.is-active .carousel-card {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(172, 19, 249, 0.08);
  border-color: rgba(172, 19, 249, 0.15);
}

.carousel__slide.is-active .carousel-card::after {
  opacity: 1;
}

.carousel-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.carousel__slide.is-active .carousel-card__image img {
  transform: scale(1.02);
}

.carousel-card:hover .carousel-card__image img {
  transform: scale(1.08);
}

.carousel-card__placeholder {
  width: 100%;
  height: 100%;
  background: #F0EBE3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(172, 19, 249, 0.12) 0%, transparent 60%);
}

.carousel-card__placeholder span {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
}

.carousel-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.carousel-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.carousel-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1A0E2E;
}

.carousel-card__text {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.carousel-card__price {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #AC13F9;
  margin-bottom: 1rem;
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.68rem;
}

/* Carousel Navigation */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  position: relative;
}

.carousel__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 19, 249, 0.2), transparent);
}

.carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1A0E2E;
  flex-shrink: 0;
}

.carousel__arrow:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  box-shadow: 0 4px 20px rgba(172, 19, 249, 0.2);
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  /* Expand invisible touch target to 44x44px without changing visual size */
}

.carousel__dot::before {
  content: '';
  position: absolute;
  inset: -18px;
}

.carousel__dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.carousel__dot.is-active,
.carousel__dot[aria-selected="true"] {
  width: 32px;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  box-shadow: 0 2px 8px rgba(172, 19, 249, 0.3);
}

/* ==========================================================================
   YOUR JOURNEY (How It Works)
   ========================================================================== */
.journey-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FAF7F4;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.journey-step {
  text-align: center;
  padding: 2.25rem 1.5rem;
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.journey-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #AC13F9, #D06AF5);
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(172, 19, 249, 0.15);
}

.journey-step:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.journey-step__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #AC13F9;
  margin-bottom: 0.75rem;
}

.journey-step__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: rgba(172, 19, 249, 0.08);
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.journey-step:hover .journey-step__icon {
  background: rgba(172, 19, 249, 0.15);
  transform: translateY(-3px);
}

.journey-step__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.journey-step__text {
  font-size: 0.8rem;
  color: #8A7B8F;
  line-height: 1.6;
}

.journey-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.5rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-step {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRODUCT SHOWCASE
   ========================================================================== */
.product-showcase {
  position: relative;
  background: #FFFFFF;
  padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-showcase__glow {
  position: absolute;
  top: 50%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.08) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.product-showcase__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: center;
}

.product-showcase__content {
  order: 1;
}

.product-showcase__visual {
  order: 2;
}

.product-showcase__text {
  font-size: 0.95rem;
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-showcase__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.product-showcase__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-showcase__feature-icon {
  font-size: 1.1rem;
}

.product-showcase__feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(60, 30, 90, 0.75);
}

.product-showcase__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Outline light button variant */
.btn--outline-light {
  border-color: rgba(26, 14, 46, 0.2);
  color: #1A0E2E;
}

.btn--outline-light:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.06);
}

/* Product Visual */
.product-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase__ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(172, 19, 249, 0.15);
  animation: productRingSpin 20s linear infinite;
}

.product-showcase__ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #AC13F9;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(172, 19, 249, 0.6);
}

@keyframes productRingSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.product-showcase__image {
  width: 280px;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(172, 19, 249, 0.15));
  animation: productFloat 4s ease-in-out infinite;
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.product-showcase__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: badgeBounce 3s ease-in-out infinite;
}

.product-showcase__badge--1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.product-showcase__badge--2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.product-showcase__badge-icon {
  font-size: 1rem;
}

.product-showcase__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1A0E2E;
  white-space: nowrap;
}

/* ==========================================================================
   SUPPLEMENTS (FULLSCRIPT)
   ========================================================================== */
.supplements {
  padding: clamp(5rem, 4rem + 4vw, 8rem) 0;
  background: #FAF7F4;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.supplements__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 6rem);
  align-items: center;
}

.supplements__text {
  font-size: 0.95rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.supplements__cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.supplements__discount {
  font-size: 0.75rem;
  font-weight: 600;
  color: #AC13F9;
  padding: 0.4rem 0.85rem;
  background: rgba(172, 19, 249, 0.1);
  border-radius: 8px;
}

.supplements__partnership {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f4;
  width: fit-content;
}

.supplements__partner-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A0E2E;
}

.supplements__partner-x {
  font-size: 0.75rem;
  color: #AC13F9;
  font-weight: 300;
}

.supplements__partner-powered {
  font-size: 0.68rem;
  color: #A899AD;
  font-weight: 500;
}

.supplements__partner-brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d6a4f;
  letter-spacing: -0.01em;
}

.supplements__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.supplement-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid #AC13F9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supplement-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.supplement-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.supplement-feature__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1A0E2E;
}

.supplement-feature__text {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.5;
}

/* ==========================================================================
   CLIENT PORTAL
   ========================================================================== */
.client-portal {
  position: relative;
  background: #FFFFFF;
  padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
  margin-top: 0;
  overflow: hidden;
}

.client-portal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: center;
}

.client-portal__phone {
  order: 2;
}

.client-portal__content {
  order: 1;
}

/* Phone Visual */
.client-portal__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-portal__phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-portal__phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
}

.client-portal__phone-img {
  width: 300px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  75% {
    transform: translateY(6px) rotate(-0.5deg);
  }
}

/* Content */
.client-portal__text {
  font-size: 0.95rem;
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.client-portal__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.client-portal__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(60, 30, 90, 0.8);
}

.client-portal__feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-us {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FFFFFF;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: center;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.why-us__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-us__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(172, 19, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-us__feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.25rem;
}

.why-us__feature-text {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.5;
}

.why-us__content .section__label,
.why-us__content .section__title,
.why-us__content .section__desc {
  text-align: left;
}

/* Visual side with stats */
.why-us__visual {
  position: relative;
  min-height: 420px;
}

.why-us__image-placeholder {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  background: #F0EBE3;
  position: relative;
  overflow: hidden;
}

.why-us__image-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(172, 19, 249, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(172, 19, 249, 0.08) 0%, transparent 50%);
}

.why-us__stat-card {
  position: absolute;
  background: #F5EFE8;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  z-index: 2;
  text-align: center;
  min-width: 140px;
}

.why-us__stat-card--1 {
  top: 2rem;
  left: -1.5rem;
}

.why-us__stat-card--2 {
  bottom: 4rem;
  right: -1rem;
}

.why-us__stat-card--3 {
  bottom: -0.5rem;
  left: 2rem;
}

.why-us__stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.4rem);
  font-weight: 600;
  color: #AC13F9;
  line-height: 1.1;
}

.why-us__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A7B8F;
  margin-top: 0.25rem;
  display: block;
}

/* ==========================================================================
   TESTIMONIALS — Split Layout
   ========================================================================== */
.testimonials-split {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FAF7F4;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-split__layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}

.testimonials-split__visual {
  position: relative;
}

.testimonials-split__img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.testimonials-split__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.testimonials-split__badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(172, 19, 249, 0.15);
  white-space: nowrap;
  z-index: 2;
}

.testimonials-split__badge-stars {
  color: #F5C542;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonials-split__badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1A0E2E;
}

.testimonials-split__content .section__title,
.testimonials-split__content .section__label,
.testimonials-split__content .section__desc {
  text-align: left;
  margin-left: 0;
}

.testimonials-split__content .section__label {
  display: block;
}

.testimonials-split__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-card-v2 {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.testimonial-card-v2::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(172, 19, 249, 0.08);
  pointer-events: none;
}

.testimonial-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-color: rgba(172, 19, 249, 0.12);
}

.testimonial-card-v2__stars {
  color: #F5C542;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-card-v2__text {
  font-size: 0.88rem;
  color: #2A1832;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card-v2__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1A0E2E;
}

.testimonial-card-v2__via {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8A7B8F;
}

.testimonial-card-v2__via svg {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .testimonials-split__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-split__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-split__content .section__title,
  .testimonials-split__content .section__label,
  .testimonials-split__content .section__desc {
    text-align: center;
  }
}

/* ==========================================================================
   LATEST BLOG POSTS (Homepage)
   ========================================================================== */
.latest-posts {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.latest-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.latest-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.latest-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(172, 19, 249, 0.2);
}

.latest-post-card__img {
  height: 180px;
  overflow: hidden;
}

.latest-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-post-card:hover .latest-post-card__img img {
  transform: scale(1.05);
}

.latest-post-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6E0D6, #e8e0d4);
  font-size: 2.5rem;
}

.latest-post-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-post-card__date {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 0.5rem;
}

.latest-post-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A0E2E;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.latest-post-card__excerpt {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
  flex: 1;
}

.latest-post-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #AC13F9;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .latest-posts__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REFER A FRIEND
   ========================================================================== */
.refer-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #E6E0D6;
}

.refer-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  border: 1px solid rgba(172, 19, 249, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.refer-card__content {
  flex: 1;
}

.refer-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.refer-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 400;
  color: #1A0E2E;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.refer-card__text {
  font-size: 0.9rem;
  color: #8A7B8F;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.refer-card__text strong {
  color: #AC13F9;
  font-weight: 700;
}

.refer-card__visual {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.refer-card__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.refer-card__circle--1 {
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
}

.refer-card__circle--2 {
  background: rgba(172, 19, 249, 0.1);
  color: #AC13F9;
  border: 2px dashed rgba(172, 19, 249, 0.4);
}

.refer-card__plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: #AC13F9;
}

@media (max-width: 768px) {
  .refer-card {
    flex-direction: column;
    text-align: center;
  }

  .refer-card__visual {
    justify-content: center;
  }
}

/* ==========================================================================
   FAQ SECTION (Wrapper)
   ========================================================================== */
.faq-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: clamp(4rem, 3rem + 4vw, 6rem) 0;
  background: #F0EBE3;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 19, 249, 0.3), transparent);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-section__label {
  display: inline-flex;
  padding: 0.4rem 1.25rem;
  background: rgba(172, 19, 249, 0.12);
  border: 1px solid rgba(172, 19, 249, 0.2);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 1.5rem;
}

.cta-section__title {
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  font-weight: 300;
  color: #1A0E2E;
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-section__urgency {
  font-size: 0.8rem;
  font-weight: 600;
  color: #AC13F9;
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
/* NOTE: Testimonial-card styles are defined above (line ~2410). Do not duplicate here. */


.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section__actions .btn--outline {
  color: #1A0E2E;
  border-color: rgba(26, 14, 46, 0.25);
}

.cta-section__actions .btn--outline:hover {
  border-color: #AC13F9;
  color: #AC13F9;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 6rem + 3vw, 9rem) 0 4rem;
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
  position: relative;
  overflow: hidden;
}

.error-404__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.error-404__particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(172, 19, 249, 0.3);
  animation: error-float 6s ease-in-out var(--delay) infinite;
}

@keyframes error-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; }
}

.error-404__content {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out;
}

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

.error-404__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.error-404__digit {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 4rem + 5vw, 9rem);
  font-weight: 300;
  color: rgba(172, 19, 249, 0.15);
  line-height: 1;
}

.error-404__glow {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  color: #AC13F9;
  animation: glow-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(172, 19, 249, 0.4));
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.error-404__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 500;
  color: #1A0E2E;
  margin-bottom: 1rem;
}

.error-404__text {
  font-size: 0.92rem;
  color: #6B5B73;
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.error-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.error-404__links {
  width: 100%;
}

.error-404__links-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(172, 19, 249, 0.5);
  display: block;
  margin-bottom: 1rem;
}

.error-404__links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.error-404__links-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.6);
  text-decoration: none;
  padding: 1rem 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(172, 19, 249, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.error-404__links-grid a:hover {
  color: #F0EBE3;
  background: rgba(172, 19, 249, 0.08);
  border-color: rgba(172, 19, 249, 0.2);
  transform: translateY(-2px);
}

.error-404__link-icon {
  font-size: 1.3rem;
}

.error-404__search {
  margin-top: 2rem;
  text-align: center;
}

.error-404__search-text {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
  margin-bottom: 0.75rem;
}

.error-404__search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.error-404__search-input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(250, 248, 245, 0.12);
  border-radius: 10px;
  color: #F0EBE3;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.error-404__search-input::placeholder {
  color: rgba(250, 248, 245, 0.3);
}

.error-404__search-input:focus {
  border-color: #AC13F9;
}

.error-404__search-btn {
  padding: 0.7rem 1.5rem;
}

/* ==========================================================================
   SEARCH RESULTS
   ========================================================================== */
.search-results {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  background: #F0EBE3;
}

.search-results__grid {
  display: grid;
  gap: 1.5rem;
}

.search-result-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f4;
  transition: all 0.3s ease;
}

.search-result-card:hover {
  border-color: rgba(172, 19, 249, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.search-result-card__img {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}

.search-result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-card__type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.search-result-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.search-result-card__title a {
  color: #1A0E2E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-result-card__title a:hover {
  color: #AC13F9;
}

.search-result-card__excerpt {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.search-result-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #AC13F9;
  text-decoration: none;
}

@media (max-width: 640px) {
  .search-result-card {
    flex-direction: column;
  }

  .search-result-card__img {
    width: 100%;
    height: 160px;
  }
}

/* ==========================================================================
   GENERIC PAGE CONTENT
   ========================================================================== */
.page-content__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 2rem + 3vw, 5rem) 1.5rem;
}

.page-content__thumbnail {
  margin-bottom: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
}

.page-content__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content__body {
  font-size: 1rem;
  line-height: 1.9;
  color: #3a3a50;
}

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #1A0E2E;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content__body p {
  margin-bottom: 1.25rem;
}

.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-content__body ul,
.page-content__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-content__body li {
  margin-bottom: 0.5rem;
  color: #5A4660;
}

/* ==========================================================================
   ENHANCED BUTTON ANIMATIONS
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary:active {
  transform: scale(0.97);
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(172, 19, 249, 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(172, 19, 249, 0.4);
}

/* Active nav link */
.nav__link.is-active,
.nav__item--active > .nav__link {
  color: #AC13F9 !important;
}

.nav__link.is-active::after,
.nav__item--active > .nav__link::after {
  width: 100% !important;
  opacity: 1 !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #141422;
  color: rgba(250, 248, 245, 0.7);
}

.footer__top {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.footer__brand-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.5);
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 245, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 245, 0.5);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.08);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F0EBE3;
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.65rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #AC13F9;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer__contact-item a {
  color: rgba(250, 248, 245, 0.5);
}

.footer__contact-item a:hover {
  color: #AC13F9;
}

/* ── Newsletter ────────────────────────────────────────────── */
.footer__newsletter {
  border-top: 1px solid rgba(172, 19, 249, 0.1);
  padding: 2.5rem 0;
}

.footer__newsletter .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #F0EBE3;
  margin-bottom: 0.25rem;
}

.newsletter__desc {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
}

.newsletter__form {
  flex: 1;
  max-width: 420px;
}

.newsletter__input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter__input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(250, 248, 245, 0.12);
  border-radius: 10px;
  color: #F0EBE3;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: rgba(250, 248, 245, 0.35);
}

.newsletter__input:focus {
  outline: none;
  border-color: #AC13F9;
}

.newsletter__btn {
  white-space: nowrap;
  padding: 0.7rem 1.5rem;
}

.newsletter__privacy {
  font-size: 0.65rem;
  color: rgba(250, 248, 245, 0.3);
  margin-top: 0.5rem;
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(172, 19, 249, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__text strong {
  color: #F0EBE3;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: linear-gradient(135deg, #d4b87a, #AC13F9);
}

.cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 248, 245, 0.6);
  border: 1px solid rgba(250, 248, 245, 0.1);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(250, 248, 245, 0.3);
  color: #F0EBE3;
}

.footer__bottom {
  border-top: 1px solid rgba(250, 248, 245, 0.06);
  padding: 1.5rem 0;
}

.footer__bottom .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.35);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #AC13F9;
}

/* Page content */
.page-content {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
  padding: clamp(3.5rem, 3rem + 2vw, 5rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(172, 19, 249, 0.1);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  color: #1A0E2E;
  font-weight: 300;
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem);
  color: #6B5B73;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

/* Form */
.contact-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-form__subtitle {
  font-size: 0.88rem;
  color: #8A7B8F;
  margin-bottom: 2rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #1A0E2E;
  background: #F0EBE3;
  border: 1.5px solid #e8e8ed;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #b0b0c0;
}

.form-input:focus {
  border-color: #AC13F9;
  box-shadow: 0 0 0 3px rgba(172, 19, 249, 0.1);
}

/* Inline validation */
.form-input:not(:placeholder-shown):valid {
  border-color: rgba(45, 106, 79, 0.4);
}

.form-input:not(:placeholder-shown):invalid:not(:focus) {
  border-color: rgba(196, 78, 78, 0.4);
}

/* Form submission success */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.contact-form__success.is-visible {
  display: block;
  animation: fade-in 0.5s ease;
}

.contact-form__success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-form__success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.contact-form__success-text {
  font-size: 0.85rem;
  color: #8A7B8F;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a7a90' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Contact Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(172, 19, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AC13F9;
  margin-bottom: 1rem;
}

.contact-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A0E2E;
  margin-bottom: 0.4rem;
}

.contact-card__text {
  font-size: 0.88rem;
  color: #5A4660;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-card__text:hover {
  color: #AC13F9;
}

.contact-card__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card__hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #5A4660;
}

.contact-social {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 14px;
}

.contact-social__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7B8F;
  margin-bottom: 1rem;
}

.contact-social__links {
  display: flex;
  gap: 0.75rem;
}


/* ==========================================================================
   CONTACT MAP
   ========================================================================== */
.contact-map {
  padding: 0 0 clamp(3rem, 2rem + 3vw, 5rem);
  background: #F0EBE3;
}

.contact-map__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  border-radius: 16px;
  overflow: hidden;
}

.contact-map__wrap iframe {
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   BLOG POST
   ========================================================================== */
.post-content__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem) clamp(1.25rem, 1rem + 2vw, 3rem);
}

.post-content__thumbnail {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.post-content__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content__body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  line-height: 1.8;
  color: #2A1832;
}

.post-content__body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin: 2.5rem 0 1rem;
}

.post-content__body h3 {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  margin: 2rem 0 0.75rem;
}

.post-content__body p {
  margin-bottom: 1.5rem;
}

.post-content__body img {
  border-radius: 12px;
  margin: 2rem 0;
}

.post-content__body blockquote {
  border-left: 3px solid #AC13F9;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(172, 19, 249, 0.05);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #5A4660;
}

.post-content__body ul,
.post-content__body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: revert;
}

.post-content__body li {
  margin-bottom: 0.5rem;
}

.post-content__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(172, 19, 249, 0.1);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #AC13F9;
  margin-right: 0.5rem;
}

/* Blog listing (index.php) — Archive Grid */
.blog-archive {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

/* ── Category Filters ─────────────────────────────────────── */
.blog-filters {
  padding: 1.5rem 0 0;
  background: #F0EBE3;
}

.blog-filters__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #f0f0f4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8A7B8F;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-filter-btn:hover {
  color: #1A0E2E;
  background: #E6E0D6;
}

.blog-filter-btn.is-active {
  background: linear-gradient(135deg, #AC13F9 0%, #9B2FD0 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(172, 19, 249, 0.25);
}

/* ── Blog Grid ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.1);
  border-color: rgba(172, 19, 249, 0.15);
}

/* ── Hero Card (first post) ───────────────────────────────── */
.blog-card--hero {
  grid-column: 1 / -1;
  flex-direction: row;
  border-radius: 1.5rem;
}

.blog-card--hero .blog-card__img {
  width: 50%;
  min-height: 340px;
  flex-shrink: 0;
}

.blog-card--hero .blog-card__body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  justify-content: center;
}

.blog-card--hero .blog-card__title {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
}

.blog-card--hero .blog-card__excerpt {
  font-size: 0.95rem;
  max-width: 520px;
}

/* ── Card Image ───────────────────────────────────────────── */
.blog-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}

.blog-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6E0D6, #e8e0d4);
  font-size: 2.5rem;
  height: 100%;
}

/* ── Card Body ────────────────────────────────────────────── */
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-card__cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.1);
  padding: 3px 10px;
  border-radius: 9999px;
}

.blog-card__date {
  font-size: 0.72rem;
  color: #A899AD;
  font-weight: 500;
}

.blog-card__read-time {
  font-size: 0.72rem;
  color: #b5b0c8;
  font-weight: 500;
}

.blog-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 400;
  color: #1A0E2E;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: #8A7B8F;
  line-height: 1.65;
  flex: 1;
}

.blog-card__read {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #AC13F9;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__read {
  transform: translateX(4px);
}

/* ── Pagination ───────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog-pagination ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
}

.blog-pagination li {
  display: inline-flex;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5A4660;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #f0f0f4;
  background: #fff;
  transition: all 0.3s ease;
}

.blog-pagination a:hover {
  border-color: #AC13F9;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.04);
}

.blog-pagination .current {
  background: linear-gradient(135deg, #AC13F9 0%, #9B2FD0 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(172, 19, 249, 0.25);
}

.blog-pagination .prev,
.blog-pagination .next {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ── Empty State ──────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 2rem;
}

.blog-empty__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
}

.blog-empty__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 300;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.blog-empty__text {
  font-size: 0.95rem;
  color: #8A7B8F;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ── Blog Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blog-card--hero {
    flex-direction: column;
  }

  .blog-card--hero .blog-card__img {
    width: 100%;
    min-height: 220px;
  }

  .blog-card--hero .blog-card__body {
    padding: 1.5rem;
  }

  .blog-filters__bar {
    border-radius: 1rem;
    padding: 0.5rem;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-filters__bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-filters__bar::-webkit-scrollbar {
    display: none;
  }
}

/* ==========================================================================
   SINGLE SERVICE
   ========================================================================== */
.services-archive {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

/* ==========================================================================
   SINGLE SERVICE PAGE
   ========================================================================== */

/* ── Service Hero ──────────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
  padding: clamp(5rem, 4rem + 5vw, 9rem) 0 clamp(3rem, 2.5rem + 3vw, 5rem);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  text-align: center;
}

.service-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 1.7rem + 2.5vw, 3.8rem);
  font-weight: 300;
  color: #1A0E2E;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.service-hero__desc {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem);
  color: #6B5B73;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.service-hero .section__label {
  color: #AC13F9;
}

/* Price & Duration badges */
.service-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.service-hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(172, 19, 249, 0.15);
  border-radius: 12px;
  padding: 1rem 2rem;
  min-width: 140px;
}

.service-hero__meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7B8F;
}

.service-hero__meta-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #AC13F9;
}

.service-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero__actions .btn--outline {
  color: #1A0E2E;
  border-color: rgba(26, 14, 46, 0.2);
}

.service-hero__actions .btn--outline:hover {
  color: #AC13F9;
  border-color: #AC13F9;
}

/* ── Featured Image ────────────────────────────────────────────── */
.service-featured-img {
  padding: clamp(2rem, 1.5rem + 2vw, 3rem) 0 0;
}

.service-featured-img__wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
  max-width: 960px;
  margin: 0 auto;
}

.service-featured-img__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Service Content (from WP Editor) ──────────────────────────── */
.service-content {
  padding: clamp(3rem, 2.5rem + 3vw, 5rem) 0;
}

.service-content__body {
  max-width: 800px;
  margin: 0 auto;
}

.service-content__body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.2rem);
  font-weight: 400;
  color: #1A0E2E;
  margin: 3rem 0 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f4;
  line-height: 1.25;
}

.service-content__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.service-content__body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  font-weight: 400;
  color: #1A0E2E;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.service-content__body p {
  font-size: 0.95rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-content__body img {
  border-radius: 16px;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}

.service-content__body ul,
.service-content__body ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.service-content__body ul {
  list-style: none;
  padding-left: 0;
}

.service-content__body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: #5A4660;
  line-height: 1.7;
}

.service-content__body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #AC13F9;
  font-size: 0.7rem;
  top: 0.35rem;
}

.service-content__body ol li {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: #5A4660;
  line-height: 1.7;
}

.service-content__body blockquote {
  border-left: 3px solid #AC13F9;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: rgba(172, 19, 249, 0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.service-content__body blockquote p {
  color: #1A0E2E;
  margin-bottom: 0;
}

.service-content__body strong {
  color: #1A0E2E;
  font-weight: 600;
}

/* ── Why People Choose Livia (Static) ──────────────────────────── */
.service-why-us {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #fff;
}

.service-why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-why-us__card {
  background: #F0EBE3;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-why-us__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #AC13F9, #D06AF5);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-why-us__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(172, 19, 249, 0.2);
}

.service-why-us__card:hover::before {
  transform: scaleX(1);
}

.service-why-us__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-why-us__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  font-weight: 400;
  color: #1A0E2E;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-why-us__card-text {
  font-size: 0.85rem;
  color: #5A4660;
  line-height: 1.7;
}

/* ==========================================================================
   RELATED SERVICES
   ========================================================================== */
.related-services {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #E6E0D6;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .related-services__grid {
    grid-template-columns: 1fr;
  }
}

/* Keep old service card meta for archive pages */
.service-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f4;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #AC13F9;
}

.service-card__duration {
  font-size: 0.78rem;
  color: #8A7B8F;
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: center;
}

.about-text {
  font-size: 0.95rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-image-placeholder {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F3EEF9, #EDE6F7);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(172, 19, 249, 0.15) 0%, transparent 60%);
}

.about-image-text {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 14, 46, 0.3);
}

/* Stats Bar */
.stats-bar {
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0;
  background: linear-gradient(135deg, #F3EEF9 0%, #EDE6F7 100%);
  border-top: 1px solid rgba(172, 19, 249, 0.08);
  border-bottom: 1px solid rgba(172, 19, 249, 0.08);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 600;
  color: #AC13F9;
  line-height: 1.1;
}

.stats-bar__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7B8F;
  margin-top: 0.35rem;
}

/* Team Preview */
.team-preview {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-card__image {
  margin-bottom: 1.25rem;
}

.team-card__placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto;
}

.team-card__placeholder--lg {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  font-size: 2rem;
  margin: 0;
}

.team-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.78rem;
  color: #AC13F9;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
}

/* Values */
.values-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.value-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #AC13F9;
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.products-showcase {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(180deg, #F0EBE3 0%, #f0ece6 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Product Card ──────────────────────────────────────────────── */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(172, 19, 249, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1),
              0 8px 30px rgba(172, 19, 249, 0.08);
}

/* ── Video Background ──────────────────────────────────────────── */
.product-card__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}

.product-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: grayscale(50%) blur(1px);
  transition: opacity 0.5s ease;
}

.product-card:hover .product-card__video {
  opacity: 0.1;
}

.product-card--has-video .product-card__inner {
  position: relative;
  z-index: 1;
}

/* ── Card Inner ────────────────────────────────────────────────── */
.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Product Image ─────────────────────────────────────────────── */
.product-card__image {
  position: relative;
  background: linear-gradient(160deg, #F3EEF9 0%, #EDE6F7 60%, #E8DFF5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}

/* Shimmer loading effect for product images */
@keyframes shimmer-load {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.product-card__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(172, 19, 249, 0.1), transparent);
  pointer-events: none;
  z-index: 1;
}

.product-card__image::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -25%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(172, 19, 249, 0.3);
  background: transparent;
}

/* ── Product Content ───────────────────────────────────────────── */
.product-card__content {
  padding: clamp(1.5rem, 1rem + 1vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.product-card__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 1rem + 1vw, 2rem);
  right: clamp(1.5rem, 1rem + 1vw, 2rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 19, 249, 0.3), transparent);
}

.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  font-weight: 500;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.product-card__price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #AC13F9;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.product-card__desc {
  font-size: 0.85rem;
  color: #5A4660;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__desc p {
  margin-bottom: 0.5rem;
}

.product-card__desc p:last-child {
  margin-bottom: 0;
}

.product-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.65rem 1.5rem;
  margin-top: auto;
}

.product-card__btn svg {
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__btn svg {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   CLIENT PORTAL SECTION
   ========================================================================== */
.portal-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  background: linear-gradient(180deg, #F0EBE3 0%, #f0ece6 100%);
}

.portal-section__card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem);
  border: 1px solid rgba(172, 19, 249, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease;
}

.portal-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.portal-section__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(172, 19, 249, 0.12), rgba(172, 19, 249, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #AC13F9;
}

.portal-section__title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 500;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.portal-section__text {
  font-size: 0.88rem;
  color: #8A7B8F;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   TEAM FULL PAGE
   ========================================================================== */
.team-full {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(180deg, #F0EBE3 0%, #E6E0D6 100%);
}

.team-full__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
}

/* ── Team Member Card ──────────────────────────────────────────── */
.team-member {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(172, 19, 249, 0.1);
  transition: box-shadow 0.5s ease, transform 0.4s ease;
}

.team-member:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 8px 30px rgba(172, 19, 249, 0.1);
  transform: translateY(-6px);
}

.team-member--reverse {
  direction: rtl;
}

.team-member--reverse > * {
  direction: ltr;
}

/* ── Photo Area — colored background for cutouts ───────────────── */
.team-member__image {
  position: relative;
  background: linear-gradient(160deg, #F3EEF9 0%, #EDE6F7 60%, #E8DFF5 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
}

.team-member__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(172, 19, 249, 0.12), transparent);
  pointer-events: none;
  z-index: 1;
}

.team-member__image::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 19, 249, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold corner accent */
.team-member__image img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.team-member:hover .team-member__image img {
  transform: scale(1.03);
}

.team-member__image .team-card__placeholder--lg {
  width: 100%;
  height: 100%;
  border-radius: 0;
  font-size: 4rem;
  background: transparent;
  color: rgba(172, 19, 249, 0.25);
  font-weight: 300;
  letter-spacing: 0.2em;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Info Area ─────────────────────────────────────────────────── */
.team-member__info {
  padding: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.team-member__info::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 4px;
  height: 80px;
  background: linear-gradient(to bottom, #AC13F9, rgba(172, 19, 249, 0.1));
  border-radius: 2px;
}

.team-member--reverse .team-member__info::before {
  left: auto;
  right: 0;
}

.team-member__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: #1A0E2E;
  line-height: 1.2;
}

.team-member__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #AC13F9;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

/* ── Credential Badges ─────────────────────────────────────────── */
.team-member__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.team-member__badge {
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #AC13F9, #F471D1);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.85);
  letter-spacing: 0.03em;
}

/* ── Bio Area ──────────────────────────────────────────────────── */
.team-member__bio {
  font-size: 0.92rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(172, 19, 249, 0.15);
}

.team-member__bio p {
  margin-bottom: 0.75rem;
}

.team-member__bio p:last-child {
  margin-bottom: 0;
}

/* ── Specialty Tags ────────────────────────────────────────────── */
.team-member__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f4;
}

.team-member__specialty {
  padding: 0.4rem 1rem;
  background: rgba(172, 19, 249, 0.08);
  border: 1px solid rgba(172, 19, 249, 0.15);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #AC13F9;
  transition: all 0.2s ease;
}

.team-member__specialty:hover {
  background: rgba(172, 19, 249, 0.15);
  transform: translateY(-1px);
}

/* ==========================================================================
   MISSION PAGE
   ========================================================================== */
.mission-content {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.mission-statement {
  text-align: center;
  padding: clamp(2rem, 1.5rem + 2vw, 4rem) 0;
  margin-bottom: 3rem;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #1A0E2E;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  border: none;
  padding: 0;
  background: none;
}

.mission-quote__author {
  display: block;
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #AC13F9;
  letter-spacing: 0.05em;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.mission-pillar {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-pillar:hover {
  transform: translateY(-3px);
}

.mission-pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mission-pillar__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mission-pillar__text {
  font-size: 0.85rem;
  color: #8A7B8F;
  line-height: 1.7;
}

.mission-vision {
  padding: 3rem 0;
  max-width: 800px;
}

/* ==========================================================================
   VALUES FULL PAGE
   ========================================================================== */
.values-full {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.values-detailed {
  max-width: 800px;
  margin: 0 auto;
}

.value-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f4;
}

.value-detail:last-child {
  border-bottom: none;
}

.value-detail__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #AC13F9;
  line-height: 1;
}

.value-detail__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value-detail__text {
  font-size: 0.92rem;
  color: #5A4660;
  line-height: 1.8;
}

/* ==========================================================================
   CAREERS PAGE
   ========================================================================== */
.careers-why {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.careers-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.careers-perk {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.careers-perk:hover {
  transform: translateY(-3px);
}

.careers-perk__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.careers-perk__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.careers-perk__text {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
}

.careers-positions {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.position-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.position-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.position-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.position-card__tag {
  padding: 0.25rem 0.65rem;
  background: rgba(172, 19, 249, 0.08);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #5A4660;
}

.position-card__desc {
  font-size: 0.85rem;
  color: #8A7B8F;
  line-height: 1.5;
}

.generic-page {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

/* ==========================================================================
   BEFORE & AFTER GALLERY
   ========================================================================== */
.gallery-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  padding: 0.55rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8A7B8F;
  background: #fff;
  border: 1.5px solid #e8e8ed;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  border-color: #AC13F9;
  color: #AC13F9;
}

.gallery-filter.is-active {
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

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

.gallery-card__before,
.gallery-card__after {
  position: relative;
}

.gallery-card__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(26, 26, 46, 0.7);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 2;
}

.gallery-card__label--after {
  background: rgba(172, 19, 249, 0.85);
}

.gallery-card__placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0d4, #d5cdc1);
  font-size: 0.75rem;
  font-weight: 600;
  color: #9e9490;
  letter-spacing: 0.05em;
}

.gallery-card__placeholder--after {
  background: linear-gradient(135deg, #d4dde8, #c1c9d5);
  color: #8a929e;
}

.gallery-card__info {
  padding: 1.25rem 1.5rem;
}

.gallery-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gallery-card__desc {
  font-size: 0.8rem;
  color: #8A7B8F;
  line-height: 1.5;
}

.gallery-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-disclaimer p {
  font-size: 0.75rem;
  color: #A899AD;
  font-style: italic;
}

/* ==========================================================================
   BLOG SINGLE
   ========================================================================== */
.page-hero--blog {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 50%, #EDE6F7 100%);
}

/* Blog Section (Homepage) */
.blog-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Blog Archive */
.blog-archive {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Single Post Wrapper */
.post-content {
  background: #fff;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__img--placeholder {
  height: 200px;
  background: linear-gradient(135deg, #F0EBE3, #f0f0f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card__date {
  font-size: 0.72rem;
  color: #A899AD;
}

.blog-card__cat {
  font-size: 0.65rem;
  font-weight: 600;
  color: #AC13F9;
  background: rgba(172, 19, 249, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A0E2E;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.82rem;
  color: #8A7B8F;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__read {
  font-size: 0.78rem;
  font-weight: 600;
  color: #AC13F9;
}

.blog-card__read-time {
  font-size: 0.7rem;
  color: #A899AD;
  margin-left: auto;
}

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
  pointer-events: none;
}

.reading-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #AC13F9, #d4b87a, #AC13F9);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  will-change: width;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: 1rem 0;
  background: linear-gradient(180deg, #E6E0D6 0%, #F0EBE3 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 0.78rem;
  color: #A899AD;
}

.breadcrumbs__item a {
  color: #8A7B8F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__item a:hover {
  color: #AC13F9;
}

.breadcrumbs__sep {
  margin: 0 0.5rem;
  color: #AC13F9;
  font-size: 0.85rem;
}

.breadcrumbs__item--current {
  color: #1A0E2E;
  font-weight: 600;
}

/* ==========================================================================
   SOCIAL PROOF NOTIFICATION
   ========================================================================== */
.social-proof {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(172, 19, 249, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 320px;
}

.social-proof.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.social-proof__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-proof__content {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.85);
  line-height: 1.4;
}

.social-proof__content strong {
  color: #AC13F9;
}

.social-proof__content strong:first-child {
  color: #F0EBE3;
}

.social-proof__time {
  display: block;
  font-size: 0.65rem;
  color: rgba(250, 248, 245, 0.4);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .social-proof {
    display: none;
  }
}

/* ==========================================================================
   FLOATING MOBILE CTA
   ========================================================================== */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(172, 19, 249, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float-up 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  @keyframes float-up {
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .floating-cta__btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 9999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .floating-cta__btn--book {
    background: linear-gradient(135deg, #AC13F9, #9B2FD0);
    color: #fff;
  }

  .floating-cta__btn--book:hover {
    background: linear-gradient(135deg, #d4b87a, #AC13F9);
  }

  .floating-cta__btn--call {
    background: rgba(255, 255, 255, 0.08);
    color: #F0EBE3;
    border: 1px solid rgba(250, 248, 245, 0.15);
  }

  .floating-cta__btn--call:hover {
    border-color: #AC13F9;
    color: #AC13F9;
  }
}

/* Pagination */
.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}

.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: #5A4660;
  border: 1px solid #f0f0f4;
  transition: all 0.3s ease;
}

.blog-pagination .page-numbers li .current {
  background: #AC13F9;
  color: #fff;
  border-color: #AC13F9;
}

.blog-pagination .page-numbers li a:hover {
  background: #F0EBE3;
}

/* Empty Blog */
.blog-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.blog-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.blog-empty__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.blog-empty__text {
  font-size: 0.9rem;
  color: #8A7B8F;
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.post-meta-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.post-meta-line__date,
.post-meta-line__cat,
.post-meta-line__read {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.55);
}

.post-meta-line__cat a {
  color: #AC13F9;
  text-decoration: none;
}

.post-meta-line__sep {
  color: rgba(250, 248, 245, 0.2);
}

/* Author Bar */
.post-author-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #F0EBE3;
  border-radius: 14px;
  margin: 2.5rem 0;
  border: 1px solid #f0f0f4;
}

.post-author-bar__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-bar__info {
  flex: 1;
}

.post-author-bar__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #A899AD;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-author-bar__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
}

.post-author-bar__share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-author-bar__share-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #A899AD;
}

.post-share-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8e6e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1A0E2E;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.post-share-link:hover {
  background: #AC13F9;
  color: #fff;
}

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #f0f0f4;
}

.related-posts__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 1.5rem;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-post-card {
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0f0f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.related-post-card__img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.related-post-card__body {
  padding: 1rem;
}

.related-post-card__date {
  font-size: 0.7rem;
  color: #A899AD;
}

.related-post-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ==========================================================================
   MEMBERSHIPS PAGE
   ========================================================================== */
.page-hero--memberships {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
}

.membership-how {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #F0EBE3;
  border-radius: 18px;
  border: 1px solid #f0f0f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.membership-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.membership-step__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.membership-step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(172, 19, 249, 0.2);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
}

.membership-step__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.membership-step__text {
  font-size: 0.8rem;
  color: #8A7B8F;
  line-height: 1.6;
}

/* Why Beauty Bank */
.membership-why {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(160deg, #FAF7F4 0%, #F3EEF9 50%, #EDE6F7 100%);
  border-top: 1px solid rgba(172, 19, 249, 0.08);
}

.membership-why .section__title {
  color: #1A0E2E;
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-benefit {
  padding: 2.5rem 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(172, 19, 249, 0.12);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.membership-benefit:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(172, 19, 249, 0.1);
}

.membership-benefit__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(172, 19, 249, 0.15), rgba(172, 19, 249, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.membership-benefit__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.membership-benefit__text {
  font-size: 0.82rem;
  color: #6B5B73;
  line-height: 1.7;
}

/* Rewards Programs */
.membership-rewards {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.reward-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reward-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.reward-card--featured {
  border-color: #AC13F9;
  box-shadow: 0 8px 30px rgba(172, 19, 249, 0.1);
  position: relative;
}

.reward-card--featured::before {
  content: '★ Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reward-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 0.75rem;
}

.reward-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.reward-card__text {
  font-size: 0.82rem;
  color: #5A4660;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.reward-card__perks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.reward-card__perk {
  font-size: 0.78rem;
  font-weight: 500;
  color: #2d6a4f;
}

.reward-card__downloads {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ==========================================================================
   PARTIES PAGE
   ========================================================================== */
.page-hero--parties {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
}

.party-types {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.party-block {
  margin-bottom: 4rem;
}

.party-block__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.party-block__emoji {
  font-size: 2.5rem;
}

.party-block__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

.party-block__grid--reverse {
  grid-template-columns: 1.2fr 0.8fr;
  direction: rtl;
}

.party-block__grid--reverse>* {
  direction: ltr;
}

.party-block__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.8rem);
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 1rem;
}

.party-block__text {
  font-size: 0.92rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.party-block__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.party-feature-card {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid #AC13F9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.party-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.party-feature-card__icon {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.party-feature-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.3rem;
}

.party-feature-card__text {
  font-size: 0.8rem;
  color: #8A7B8F;
  line-height: 1.6;
}

/* Video */
.party-block__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #F3EEF9;
}

.party-block__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.party-block__image-placeholder {
  width: 100%;
  min-height: 350px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F3EEF9, #EDE6F7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.party-block__image-placeholder span {
  font-size: 3rem;
}

.party-block__image-placeholder p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
}

/* Divider */
.party-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.party-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0ddd8, transparent);
}

.party-divider__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #A899AD;
}

/* How It Works */
.party-how-it-works {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #F0EBE3;
}

.party-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.party-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.party-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.party-step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #AC13F9;
  margin-bottom: 0.75rem;
}

.party-step__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.party-step__text {
  font-size: 0.8rem;
  color: #8A7B8F;
  line-height: 1.6;
}

.party-step__arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 1.25rem;
  color: #AC13F9;
  font-weight: 300;
}

/* FAQ */
.party-faq {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(172, 19, 249, 0.2);
  transform: translateY(-1px);
}

.faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-color: rgba(172, 19, 249, 0.3);
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A0E2E;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: #AC13F9;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p {
  font-size: 0.85rem;
  color: #5A4660;
  line-height: 1.7;
}

/* ==========================================================================
   MISSION & VALUES PAGE
   ========================================================================== */
.mission-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

/* Mission Statement Quote */
.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.mission-statement__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #1A0E2E;
  position: relative;
  padding: 2rem 0;
}

.mission-statement__quote::before,
.mission-statement__quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #AC13F9, transparent);
}

.mission-statement__quote::before {
  top: 0;
}

.mission-statement__quote::after {
  bottom: 0;
}

.mission-statement__author {
  display: block;
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AC13F9;
}

/* Mission Pillars */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mission-pillar {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #AC13F9, #D06AF5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mission-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(172, 19, 249, 0.2);
}

.mission-pillar:hover::before {
  opacity: 1;
}

.mission-pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-pillar__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  font-weight: 400;
  color: #1A0E2E;
  margin-bottom: 1rem;
}

.mission-pillar__text {
  font-size: 0.85rem;
  color: #5A4660;
  line-height: 1.7;
}

/* Section Divider */
.section-divider {
  padding: 0;
}

.section-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 19, 249, 0.25), transparent);
}

/* Values Full Page Styles */
.values-full {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.values-detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.value-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f4;
  align-items: start;
}

.value-detail:last-child {
  border-bottom: none;
}

.value-detail__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: #AC13F9;
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.2rem;
}

.value-detail__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.65rem);
  font-weight: 400;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.value-detail__text {
  font-size: 0.88rem;
  color: #5A4660;
  line-height: 1.75;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .site-header__nav {
    display: none;
  }

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

  .nav__cta-desktop {
    display: none;
  }

  .header__divider {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .mega-menu {
    display: none !important;
  }

  .announcement-bar__close {
    right: 0.75rem;
  }

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

  .carousel__slide {
    width: calc(45% - 0.75rem);
  }

  .carousel__track {
    height: 420px;
  }

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

  .membership-benefits {
    grid-template-columns: 1fr;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .party-block__grid,
  .party-block__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .party-steps {
    flex-wrap: wrap;
  }

  .party-step {
    flex: 1 1 calc(50% - 1rem);
  }

  .party-step__arrow {
    display: none;
  }

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

  .why-us__visual {
    min-height: 340px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .single-service__grid {
    grid-template-columns: 1fr;
  }

  .product-showcase__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-showcase__features {
    align-items: center;
  }

  .product-showcase__actions {
    justify-content: center;
  }

  .product-showcase__ring {
    width: 300px;
    height: 300px;
  }

  .product-showcase__image {
    width: 220px;
  }

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

  .client-portal__layout {
    grid-template-columns: 1fr;
  }

  .client-portal__phone-img {
    width: 240px;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .team-member {
    grid-template-columns: 1fr;
  }

  .team-member--reverse {
    direction: ltr;
  }

  .team-member__image {
    min-height: 320px;
  }

  .team-member__info::before {
    display: none;
  }

  .team-card__placeholder--lg {
    height: 250px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem;
  }

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

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

  .position-card {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .announcement-bar__text {
    font-size: 0.65rem;
  }

  .announcement-bar__cta {
    display: none;
  }

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

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

  .carousel__slide {
    width: calc(80% - 0.75rem);
  }

  .carousel__track {
    height: 400px;
  }

  .carousel__slide.is-far-prev,
  .carousel__slide.is-far-next {
    opacity: 0;
  }

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

  .hero__title {
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .cta-section__actions .btn {
    width: 100%;
  }

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

  .footer__bottom .footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

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

  .newsletter__form {
    max-width: 100%;
    width: 100%;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .why-us__stat-card--1 {
    left: 0;
  }

  .why-us__stat-card--2 {
    right: 0;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

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

  .value-detail {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

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

  .portal-section__card {
    padding: 2rem 1.5rem;
  }

  .announcement-bar {
    display: none;
  }
}

/* WP Admin bar — handled dynamically via JS */

/* ==========================================================================
   PERFORMANCE: Reduce motion for users who prefer it
   ========================================================================== */
@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__particle {
    display: none;
  }

  .product-showcase__ring {
    animation: none;
  }

  .product-showcase__image {
    animation: none;
  }

  .product-showcase__badge {
    animation: none;
  }

  .client-portal__phone-img {
    animation: none;
  }
}

/* ==========================================================================
   PERFORMANCE: Print styles
   ========================================================================== */
@media print {

  .site-header,
  .announcement-bar,
  .scroll-top,
  .mobile-menu,
  .mega-menu,
  .hero__particles,
  .product-showcase__glow,
  .client-portal__bg-glow,
  .floating-cta,
  .cookie-banner,
  .social-proof {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .site-main {
    padding-top: 0 !important;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }
}

/* ==========================================================================
   FINANCING / PAYMENT PLANS
   ========================================================================== */
.cherry-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #F0EBE3;
}

.cherry-widget-wrap {
  margin-top: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Override Cherry widget font to match theme */
.cherry-widget-wrap * {
  font-family: 'DM Sans', 'Open Sans', sans-serif !important;
}

.financing-why {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #E6E0D6;
}

.financing-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.financing-benefit {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.financing-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 26, 46, 0.08);
}

.financing-benefit__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.financing-benefit__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A0E2E;
  margin-bottom: 0.5rem;
}

.financing-benefit__text {
  font-size: 0.85rem;
  color: #8A7B8F;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .financing-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .financing-benefits {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MEMBERSHIP TIERS — LIVIA Luxe Cards
   ========================================================================== */
.membership-tiers {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #F0EBE3;
}

/* Tier cards grid */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}

/* ── Individual Card ──────────────────────────────────────── */
.tier-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12);
}

/* ── Card Image ───────────────────────────────────────────── */
.tier-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tier-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tier-card:hover .tier-card__image img {
  transform: scale(1.05);
}

.tier-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 46, 0.5) 100%);
  pointer-events: none;
}

.tier-card__tier-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Card Body ────────────────────────────────────────────── */
.tier-card__body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tier-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.85rem);
  font-weight: 300;
  color: #1A0E2E;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.tier-card__name em {
  font-style: italic;
  color: #AC13F9;
}

.tier-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tier-card__price {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.8rem);
  font-weight: 700;
  color: #1A0E2E;
  line-height: 1;
}

.tier-card__currency {
  font-size: 0.55em;
  font-weight: 600;
  color: #AC13F9;
  vertical-align: super;
  margin-right: 1px;
}

.tier-card__cents {
  font-size: 0.4em;
  font-weight: 600;
  color: #8A7B8F;
  vertical-align: super;
}

.tier-card__period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #A899AD;
  font-weight: 500;
}

/* ── Perks List ───────────────────────────────────────────── */
.tier-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tier-card__perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #5A4660;
  line-height: 1.5;
}

.tier-card__perk strong {
  color: #1A0E2E;
  font-weight: 700;
}

.tier-card__perk small {
  font-size: 0.78em;
  color: #A899AD;
}

.tier-card__perk-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(172, 19, 249, 0.12);
  color: #AC13F9;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ── CTA Button ───────────────────────────────────────────── */
.tier-card__btn {
  width: 100%;
  margin-top: 2rem;
}

/* ── Featured Card (Signature) ────────────────────────────── */
.tier-card--featured {
  border: 2px solid #AC13F9;
  box-shadow: 0 8px 40px rgba(172, 19, 249, 0.18);
  transform: scale(1.03);
  z-index: 2;
}

.tier-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 24px 64px rgba(172, 19, 249, 0.25);
}

.tier-card__popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #AC13F9 0%, #9B2FD0 100%);
  padding: 8px 24px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(172, 19, 249, 0.3);
}

/* ── Prestige Card styling ────────────────────────────────── */
.tier-card--prestige .tier-card__image-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(26, 26, 46, 0.65) 100%);
}

.tier-card__btn--prestige {
  border-color: #AC13F9;
  color: #AC13F9;
}

.tier-card__btn--prestige:hover {
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.membership-compare {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #E6E0D6;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.25rem;
  margin-top: 0.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  min-width: 540px;
}

.compare-table thead {
  background: linear-gradient(135deg, #AC13F9 0%, #C955F0 100%);
}

.compare-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.compare-table th:first-child {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.compare-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  color: #5A4660;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1A0E2E;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(172, 19, 249, 0.03);
}

/* Featured column highlight */
.compare-table__featured {
  background: rgba(172, 19, 249, 0.06);
  position: relative;
}

.compare-table thead .compare-table__featured {
  background: rgba(172, 19, 249, 0.15);
  color: #AC13F9;
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(172, 19, 249, 0.12);
  color: #AC13F9;
  font-size: 0.7rem;
  font-weight: 700;
}

.compare-dash {
  color: #d4d4de;
  font-size: 1.1rem;
}

/* ── Tier Cards Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .tier-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .tier-card--featured {
    transform: none;
    order: -1;
  }

  .tier-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 600px) {
  .tier-card__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.85rem 1rem;
  }
}

/* ==========================================================================
   AI PREVIEW — Ageless Before/After Transformation
   ========================================================================== */
.ai-preview {
  width: 100%;
  padding: clamp(5rem, 10vw, 8.75rem) 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-preview::before,
.ai-preview::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ai-preview::before {
  width: 500px;
  height: 500px;
  background: rgba(172, 19, 249, 0.08);
  top: -100px;
  right: -100px;
}

.ai-preview::after {
  width: 400px;
  height: 400px;
  background: rgba(146, 17, 212, 0.06);
  bottom: -80px;
  left: -80px;
}

.ai-preview__inner {
  position: relative;
  z-index: 1;
}

/* Two-column layout */
.ai-preview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ai-preview__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.ai-preview__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* ── Header ────────────────────────────────────────────────── */
.ai-preview__header {
  text-align: left;
  margin-bottom: 2rem;
}

.ai-preview__desc {
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  line-height: 1.8;
  color: #8A7B8F;
  margin-top: 1.25rem;
}

.ai-preview__desc em {
  font-style: italic;
  color: #AC13F9;
}

/* ── Carousel ──────────────────────────────────────────────── */
.ai-preview__carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.ai-preview__stage {
  overflow: hidden;
  border-radius: 1.5rem;
}

.ai-preview__track {
  display: flex;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.ai-preview__slide {
  flex: 0 0 100%;
  width: 100%;
}

/* ── Card ──────────────────────────────────────────────────── */
.ai-preview__card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 26, 46, 0.08);
}

/* ── Slider Image Area ─────────────────────────────────────── */
.ai-preview__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ai-preview__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ai-preview__img--after {
  clip-path: inset(0 100% 0 0);
}

/* Labels */
.ai-preview__label {
  position: absolute;
  bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  pointer-events: none;
}

.ai-preview__label--before {
  left: 12px;
  background: rgba(26, 26, 46, 0.6);
  color: rgba(255, 255, 255, 0.9);
}

.ai-preview__label--after {
  right: 12px;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  color: #fff;
}

/* Scan divider line */
.ai-preview__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 12px rgba(172, 19, 249, 0.5),
              0 0 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/* ── Card Footer ───────────────────────────────────────────── */
.ai-preview__card-footer {
  padding: 1.15rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-preview__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 2px;
}

.ai-preview__treatment {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* AI badge */
.ai-preview__badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b5a89e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-preview__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  flex-shrink: 0;
  animation: aiPulse 1.8s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* ── Dots ───────────────────────────────────────────────────── */
.ai-preview__dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 1.25rem;
}

.ai-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(26, 26, 46, 0.15);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease;
  border: none;
  padding: 0;
}

.ai-preview__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #AC13F9, #9B2FD0);
}

/* ── CTA ───────────────────────────────────────────────────── */
.ai-preview__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ai-preview__cta-text {
  font-size: 0.95rem;
  color: #8A7B8F;
  text-align: left;
  max-width: 440px;
  line-height: 1.7;
}

.ai-preview__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #b5a89e;
  font-weight: 500;
}

.ai-preview__trust svg {
  stroke: #b5a89e;
  flex-shrink: 0;
}

/* ── Powered-By Badge ──────────────────────────────────────── */
.ai-preview__powered {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b5a89e;
}

.ai-preview__powered-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AC13F9, #9B2FD0);
  display: inline-block;
}

/* ── AI Preview Responsive ─────────────────────────────────── */
@media (max-width: 860px) {
  .ai-preview__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ai-preview__left,
  .ai-preview__right {
    display: contents;
  }

  .ai-preview__header { order: 1; text-align: center; margin-bottom: 0; }
  .ai-preview__carousel { order: 2; margin: 0 auto; }
  .ai-preview__cta { order: 3; align-items: center; margin-top: 1rem; }
  .ai-preview__powered { order: 4; justify-content: center; }

  .ai-preview__dots { justify-content: center; }
  .ai-preview__cta-text { text-align: center; }
}

@media (max-width: 600px) {
  .ai-preview { padding: 4rem 0; }
  .ai-preview__stage { border-radius: 1.25rem; }
  .ai-preview__card { border-radius: 1.25rem; }
  .ai-preview__cta .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   ========================================================================== */
.legal-page {
  padding: clamp(3rem, 2rem + 4vw, 6rem) 0 clamp(4rem, 3rem + 4vw, 7rem);
  background: #F0EBE3;
}

.legal-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
}

.legal-page__intro {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid #AC13F9;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.legal-page__intro p {
  font-size: 0.95rem;
  color: #4A3B54;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-page__intro p:last-child { margin-bottom: 0; }

.legal-page__toc {
  background: linear-gradient(135deg, #FAF7F4, #F3EEF9);
  border: 1px solid rgba(172, 19, 249, 0.12);
  border-left: 4px solid #AC13F9;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.legal-page__toc h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AC13F9;
  margin-bottom: 1.25rem;
}

.legal-page__toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.legal-page__toc ol li {
  font-size: 0.82rem;
  color: #6B5B73;
  line-height: 1.5;
}

.legal-page__toc ol li a {
  color: #4A3560;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-page__toc ol li a:hover { color: #AC13F9; }

.legal-page__summary {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.legal-page__summary h2 {
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.7rem);
  color: #1A0E2E;
  margin-bottom: 1rem;
}

.legal-page__summary p {
  font-size: 0.9rem;
  color: #6B5B73;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page__summary ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-page__summary ul li {
  font-size: 0.88rem;
  color: #4A3B54;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.legal-page__summary ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #AC13F9;
  font-weight: 700;
}

/* Legal body sections */
.legal-page__body section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(172, 19, 249, 0.1);
}

.legal-page__body section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-page__body h2 {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
  color: #1A0E2E;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(172, 19, 249, 0.15);
}

.legal-page__body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin: 1.5rem 0 0.5rem;
}

.legal-page__body p {
  font-size: 0.9rem;
  color: #4A3B54;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-page__body ul,
.legal-page__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page__body ul { list-style: disc; }
.legal-page__body ol { list-style: decimal; }

.legal-page__body li {
  font-size: 0.88rem;
  color: #4A3B54;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-page__body a {
  color: #AC13F9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__body a:hover { color: #9B2FD0; }

/* Legal table */
.legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: #fff;
}

.legal-table th {
  background: linear-gradient(135deg, #AC13F9, #C955F0);
  color: #FFFFFF;
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f4;
  color: #4A3B54;
  line-height: 1.5;
  vertical-align: top;
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #faf9fc; }
.legal-table__yes { color: #AC13F9; font-weight: 700; text-align: center; }

/* Address block */
.legal-address {
  font-style: normal;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: #4A3B54;
  line-height: 1.8;
  display: inline-block;
  border-left: 3px solid #AC13F9;
  margin-top: 0.5rem;
}

/* Blockquote */
.legal-quote {
  background: rgba(172, 19, 249, 0.05);
  border-left: 3px solid #AC13F9;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: #4A3B54;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-page__toc ol { grid-template-columns: 1fr; }
  .legal-page__intro,
  .legal-page__toc,
  .legal-page__summary { padding: 1.5rem; }
}

/* ==========================================================================
   CANCELLATION POLICY PAGE
   ========================================================================== */

/* Alert notice at top */
.cancellation-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2d0a0a, #3d1010) !important;
  border-left-color: #e53e3e !important;
  color: #fed7d7;
}

.cancellation-notice svg {
  flex-shrink: 0;
  color: #fc8181;
}

.cancellation-notice p {
  color: #fed7d7 !important;
  font-size: 1rem !important;
  margin: 0 !important;
  letter-spacing: 0.02em;
}

/* Policy cards grid */
.cancellation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.cancellation-card {
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid transparent;
}

.cancellation-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.cancellation-card__body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: inherit;
  margin: 0 0 0.35rem;
}

.cancellation-card__body p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 !important;
  color: inherit;
  opacity: 0.85;
}

/* Warn — 50% */
.cancellation-card--warn {
  background: #fff8e1;
  border-color: #f6d860;
  color: #7a5c00;
}

/* Danger — 100% / No-show */
.cancellation-card--danger {
  background: #fff0f0;
  border-color: #fc8181;
  color: #7a0000;
}

/* Info — Repeat / Prepay */
.cancellation-card--info {
  background: #f3f0ff;
  border-color: #ac13f9;
  color: #4a0080;
}

@media (max-width: 768px) {
  .cancellation-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REFUND POLICY PAGE
   ========================================================================== */
.refund-policy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.refund-policy-card {
  background: #fff0f0;
  border: 1px solid #fc8181;
  border-radius: 14px;
  padding: 1.5rem;
  color: #7a0000;
}

.refund-policy-card--positive {
  background: #f0fff4;
  border-color: #68d391;
  color: #1a4731;
}

.refund-policy-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.refund-policy-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}

.refund-policy-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 !important;
  color: inherit;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .refund-policy-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BEAUTY BANK PAGE
   ========================================================================== */
.beauty-bank-hero {
  background: linear-gradient(135deg, #FAF7F4 0%, #F3EEF9 60%, #EDE6F7 100%);
}

.beauty-bank-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.beauty-bank-how {
  background: #F0EBE3;
}

/* Steps */
.beauty-bank-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.beauty-bank-step {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beauty-bank-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(172, 19, 249, 0.1);
}

.beauty-bank-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, #AC13F9, #F471D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.beauty-bank-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.beauty-bank-step p {
  font-size: 0.88rem;
  color: #6B5B73;
  line-height: 1.6;
}

/* Benefits */
.beauty-bank-benefits {
  background: linear-gradient(180deg, #FAF7F4 0%, #F3EEF9 100%);
  border-top: 1px solid rgba(172, 19, 249, 0.08);
}

.beauty-bank-benefits .section__label { color: #AC13F9; }
.beauty-bank-benefits .section__title { color: #1A0E2E; }

.beauty-bank-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.beauty-bank-benefit {
  background: #FFFFFF;
  border: 1px solid rgba(172, 19, 249, 0.12);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.beauty-bank-benefit:hover {
  background: #FFFFFF;
  border-color: rgba(172, 19, 249, 0.35);
  box-shadow: 0 8px 30px rgba(172, 19, 249, 0.1);
}

.beauty-bank-benefit__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}

.beauty-bank-benefit h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.6rem;
}

.beauty-bank-benefit p {
  font-size: 0.85rem;
  color: #6B5B73;
  line-height: 1.6;
}

/* Policy Cards */
.beauty-bank-policy {
  background: #F0EBE3;
}

.beauty-bank-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.beauty-bank-policy-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-top: 3px solid #AC13F9;
  transition: transform 0.3s ease;
}

.beauty-bank-policy-card:hover {
  transform: translateY(-3px);
}

.beauty-bank-policy-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.beauty-bank-policy-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A0E2E;
  margin-bottom: 0.75rem;
}

.beauty-bank-policy-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.beauty-bank-policy-card li {
  font-size: 0.84rem;
  color: #5A4660;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.beauty-bank-policy-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #AC13F9;
  font-weight: 700;
}

@media (max-width: 960px) {
  .beauty-bank-steps,
  .beauty-bank-benefit-grid { grid-template-columns: 1fr 1fr; }
  .beauty-bank-policy-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .beauty-bank-steps,
  .beauty-bank-benefit-grid,
  .beauty-bank-policy-grid { grid-template-columns: 1fr; }
}