/*
Theme Name: GlamStudio
Theme URI: https://glamstudio.example.com
Author: GlamStudio
Author URI: https://glamstudio.example.com
Description: A luxury, feminine WordPress theme for makeup artists and beauty studios. Fully Elementor-compatible with WhatsApp booking integration. Replace screenshot.png with a 1200x900 theme preview image.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glamstudio
Tags: beauty, makeup, one-column, custom-menu, featured-images, theme-options, translation-ready, elementor

GlamStudio — Beauty Redefined
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --blush: #F7D9D0;
  --rose: #8B1E3F;
  --rose-dark: #6B1530;
  --gold: #D4AF37;
  --gold-light: #E8C96A;
  --cream: #FFF8F3;
  --cream-dark: #F5EDE6;
  --charcoal: #2E2A28;
  --charcoal-soft: #5A5450;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --shadow-soft: 0 4px 20px rgba(46, 42, 40, 0.08);
  --shadow-hover: 0 8px 30px rgba(139, 30, 63, 0.15);
  --shadow-luxe: 0 30px 60px -20px rgba(183, 110, 121, 0.25), 0 8px 20px -12px rgba(44, 44, 44, 0.15);
  --shadow-glow: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 20px 45px -18px rgba(201, 162, 39, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: var(--font-serif);
  --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --transition: 0.3s ease;
  --header-height: 80px;
  --container: 1140px;
  /* Maison Belle / luxe tokens */
  --ivory: #fbf8f4;
  --nude: #e8d9cc;
  --rose-gold: #b76e79;
  --luxe-blush: #f6ebe8;
  --luxe-charcoal: #2c2c2c;
  --luxe-gold: #c9a227;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--rose);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--charcoal-soft);
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--cream-dark);
}

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 24px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--rose);
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn-rose:hover {
  background: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ivory) 90%, transparent);
  background: rgba(251, 248, 244, 0.9);
  border-bottom: 1px solid color-mix(in oklab, var(--nude) 60%, transparent);
  border-bottom: 1px solid rgba(232, 217, 204, 0.6);
  box-shadow: 0 10px 40px -25px rgba(44, 44, 44, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.5s ease;
}

/* Keep fixed header below the WP admin bar when logged in */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Elementor-managed header/footer wrappers */
.site-header--elementor {
  padding: 0;
}

.site-header--elementor .elementor {
  width: 100%;
}

.site-footer--elementor {
  padding: 0;
  background: transparent;
}

body.has-elementor-header {
  padding-top: 0;
}

/* Fixed frosted luxe header (matches design) */
body.has-elementor-header .site-header--elementor,
body.has-elementor-header .site-header--elementor.site-header--luxe {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ivory) 90%, transparent);
  background: rgba(251, 248, 244, 0.9);
  border-bottom: 1px solid color-mix(in oklab, var(--nude) 60%, transparent);
  border-bottom: 1px solid rgba(232, 217, 204, 0.6);
  box-shadow: 0 10px 40px -25px rgba(44, 44, 44, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.5s ease;
}

body.admin-bar.has-elementor-header .site-header--elementor {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar.has-elementor-header .site-header--elementor {
    top: 46px;
  }
}

/* Slightly stronger glass when scrolled */
body.has-elementor-header .site-header--elementor.is-sticky {
  background: color-mix(in oklab, var(--ivory) 94%, transparent);
  background: rgba(251, 248, 244, 0.94);
  box-shadow: 0 10px 40px -20px rgba(44, 44, 44, 0.3);
}

/* ==========================================================================
   Luxe Header (Elementor-editable HTML structure)
   ========================================================================== */
.bg-gradient-luxe,
.luxe-header .bg-gradient-luxe {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
}

.text-gradient-luxe {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-ivory { color: var(--ivory); }
.text-charcoal { color: var(--luxe-charcoal); }
.text-rose-gold { color: var(--rose-gold); }

.shadow-luxe {
  box-shadow: var(--shadow-luxe);
}

.container-luxe {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.luxe-header {
  width: 100%;
}

.luxe-header__bar {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.luxe-header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--luxe-charcoal);
}

.luxe-header__brand--logo {
  gap: 0;
}

.luxe-header__logo,
.site-header--elementor .elementor-widget-image img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .luxe-header__logo,
  .site-header--elementor .elementor-widget-image img {
    height: 3.25rem;
    max-width: 260px;
  }
}

.luxe-header__icon {
  display: grid;
  height: 2.25rem;
  width: 2.25rem;
  place-items: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.luxe-header__brand:hover .luxe-header__icon {
  transform: rotate(12deg);
}

.luxe-header__icon svg {
  width: 1rem;
  height: 1rem;
}

.luxe-header__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  font-weight: 500;
  line-height: 1.2;
}

.luxe-header__name em,
.luxe-header__name .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-header__nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.luxe-header__nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--luxe-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxe-header__nav a:hover,
.luxe-header__nav a.is-active,
.luxe-header__nav a[aria-current="page"] {
  color: var(--rose-gold);
}

.luxe-header__nav a .luxe-nav-line {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  transition: width 0.5s ease;
}

.luxe-header__nav a:hover .luxe-nav-line,
.luxe-header__nav a.is-active .luxe-nav-line,
.luxe-header__nav a[aria-current="page"] .luxe-nav-line {
  width: 100%;
}

.luxe-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory) !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-luxe);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.luxe-header__cta:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: var(--ivory) !important;
}

.luxe-header__toggle {
  display: grid;
  height: 2.75rem;
  width: 2.75rem;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid var(--nude);
  background: rgba(251, 248, 244, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--luxe-charcoal);
  padding: 0;
}

