/*
Theme Name:        Luxe Wellness NYC Pro
Theme URI:         https://luxebeautybarnyc.com
Description:       Ground-up redesign — dark editorial luxury child theme for Hello Elementor. Refined UI, full animation engine, mega-menu builder, and complete Customizer control over colors, typography, spacing, header, footer, and every section. Built for medical-aesthetics & wellness clinics. Requires the free Hello Elementor parent theme.
Author:            Luxe Wellness & Aesthetics NYC
Author URI:        https://luxebeautybarnyc.com
Template:          hello-elementor
Version:           4.11.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v3 or later
License URI:       https://www.gnu.org/licenses/gpl-3.0.html
Text Domain:       luxe
Tags:              custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, full-width-template, block-styles
*/

/* ═══════════════════════════════════════════════════════════
   LUXE PRO v4 — base brand layer.
   Most visual values are driven by CSS variables that the
   Customizer overrides at runtime (see inc/dynamic-css.php).
   The animation engine lives in assets/css/animations.css.
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Brand palette (Customizer-overridable) */
    --gold:        #C9A96E;
    --gold-light:  #E8D5B0;
    --gold-dark:   #9A7A45;
    --black:       #0A0A0A;
    --black-2:     #111111;
    --black-3:     #1A1A1A;
    --white:       #FAF8F5;
    --white-dim:   rgba(250, 248, 245, 0.7);
    --white-faint: rgba(250, 248, 245, 0.12);

    /* Typography (Customizer-overridable) */
    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans:  "Montserrat", "Helvetica Neue", system-ui, sans-serif;
    --fs-base: 16px;

    /* Spacing scale (Customizer-overridable) */
    --space-unit: 1rem;
    --section-pad: 6rem;
    --container: 1280px;

    /* Buttons */
    --btn-radius: 0px;
    --btn-padding: 0.9rem 2rem;

    /* Motion (Customizer-overridable) */
    --anim-speed: 0.7s;
    --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-height: 80px;
}

/* ───── RESET / BASE ───── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 300; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 1rem; }

/* ───── ACCESSIBILITY ───── */
.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 !important; width: 1px; word-wrap: normal !important;
}
.skip-link {
    position: absolute; left: -9999px; top: 1rem; z-index: 100001;
    background: var(--gold); color: var(--black); padding: 0.75rem 1.5rem;
    text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.15em; font-weight: 600;
}
.skip-link:focus { left: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ───── LAYOUT HELPERS ───── */
.luxe-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .luxe-container { padding: 0 2.5rem; } }
.luxe-section { padding: calc(var(--section-pad) * 0.66) 0; }
@media (min-width: 768px) { .luxe-section { padding: var(--section-pad) 0; } }

.eyebrow {
    display: inline-block; font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--gold); }

/* ───── BUTTONS (refined with shimmer) ───── */
.btn {
    display: inline-block; position: relative; overflow: hidden;
    padding: var(--btn-padding); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid transparent;
    border-radius: var(--btn-radius); cursor: pointer;
    transition: all var(--transition); text-align: center; z-index: 1;
}
.btn::before {
    content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease; z-index: -1;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); color: var(--black); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,0.3); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(201,169,110,0.4); }
.btn-ghost:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ───── (Component styles continue in assets/css/main.css) ───── */