.luxe-header__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.luxe-header__mobile {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.luxe-header__mobile.is-open {
  max-height: 420px;
  opacity: 1;
}

.luxe-header__mobile-inner {
  padding: 0.5rem 0 1.5rem;
  background: rgba(251, 248, 244, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 0 0 1rem 1rem;
}

.luxe-header__mobile-inner a {
  display: block;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--luxe-charcoal);
  text-decoration: none;
  transition: background 0.2s ease;
}

.luxe-header__mobile-inner a:hover,
.luxe-header__mobile-inner a.is-active,
.luxe-header__mobile-inner a[aria-current="page"] {
  background: var(--luxe-blush);
  color: var(--rose-gold);
}

.luxe-header__mobile-inner .luxe-header__cta {
  display: inline-flex;
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
  transform: none;
}

.luxe-header__mobile-inner .luxe-header__cta:hover {
  transform: none;
}

@media (min-width: 1024px) {
  .luxe-header__nav {
    display: flex;
  }

  .luxe-header__cta--desktop {
    display: inline-flex;
  }

  .luxe-header__toggle {
    display: none;
  }

  .luxe-header__mobile {
    display: none !important;
  }
}

/* Elementor section resets for luxe header */
.site-header--elementor .elementor-section.luxe-header-section,
.site-header--elementor .elementor-top-section.luxe-el-header,
.site-header--elementor .luxe-el-header {
  background: transparent !important;
}

/* Keep header content boxed — do NOT stretch full viewport */
.site-header--elementor .luxe-el-header > .elementor-container {
  max-width: 1200px !important;
  margin-inline: auto !important;
  width: 100%;
  align-items: center !important;
  min-height: 72px;
}

.site-header--elementor .elementor-widget-html {
  width: 100%;
}

/* Compact editable header logo */
.site-header--elementor .luxe-el-header-logo .elementor-widget-container,
.site-header--elementor .luxe-el-header-logo img {
  line-height: 0;
}

.site-header--elementor .luxe-el-header-logo img,
.site-header--elementor .elementor-widget-image.luxe-el-header-logo img {
  display: block;
  height: 56px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
}

@media (min-width: 768px) {
  .site-header--elementor .luxe-el-header-logo img,
  .site-header--elementor .elementor-widget-image.luxe-el-header-logo img {
    height: 64px !important;
    max-width: 260px !important;
  }
}

/* Editable nav links */
.luxe-el-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.25rem;
  margin: 0;
}

.luxe-el-header-nav a {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none !important;
  color: var(--luxe-charcoal) !important;
  transition: color 0.25s ease;
}

.luxe-el-header-nav a:hover,
.luxe-el-header-nav a[aria-current="page"] {
  color: var(--rose-gold) !important;
}

.luxe-el-header-nav-wrap .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

.luxe-el-header-nav-wrap .elementor-widget-container > :first-child,
.luxe-el-header-nav-wrap .elementor-widget-container > :last-child {
  margin: 0 !important;
}

.site-header--elementor .luxe-el-header-cta .elementor-button {
  padding: 0.65rem 1.25rem !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
}

.site-header--elementor .luxe-el-header .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.site-header--elementor .luxe-el-header .elementor-element-populated {
  padding: 0 !important;
}

@media (max-width: 1023px) {
  .site-header--elementor .luxe-el-header > .elementor-container {
    flex-wrap: wrap;
    min-height: 0;
    row-gap: 0.5rem;
  }

  .site-header--elementor .luxe-el-header .elementor-column {
    width: auto !important;
  }

  .luxe-el-header-nav {
    gap: 0.15rem 0.85rem;
  }

  .luxe-el-header-nav a {
    font-size: 0.75rem;
  }
}

.luxe-footer__logo,
.luxe-el-footer-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Dark wordmark → light on charcoal footer */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo a {
  text-decoration: none;
  color: var(--charcoal);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1.1;
  display: block;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-menu,
.main-nav .main-nav-fallback,
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.current-menu-item,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--rose);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

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

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
  }

  body.admin-bar .main-nav {
    top: calc(var(--header-height) + 32px);
  }

  .main-nav .nav-menu,
  .main-nav .main-nav-fallback,
  .main-nav > ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-cta .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .header-cta .btn-text-full {
    display: none;
  }

  .header-cta .btn-text-short {
    display: inline;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .main-nav {
    top: calc(var(--header-height) + 46px);
  }
}

@media (min-width: 993px) {
  .header-cta .btn-text-short {
    display: none;
  }
}

body {
  padding-top: var(--header-height);
}

/* ==========================================================================
   Luxe Hero / Banner (Maison Belle style — Elementor HTML)
   ========================================================================== */
.bg-gradient-hero,
.luxe-hero {
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%);
}

.luxe-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 6rem;
}

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

.luxe-hero__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.7;
  animation: luxe-float-slow 8s ease-in-out infinite;
}

.luxe-hero__orb--1 {
  top: -6rem;
  left: -4rem;
  height: 18rem;
  width: 18rem;
  background: var(--luxe-blush);
}

.luxe-hero__orb--2 {
  top: 10rem;
  right: 2.5rem;
  height: 14rem;
  width: 14rem;
  background: var(--nude);
  animation-delay: 1.2s;
}

.luxe-hero__orb--3 {
  bottom: 2.5rem;
  left: 33%;
  height: 10rem;
  width: 10rem;
  background: rgba(201, 162, 39, 0.3);
  animation-delay: 2.4s;
}

@keyframes luxe-float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.luxe-hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3.5rem;
  padding-top: 2.5rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .luxe-hero__grid {
    grid-template-columns: 1.05fr 1fr;
    padding-top: 4rem;
  }
}

.luxe-hero__badge {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(183, 110, 121, 0.3);
  background: rgba(251, 248, 244, 0.6);
  padding: 0.375rem 1rem;
  backdrop-filter: blur(8px);
}

.luxe-hero__badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--luxe-gold);
}

.luxe-hero__badge span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose-gold);
}

.luxe-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-hero__title .italic,
.luxe-hero__title em {
  font-style: italic;
}

.luxe-hero__sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
  font-weight: 400;
}

@media (min-width: 768px) {
  .luxe-hero__sub {
    font-size: 1.125rem;
  }
}

.luxe-hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.luxe-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory) !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-luxe);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.luxe-hero__btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: var(--ivory) !important;
}

.luxe-hero__btn-primary svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.luxe-hero__btn-primary:hover svg {
  transform: translateX(4px);
}

.luxe-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(44, 44, 44, 0.2);
  background: rgba(251, 248, 244, 0.6);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--luxe-charcoal) !important;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.luxe-hero__btn-secondary:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold) !important;
}

.luxe-hero__stats {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.luxe-hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--luxe-charcoal);
  line-height: 1.1;
}

.luxe-hero__stat-num span {
  color: var(--rose-gold);
}

.luxe-hero__stat-label {
  margin-top: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a62;
}

.luxe-hero__divider {
  height: 2.5rem;
  width: 1px;
  background: var(--nude);
}

.luxe-hero__media {
  position: relative;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
}

.luxe-hero__glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  opacity: 0.2;
  filter: blur(40px);
}

.luxe-hero__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-hero__frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.luxe-hero__frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.4), transparent 55%);
  pointer-events: none;
}

.luxe-hero__float {
  position: absolute;
  display: none;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-luxe);
  animation: luxe-float-slow 8s ease-in-out infinite;
}

.luxe-hero__float--rating {
  left: -1.5rem;
  top: 4rem;
}

.luxe-hero__float--cert {
  right: -1rem;
  bottom: 2.5rem;
  animation-delay: 1.5s;
}

.luxe-hero__float-icon {
  display: grid;
  height: 2.25rem;
  width: 2.25rem;
  place-items: center;
  border-radius: 9999px;
  flex-shrink: 0;
}

.luxe-hero__float-icon--gold {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
}

.luxe-hero__float-icon--dark {
  background: var(--luxe-charcoal);
  color: var(--luxe-gold);
}

.luxe-hero__float-icon svg {
  width: 1rem;
  height: 1rem;
}

.luxe-hero__float-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--luxe-charcoal);
  margin: 0;
}

.luxe-hero__float-sub {
  font-size: 10px;
  color: #7a6a62;
  margin: 0;
}

@media (min-width: 768px) {
  .luxe-hero__float {
    display: flex;
  }
}

/* ==========================================================================
   Luxe Why Choose Us
   ========================================================================== */
.divider-gold {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxe-gold), transparent);
}

.bg-gradient-soft {
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%);
}

.luxe-why {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-why__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-why__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-why__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-why__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-why__title em,
.luxe-why__title .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-why__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
}

@media (min-width: 768px) {
  .luxe-why__sub {
    font-size: 1.125rem;
  }
}

.luxe-why__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .luxe-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .luxe-why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxe-why__card {
  position: relative;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(232, 217, 204, 0.7);
  background: #ffffff;
  padding: 2rem;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.luxe-why__card:hover {
  transform: translateY(-0.5rem);
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-glow);
}

.luxe-why__icon {
  margin-bottom: 1.25rem;
  display: grid;
  height: 3.5rem;
  width: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f6ebe8 0%, rgba(232, 217, 204, 0.7) 100%);
  color: var(--rose-gold);
  transition: background 0.4s ease, color 0.4s ease;
}

.luxe-why__card:hover .luxe-why__icon {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
}

.luxe-why__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.luxe-why__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-why__card-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a62;
}

.luxe-why__num {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: rgba(232, 217, 204, 0.7);
  transition: color 0.4s ease;
  line-height: 1;
}

.luxe-why__card:hover .luxe-why__num {
  color: rgba(183, 110, 121, 0.4);
}

/* ==========================================================================
   Luxe Featured Services
   ========================================================================== */
.luxe-svc {
  position: relative;
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-svc__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-svc__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-svc__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-svc__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-svc__heading em,
.luxe-svc__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-svc__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
}

@media (min-width: 768px) {
  .luxe-svc__sub {
    font-size: 1.125rem;
  }
}

.luxe-svc__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .luxe-svc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .luxe-svc__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxe-svc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 10px 40px -25px rgba(44, 44, 44, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.luxe-svc__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 50px -20px rgba(44, 44, 44, 0.28);
}

.luxe-svc__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.luxe-svc__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.luxe-svc__card:hover .luxe-svc__media img {
  transform: scale(1.1);
}

.luxe-svc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0.1) 45%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.luxe-svc__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
}

.luxe-svc__meta {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory);
  font-size: 0.75rem;
}

.luxe-svc__time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.luxe-svc__time svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.luxe-svc__price strong {
  font-weight: 600;
  color: var(--luxe-gold);
}

.luxe-svc__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.luxe-svc__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-svc__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.luxe-svc__btn {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--luxe-charcoal);
  padding-block: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease;
}

.luxe-svc__btn:hover {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
}

.luxe-svc__btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.luxe-svc__footer {
  margin-top: 3.5rem;
  text-align: center;
}

.luxe-svc__explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 44, 44, 0.2);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--luxe-charcoal);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.luxe-svc__explore:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.luxe-svc__explore svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.luxe-svc__explore:hover svg {
  transform: translateX(0.25rem);
}

/* ==========================================================================
   Luxe Before & After
   ========================================================================== */
.luxe-ba {
  padding-block: 6rem;
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%);
}

.luxe-ba__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-ba__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-ba__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-ba__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-ba__heading em,
.luxe-ba__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-ba__layout {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .luxe-ba__layout {
    grid-template-columns: 1fr 320px;
  }
}

.luxe-ba__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-luxe);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.luxe-ba__after,
.luxe-ba__before-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.luxe-ba__after {
  position: absolute;
}

.luxe-ba__before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.luxe-ba__before-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.luxe-ba__label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  pointer-events: none;
}

.luxe-ba__label--before {
  left: 1rem;
  background: rgba(44, 44, 44, 0.8);
}

.luxe-ba__label--after {
  right: 1rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
}

.luxe-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 0;
  pointer-events: none;
}

.luxe-ba__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--ivory);
  box-shadow: var(--shadow-luxe);
}

.luxe-ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 999px;
  background: var(--ivory);
  box-shadow: var(--shadow-luxe);
  transform: translate(-50%, -50%);
  color: var(--rose-gold);
}

.luxe-ba__knob svg {
  width: 1rem;
  height: 1rem;
}

.luxe-ba__knob svg + svg {
  margin-left: -0.25rem;
}

.luxe-ba__side {
  min-width: 0;
}

.luxe-ba__now {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
}

.luxe-ba__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-ba__desc {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a62;
}

.luxe-ba__thumbs {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.luxe-ba__thumb {
  height: 3.5rem;
  width: 3.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid transparent;
  padding: 0;
  background: transparent;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.luxe-ba__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-ba__thumb:hover {
  opacity: 1;
}

.luxe-ba__thumb.is-active {
  border-color: var(--rose-gold);
  opacity: 1;
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Luxe Portfolio / Our Work
   ========================================================================== */
.luxe-work {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-work__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-work__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-work__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-work__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-work__heading em,
.luxe-work__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-work__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
}

@media (min-width: 768px) {
  .luxe-work__sub {
    font-size: 1.125rem;
  }
}

.luxe-work__masonry {
  margin-top: 3.5rem;
  columns: 2;
  column-gap: 1rem;
  column-fill: balance;
}

@media (min-width: 768px) {
  .luxe-work__masonry {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .luxe-work__masonry {
    columns: 4;
  }
}

.luxe-work__item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.luxe-work__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}

.luxe-work__card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.4s ease;
}

.luxe-work__card:hover img {
  transform: scale(1.1);
}

.luxe-work__veil {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.5s ease;
  pointer-events: none;
}

.luxe-work__card:hover .luxe-work__veil {
  background: rgba(44, 44, 44, 0.4);
}

.luxe-work__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.luxe-work__card:hover .luxe-work__zoom {
  opacity: 1;
}

.luxe-work__zoom-icon {
  display: grid;
  height: 3rem;
  width: 3rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.95);
  color: var(--rose-gold);
  box-shadow: var(--shadow-luxe);
}

.luxe-work__zoom-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.luxe-work__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.luxe-work__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxe-work__link:hover {
  color: var(--luxe-gold);
}

/* Simple lightbox for portfolio */
.luxe-lb {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(44, 44, 44, 0.88);
  padding: 1.5rem;
}

.luxe-lb.is-open {
  display: flex;
}

.luxe-lb__img {
  max-width: min(92vw, 960px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-lb__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.95);
  color: var(--luxe-charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Luxe Testimonials (Kind Words)
   ========================================================================== */
.luxe-love {
  position: relative;
  overflow: hidden;
  padding-block: 6rem;
  background: var(--luxe-charcoal);
  color: var(--ivory);
}

.luxe-love__orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
}

.luxe-love__orb--left {
  left: -5rem;
  top: 5rem;
  height: 20rem;
  width: 20rem;
  background: rgba(183, 110, 121, 0.25);
}

.luxe-love__orb--right {
  right: -5rem;
  bottom: 2.5rem;
  height: 24rem;
  width: 24rem;
  background: rgba(201, 162, 39, 0.15);
}

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

.luxe-love__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-love__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--luxe-gold);
}

.luxe-love__heading {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  font-weight: 500;
}

.luxe-love__slider {
  position: relative;
  margin: 3.5rem auto 0;
  max-width: 48rem;
}

.luxe-love__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(1rem);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.luxe-love__slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.luxe-love__card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 252, 247, 0.1);
  background: rgba(255, 252, 247, 0.04);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.luxe-love__avatar {
  display: block;
  margin-inline: auto;
  height: 5rem;
  width: 5rem;
  border-radius: 999px;
  border: 2px solid var(--luxe-gold);
  object-fit: cover;
}

.luxe-love__stars {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--luxe-gold);
}

.luxe-love__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.luxe-love__quote {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.875rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory);
  font-weight: 400;
}

.luxe-love__meta {
  margin-top: 1.5rem;
}

.luxe-love__name {
  margin: 0;
  font-weight: 600;
  color: var(--ivory);
}

.luxe-love__role {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--luxe-gold);
}

.luxe-love__dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.luxe-love__dot {
  height: 0.375rem;
  width: 0.375rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 252, 247, 0.3);
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease;
}

.luxe-love__dot.is-active {
  width: 2rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
}

/* ==========================================================================
   Luxe CTA Banner
   ========================================================================== */
.luxe-cta {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--ivory);
  box-shadow: var(--shadow-luxe);
}

@media (min-width: 768px) {
  .luxe-cta__panel {
    padding: 6rem 4rem;
  }
}

.luxe-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(253, 251, 248, 0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(253, 251, 248, 0.4), transparent 40%);
}

.luxe-cta__inner {
  position: relative;
  z-index: 1;
}

.luxe-cta__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 252, 247, 0.8);
}

.luxe-cta__heading {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--ivory);
  font-weight: 500;
}

.luxe-cta__heading em {
  font-style: italic;
  font-weight: 400;
}

.luxe-cta__sub {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  color: rgba(255, 252, 247, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.luxe-cta__btn {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--luxe-charcoal);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.luxe-cta__btn:hover {
  background: var(--ivory);
  color: var(--luxe-charcoal);
  transform: scale(1.05);
}

.luxe-cta__btn svg {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   Luxe Instagram / Follow Journey
   ========================================================================== */
.luxe-ig {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-ig__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-ig__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-ig__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-ig__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
  margin: 0;
}

.luxe-ig__heading em,
.luxe-ig__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-ig__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
}

@media (min-width: 768px) {
  .luxe-ig__sub {
    font-size: 1.125rem;
  }
}

.luxe-ig__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .luxe-ig__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxe-ig__card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  text-decoration: none;
}

.luxe-ig__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.luxe-ig__card:hover img {
  transform: scale(1.1);
}

.luxe-ig__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.luxe-ig__card:hover .luxe-ig__veil {
  opacity: 0.8;
}

.luxe-ig__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ivory);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.luxe-ig__card:hover .luxe-ig__icon {
  opacity: 1;
}

.luxe-ig__icon svg {
  width: 2rem;
  height: 2rem;
}

.luxe-ig__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.luxe-ig__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  box-shadow: var(--shadow-luxe);
  transition: box-shadow 0.35s ease;
}

.luxe-ig__btn:hover {
  box-shadow: var(--shadow-glow);
  color: var(--ivory);
}

.luxe-ig__btn svg {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   Luxe Visit / Contact Atelier
   ========================================================================== */
.luxe-visit {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-visit__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .luxe-visit__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.luxe-visit__info {
  height: 100%;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%);
  padding: 2.5rem;
}

.luxe-visit__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-visit__heading {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--luxe-charcoal);
  font-weight: 500;
  line-height: 1.15;
}

.luxe-visit__heading em {
  font-style: italic;
  font-weight: 400;
}

.luxe-visit__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--luxe-charcoal);
}

.luxe-visit__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.luxe-visit__list svg {
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--rose-gold);
}

.luxe-visit__list a {
  color: inherit;
  text-decoration: none;
}

.luxe-visit__list a:hover {
  color: var(--rose-gold);
}

.luxe-visit__btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--luxe-charcoal);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.35s ease;
}

.luxe-visit__btn:hover {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
}

.luxe-visit__map {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ==========================================================================
   Luxe About Us — Hero
   ========================================================================== */
.luxe-about-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  padding-top: 7rem;
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%);
}

.luxe-about-hero__copy {
  max-width: 36rem;
}

.luxe-about-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-about-hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-about-hero__title em,
.luxe-about-hero__title .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-about-hero__sub {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #7a6a62;
}

.luxe-about-hero__collage {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  aspect-ratio: 1;
}

.luxe-about-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-about-hero__img--tall {
  grid-row: span 2;
}

@keyframes luxe-image-reveal {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-image-reveal {
  animation: luxe-image-reveal 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* ---- Native Elementor About Hero ---- */
.luxe-el-about-hero.elementor-section {
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%) !important;
  background-color: transparent !important;
  min-height: 70vh;
  overflow: hidden;
}

.luxe-el-about-hero > .elementor-container {
  align-items: center;
  min-height: inherit;
}

.luxe-el-about-hero .luxe-about-hero-edit-copy .elementor-widget-container,
.luxe-el-about-hero .luxe-about-hero-edit-collage .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-about-hero .luxe-about-hero-edit-copy .elementor-widget-container > :first-child,
.luxe-el-about-hero .luxe-about-hero-edit-collage .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-about-hero .luxe-about-hero-edit-copy .elementor-widget-container > :last-child,
.luxe-el-about-hero .luxe-about-hero-edit-collage .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .luxe-el-about-hero > .elementor-container {
    flex-wrap: wrap;
  }

  .luxe-el-about-hero .luxe-about-hero__col {
    width: 100% !important;
  }

  .luxe-about-hero__collage {
    max-width: 24rem;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   Luxe About Us — Story / Mission / Vision
   ========================================================================== */
.luxe-about-pillars {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-about-pillars__card {
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(232, 217, 204, 0.7);
  background: #ffffff;
  padding: 2.5rem;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.luxe-about-pillars__card:hover {
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-glow);
}

.luxe-about-pillars__icon {
  display: grid;
  height: 3.5rem;
  width: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--ivory);
}

.luxe-about-pillars__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.luxe-about-pillars__title {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-about-pillars__text {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a62;
}

/* ---- Native Elementor About Pillars ---- */
.luxe-el-about-pillars.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-about-pillars > .elementor-container {
  align-items: stretch;
}

.luxe-el-about-pillars .luxe-about-pillars__col > .elementor-widget-wrap {
  height: 100%;
}

.luxe-el-about-pillars .luxe-about-pillars__card {
  height: 100%;
}

.luxe-el-about-pillars .luxe-about-pillars-edit-card .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
  height: 100%;
}

.luxe-el-about-pillars .luxe-about-pillars-edit-card .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-about-pillars .luxe-about-pillars-edit-card .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .luxe-el-about-pillars .luxe-about-pillars__col {
    width: 100% !important;
  }
}

/* ==========================================================================
   Luxe About Us — Meet The Artist
   ========================================================================== */
.luxe-about-artist {
  padding-block: 6rem;
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%);
}

.luxe-about-artist__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-about-artist__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-about-artist__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-about-artist__name {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--luxe-charcoal);
  font-weight: 500;
  line-height: 1.15;
}

.luxe-about-artist__role {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a62;
}

.luxe-about-artist__bio {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a6a62;
}

.luxe-about-artist__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.luxe-about-artist__stat-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--rose-gold);
  font-weight: 500;
}

.luxe-about-artist__stat-label {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a62;
}

/* ---- Native Elementor Meet The Artist ---- */
.luxe-el-about-artist.elementor-section {
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%) !important;
}

.luxe-el-about-artist > .elementor-container {
  align-items: center;
}

.luxe-el-about-artist .luxe-about-artist-edit-media .elementor-widget-container,
.luxe-el-about-artist .luxe-about-artist-edit-copy .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-about-artist .luxe-about-artist-edit-media .elementor-widget-container > :first-child,
.luxe-el-about-artist .luxe-about-artist-edit-copy .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-about-artist .luxe-about-artist-edit-media .elementor-widget-container > :last-child,
.luxe-el-about-artist .luxe-about-artist-edit-copy .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .luxe-el-about-artist .luxe-about-artist__col {
    width: 100% !important;
  }

  .luxe-about-artist__media {
    margin-inline: auto;
  }
}

/* ==========================================================================
   Luxe About Us — Journey / Milestones
   ========================================================================== */
.luxe-about-journey {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-about-journey__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-about-journey__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-about-journey__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-about-journey__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-about-journey__heading em,
.luxe-about-journey__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-about-journey__track {
  position: relative;
  margin: 4rem auto 0;
  max-width: 48rem;
}

.luxe-about-journey__line {
  position: absolute;
  left: 1rem;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
  pointer-events: none;
}

@media (min-width: 768px) {
  .luxe-about-journey__line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.luxe-about-journey__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.luxe-about-journey__item {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .luxe-about-journey__item {
    grid-template-columns: 1fr 1fr;
  }
}

.luxe-about-journey__dot {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 1;
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--ivory);
}

@media (min-width: 768px) {
  .luxe-about-journey__dot {
    left: 50%;
  }
}

.luxe-about-journey__content {
  padding-left: 3rem;
}

@media (min-width: 768px) {
  .luxe-about-journey__content {
    padding-left: 0;
  }

  .luxe-about-journey__item--left .luxe-about-journey__content {
    grid-column: 1;
    padding-right: 3rem;
    text-align: right;
  }

  .luxe-about-journey__item--right .luxe-about-journey__content {
    grid-column: 2;
    padding-left: 3rem;
    text-align: left;
  }
}

.luxe-about-journey__year {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.luxe-about-journey__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-about-journey__text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #7a6a62;
}

/* ---- Native Elementor Journey ---- */
.luxe-el-about-journey.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-about-journey .luxe-about-journey-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-about-journey .luxe-about-journey-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-about-journey .luxe-about-journey-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe About Us — Brands We Use (marquee)
   ========================================================================== */
.luxe-about-brands {
  padding-block: 6rem;
  background: var(--ivory);
}

.luxe-about-brands__intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-about-brands__eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.luxe-about-brands__eyebrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-about-brands__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-about-brands__heading em,
.luxe-about-brands__heading .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-about-brands__marquee-wrap {
  margin-top: 3.5rem;
  overflow: hidden;
}

.luxe-about-brands__marquee {
  display: flex;
  gap: 4rem;
  width: max-content;
  white-space: nowrap;
}

.luxe-about-brands__item {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: #7a6a62;
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.luxe-about-brands__item:hover {
  color: var(--rose-gold);
  opacity: 1;
}

@keyframes luxe-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: luxe-marquee 28s linear infinite;
}

.luxe-about-brands__marquee-wrap:hover .animate-marquee {
  animation-play-state: paused;
}

/* ---- Native Elementor Brands ---- */
.luxe-el-about-brands.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-about-brands .luxe-about-brands-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-about-brands .luxe-about-brands-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-about-brands .luxe-about-brands-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe Services Page — Hero
   ========================================================================== */
.luxe-svc-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%);
}

.luxe-svc-hero__inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-svc-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-svc-hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-svc-hero__title em,
.luxe-svc-hero__title .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-svc-hero__sub {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #7a6a62;
}

/* ---- Native Elementor Services Hero ---- */
.luxe-el-svc-hero.elementor-section {
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%) !important;
  background-color: transparent !important;
}

.luxe-el-svc-hero .luxe-svc-hero-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-svc-hero .luxe-svc-hero-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-svc-hero .luxe-svc-hero-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe Gallery Page — Hero
   ========================================================================== */
.luxe-gal-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%);
}

.luxe-gal-hero__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-gal-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-gal-hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-gal-hero__title em,
.luxe-gal-hero__title .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-el-gal-hero.elementor-section {
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%) !important;
  background-color: transparent !important;
}

.luxe-el-gal-hero.luxe-gal-hero {
  padding-block: 0;
}

.luxe-el-gal-hero .luxe-gal-hero-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-gal-hero .luxe-gal-hero-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-gal-hero .luxe-gal-hero-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe Contact Page — Hero
   ========================================================================== */
.luxe-contact-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%);
}

.luxe-contact-hero__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.luxe-contact-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}

.luxe-contact-hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--luxe-charcoal);
  font-weight: 500;
}

.luxe-contact-hero__title em,
.luxe-contact-hero__title .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-contact-hero__sub {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #7a6a62;
}

.luxe-el-contact-hero.elementor-section {
  background-image: linear-gradient(135deg, #fcfaf7 0%, #f6ebe8 60%, #e8d9cc 100%) !important;
  background-color: transparent !important;
}

.luxe-el-contact-hero.luxe-contact-hero {
  padding-block: 0;
}

.luxe-el-contact-hero .luxe-contact-hero-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-contact-hero .luxe-contact-hero-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-contact-hero .luxe-contact-hero-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe Contact Page — Body (atelier + form)
   ========================================================================== */
.luxe-contact-body {
  background: var(--ivory);
}

.luxe-contact-body__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .luxe-contact-body__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.luxe-contact-body__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.luxe-contact-body__info {
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.luxe-contact-body__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 1.875rem);
  color: var(--luxe-charcoal);
  font-weight: 500;
  line-height: 1.2;
}

.luxe-contact-body__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--luxe-charcoal);
}

.luxe-contact-body__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.5;
}

.luxe-contact-body__list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--rose-gold);
  stroke: currentColor;
}

.luxe-contact-body__map {
  height: 18rem;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-luxe);
}

.luxe-contact-body__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.luxe-contact-body__form-card {
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-luxe);
}

@media (min-width: 768px) {
  .luxe-contact-body__form-card {
    padding: 2.5rem;
  }
}

.luxe-contact-body__form-sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #7a6a62;
}

.luxe-contact-body__cf7 {
  margin-top: 1.5rem;
}

.luxe-cf7__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .luxe-cf7__grid {
    grid-template-columns: 1fr 1fr;
  }

  .luxe-cf7__field--full {
    grid-column: 1 / -1;
  }
}

.luxe-cf7__field label,
.luxe-cf7 label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a62;
  margin-bottom: 0.5rem;
}

.luxe-cf7__input,
.luxe-cf7 input[type="text"],
.luxe-cf7 input[type="email"],
.luxe-cf7 input[type="tel"],
.luxe-cf7 select,
.luxe-cf7 textarea {
  width: 100%;
  margin-top: 0;
  border-radius: 0.75rem;
  border: 1px solid var(--nude, #e8d9c8);
  background: rgba(250, 247, 242, 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--luxe-charcoal);
  outline: none;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.luxe-cf7__input:focus,
.luxe-cf7 input:focus,
.luxe-cf7 select:focus,
.luxe-cf7 textarea:focus {
  border-color: var(--rose-gold);
}

.luxe-cf7 .wpcf7-form-control-wrap {
  display: block;
}

.luxe-cf7__submit,
.luxe-cf7 input.wpcf7-submit,
.luxe-cf7 .wpcf7-submit {
  margin-top: 1.75rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  padding: 0.9rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  box-shadow: var(--shadow-luxe);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  font-family: inherit;
}

.luxe-cf7__submit:hover,
.luxe-cf7 input.wpcf7-submit:hover,
.luxe-cf7 .wpcf7-submit:hover {
  box-shadow: var(--shadow-glow, 0 0 0 1px rgba(201, 162, 39, 0.35), 0 20px 45px -18px rgba(201, 162, 39, 0.45));
}

.luxe-contact-body__or {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a62;
}

.luxe-contact-body__or span {
  height: 1px;
  flex: 1;
  background: var(--nude, #e8d9c8);
}

.luxe-contact-body__wa {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(44, 44, 44, 0.2);
  padding: 0.9rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--luxe-charcoal);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
}

.luxe-contact-body__wa svg {
  width: 1rem;
  height: 1rem;
}

.luxe-contact-body__wa:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.luxe-el-contact-body.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-contact-body .luxe-contact-body-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-contact-body .luxe-contact-body-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-contact-body .luxe-contact-body-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Luxe Footer
   ========================================================================== */
.site-footer--elementor.site-footer--luxe {
  margin-top: 0;
  background: transparent;
}

/* Elementor-native luxe polish (editable widgets, not HTML blobs) */
.luxe-el-header .elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display) !important;
}

/* ---- Native Elementor Hero (matches Maison Belle banner) ---- */
.elementor-section.luxe-el-hero,
.elementor-section.luxe-hero {
  position: relative;
  overflow: hidden;
}

.elementor-section.luxe-el-hero::before,
.elementor-section.luxe-el-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.7;
  z-index: 0;
  animation: luxe-float-slow 8s ease-in-out infinite;
}

.elementor-section.luxe-el-hero::before {
  top: -6rem;
  left: -4rem;
  height: 18rem;
  width: 18rem;
  background: var(--luxe-blush);
}

.elementor-section.luxe-el-hero::after {
  top: 10rem;
  right: 2.5rem;
  height: 14rem;
  width: 14rem;
  background: var(--nude);
  animation-delay: 1.2s;
}

.elementor-section.luxe-el-hero > .elementor-container {
  position: relative;
  z-index: 1;
}

.luxe-el-hero .luxe-hero-edit-title .elementor-heading-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em;
  font-weight: 500 !important;
  color: var(--luxe-charcoal) !important;
}

/* Emphasize middle line "Natural Beauty" when using line breaks */
.luxe-el-hero .luxe-hero-edit-title .elementor-heading-title {
  background: linear-gradient(135deg, var(--luxe-charcoal) 0%, var(--luxe-charcoal) 100%);
}

.luxe-el-hero .luxe-hero-edit-actions .elementor-widget-container {
  overflow: visible;
}

.luxe-el-hero .luxe-hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-primary,
.luxe-el-hero a.luxe-hero__btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%) !important;
  padding: 0.875rem 1.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: var(--font-sans) !important;
  color: var(--ivory) !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-luxe);
  border: none !important;
  line-height: 1.2;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-primary:hover,
.luxe-el-hero a.luxe-hero__btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: var(--ivory) !important;
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-primary svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-primary:hover svg {
  transform: translateX(4px);
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-secondary,
.luxe-el-hero a.luxe-hero__btn-secondary {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px !important;
  border: 1px solid rgba(44, 44, 44, 0.2) !important;
  background: rgba(251, 248, 244, 0.6) !important;
  padding: 0.875rem 1.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-family: var(--font-sans) !important;
  color: var(--luxe-charcoal) !important;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.2;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.luxe-el-hero .luxe-hero__actions a.luxe-hero__btn-secondary:hover,
.luxe-el-hero a.luxe-hero__btn-secondary:hover {
  border-color: var(--rose-gold) !important;
  color: var(--rose-gold) !important;
  background: rgba(251, 248, 244, 0.85) !important;
}

/* Legacy Elementor button widgets in hero (if present) */
.luxe-el-hero .luxe-hero-btn-primary .elementor-button {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%) !important;
  border-radius: 9999px !important;
  box-shadow: var(--shadow-luxe);
  padding: 0.875rem 1.75rem !important;
  color: var(--ivory) !important;
  border: none !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.luxe-el-hero .luxe-hero-btn-primary .elementor-button:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: var(--ivory) !important;
}

.luxe-el-hero .luxe-hero-btn-secondary .elementor-button {
  border-radius: 9999px !important;
  backdrop-filter: blur(8px);
  padding: 0.875rem 1.75rem !important;
  background: rgba(251, 248, 244, 0.6) !important;
  border: 1px solid rgba(44, 44, 44, 0.2) !important;
  color: var(--luxe-charcoal) !important;
}

.luxe-el-hero .luxe-hero-btn-secondary .elementor-button:hover {
  border-color: var(--rose-gold) !important;
  color: var(--rose-gold) !important;
}

.luxe-el-hero .luxe-hero__media {
  position: relative;
}

.luxe-el-hero .luxe-hero-edit-image {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin-inline: auto;
}

.luxe-el-hero .luxe-hero-edit-image::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  opacity: 0.2;
  filter: blur(40px);
  z-index: -1;
}

.luxe-el-hero .luxe-hero-edit-image img {
  border-radius: 2.5rem !important;
  box-shadow: var(--shadow-luxe);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.luxe-el-hero .luxe-hero-edit-float-rating,
.luxe-el-hero .luxe-hero-edit-float-cert {
  position: absolute !important;
  z-index: 2;
  width: auto !important;
  max-width: 200px;
}

.luxe-el-hero .luxe-hero-edit-float-rating {
  left: -0.5rem;
  top: 4rem;
}

.luxe-el-hero .luxe-hero-edit-float-cert {
  right: 0;
  bottom: 2.5rem;
}

.luxe-el-hero .luxe-hero-edit-float-rating .luxe-hero__float,
.luxe-el-hero .luxe-hero-edit-float-cert .luxe-hero__float {
  display: none;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

@media (min-width: 768px) {
  .luxe-el-hero .luxe-hero-edit-float-rating .luxe-hero__float,
  .luxe-el-hero .luxe-hero-edit-float-cert .luxe-hero__float {
    display: flex;
  }
}

.luxe-el-hero .luxe-hero-edit-badge .elementor-widget-container,
.luxe-el-hero .luxe-hero-edit-stats .elementor-widget-container {
  overflow: visible;
}

.luxe-el-hero .elementor-widget-button {
  display: inline-block;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
}

/* ---- Native Elementor Why Choose Us ---- */
.luxe-el-why .luxe-why-edit-intro .elementor-widget-container,
.luxe-el-why-grid .luxe-why-edit-card .elementor-widget-container {
  overflow: visible;
}

.luxe-el-why-grid > .elementor-container {
  align-items: stretch;
}

.luxe-el-why-grid .luxe-why__col > .elementor-widget-wrap {
  height: 100%;
}

.luxe-el-why-grid .luxe-why__card {
  height: 100%;
}

/* ---- Native Elementor Featured Services ---- */
.luxe-el-svc .luxe-svc-edit-intro .elementor-widget-container,
.luxe-el-svc-grid .luxe-svc-edit-card .elementor-widget-container,
.luxe-el-svc-footer .luxe-svc-edit-footer .elementor-widget-container {
  overflow: visible;
}

.luxe-el-svc-grid > .elementor-container {
  align-items: stretch;
}

.luxe-el-svc-grid .luxe-svc__col > .elementor-widget-wrap {
  height: 100%;
}

.luxe-el-svc-grid .luxe-svc__card {
  height: 100%;
}

.luxe-el-svc,
.luxe-el-svc-grid,
.luxe-el-svc-footer {
  background: var(--ivory) !important;
}

/* ---- Native Elementor Before & After ---- */
.luxe-el-ba.elementor-section {
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 50%, var(--nude) 100%) !important;
}

.luxe-el-ba .elementor-container {
  max-width: 1200px;
}

.luxe-el-ba .elementor-widget-text-editor {
  margin-bottom: 0;
}

.luxe-el-ba .luxe-ba-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-ba .luxe-ba-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-ba .luxe-ba-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ---- Native Elementor Portfolio / Our Work ---- */
.luxe-el-work.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-work .luxe-work-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-work .luxe-work-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-work .luxe-work-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ---- Native Elementor CTA Banner ---- */
.luxe-el-cta.elementor-section {
  background: var(--ivory) !important;
}

/* Elementor section padding owns vertical space — avoid double with .luxe-cta */
.luxe-el-cta.luxe-cta {
  padding-block: 0;
}

.luxe-el-cta .luxe-cta-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-cta .luxe-cta-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-cta .luxe-cta-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

.luxe-el-cta .luxe-cta__panel {
  margin-inline: auto;
}

/* ---- Native Elementor Instagram ---- */
.luxe-el-ig.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-ig .luxe-ig-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-ig .luxe-ig-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-ig .luxe-ig-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

/* ---- Native Elementor Visit / Contact ---- */
.luxe-el-visit.elementor-section {
  background: var(--ivory) !important;
}

.luxe-el-visit .luxe-visit-edit-content .elementor-widget-container {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.luxe-el-visit .luxe-visit-edit-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.luxe-el-visit .luxe-visit-edit-content .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

.luxe-el-svc-card .elementor-widget-heading,
.luxe-el-svc-card .elementor-widget-text-editor,
.luxe-el-svc-card .elementor-widget-button {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.luxe-el-svc-card .elementor-widget-heading {
  padding-top: 1rem;
}

.luxe-el-cta {
  overflow: visible;
}

.luxe-el-footer a:hover {
  color: var(--ivory) !important;
}

body.has-elementor-header .site-header--elementor.site-header--luxe .luxe-el-header {
  transition: all 0.5s ease;
}

@media (max-width: 767px) {
  .luxe-el-header-nav {
    order: 3;
  }
  .luxe-el-header-nav .elementor-widget-text-editor a {
    display: inline-block;
    margin: 6px 10px !important;
  }
}

.luxe-footer {
  position: relative;
  margin-top: 6rem;
  background: var(--luxe-charcoal);
  color: var(--ivory);
}

.luxe-footer__line {
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxe-gold), transparent);
}

.luxe-footer__grid {
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .luxe-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxe-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ivory);
}

.luxe-footer__icon {
  display: grid;
  height: 2.25rem;
  width: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  color: var(--ivory);
}

.luxe-footer__icon svg {
  width: 1rem;
  height: 1rem;
}

.luxe-footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.luxe-footer__name .text-gradient-luxe {
  font-style: italic;
  font-weight: 400;
}

.luxe-footer__tagline {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 252, 247, 0.7);
}

.luxe-footer__title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--luxe-gold);
}

.luxe-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.luxe-footer__links a {
  display: inline-block;
  color: rgba(255, 252, 247, 0.7);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.luxe-footer__links a:hover {
  color: var(--ivory);
  padding-left: 0.25rem;
}

.luxe-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 252, 247, 0.7);
}

.luxe-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.luxe-footer__contact li.is-center {
  align-items: center;
}

.luxe-footer__contact svg {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--rose-gold);
}

.luxe-footer__contact li.is-center svg {
  margin-top: 0;
}

.luxe-footer__contact a {
  color: inherit;
  text-decoration: none;
}

.luxe-footer__contact a:hover {
  color: var(--ivory);
}

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

.luxe-footer__social a {
  display: grid;
  height: 2.75rem;
  width: 2.75rem;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 247, 0.2);
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.luxe-footer__social a:hover {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--luxe-gold) 100%);
  border-color: transparent;
  transform: scale(1.1);
  color: var(--ivory);
}

.luxe-footer__social svg {
  width: 1rem;
  height: 1rem;
}

.luxe-footer__hours {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 252, 247, 0.5);
}

.luxe-footer__bottom {
  border-top: 1px solid rgba(255, 252, 247, 0.1);
}

.luxe-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 252, 247, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .luxe-footer__bottom-inner {
    flex-direction: row;
    text-align: left;
  }
}

.luxe-footer__bottom-inner p {
  margin: 0;
}

.luxe-footer__heart {
  color: var(--rose-gold);
}

/* ==========================================================================
   Hero Section (legacy)
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--rose) 0%, #5A1028 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 30, 63, 0.85) 0%, rgba(46, 42, 40, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
  color: var(--white);
}

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

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blush), var(--gold));
}

/* ==========================================================================
   About Preview
   ========================================================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-image {
  position: relative;
}

.about-preview-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-preview-text .eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-preview-text h2 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-image::before {
    display: none;
  }
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--rose);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--rose);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blush), var(--cream-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--rose);
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 10px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 600;
  color: var(--rose);
  font-size: 0.95rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blush);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--rose);
  transform: scale(1.2);
}

/* ==========================================================================
   Instagram Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 30, 63, 0.3);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

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

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ==========================================================================
   Page Hero (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.page-hero .gold-divider::before,
.page-hero .gold-divider::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-story img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--rose);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin-top: 4px;
}

.philosophy-quote {
  background: var(--blush);
  border-left: 4px solid var(--gold);
  padding: 30px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}

.philosophy-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}

.philosophy-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--rose);
  font-weight: 500;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
}

.skill-bar {
  height: 8px;
  background: var(--blush);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 4px;
  transition: width 1s ease;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.skill-tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 500;
}

.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.cert-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cert-item svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
  margin-bottom: 12px;
}

.cert-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cert-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

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

/* ==========================================================================
   Pricing Packages
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal-soft);
}

.pricing-desc {
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--blush);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--rose);
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.map-embed {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 350px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--rose);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--rose);
  transition: fill var(--transition);
}

.social-links a:hover svg {
  fill: var(--white);
}

.whatsapp-instant {
  text-align: center;
  margin-bottom: 40px;
}

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

  .contact-form {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .logo-text {
  color: var(--blush);
}

.footer-brand .logo-tagline {
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .heart {
  color: var(--blush);
}

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

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

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

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ==========================================================================
   WordPress / Elementor Compatibility
   ========================================================================== */
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content,
.page-content {
  word-wrap: break-word;
}

.elementor-page .site-main > .section:first-child,
.elementor-page .page-hero {
  /* Allow Elementor to take over when editing */
}

/* Screen reader */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
