/* ==========================================================================
   Wish The Brand — Luxury Homepage Styles
   Mobile-first | No frameworks
   ========================================================================== */

:root {
    --gold: #C9A15B;
    --gold-light: #d4b06a;
    --gold-dark: #a88445;
    --black: #0D0D0D;
    --white: #FFFFFF;
    --cream: #F8F6F2;
    --gray-100: #f3f1ed;
    --gray-300: #c8c4bc;
    --gray-500: #7a756c;
    --gray-800: #2a2a2a;
    --font-heading: 'Imbue', Georgia, serif;
    --font-body: 'Instrument Sans', system-ui, sans-serif;
    --font-footer-title: 'Baby Giviona', 'Imbue', serif;
    --header-h: 72px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 20px 60px rgba(13, 13, 13, 0.08);
    --shadow-gold: 0 12px 40px rgba(201, 161, 91, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: auto;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

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

body.lux-body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

#main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

video:not(.lux-hero__video) {
    max-width: 100%;
    height: auto;
    display: block;
}
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.lux-container {
    width: 100%;
    max-width: 1096px;
    margin: 0 auto;
    padding: 0 20px;
}

.lux-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Buttons */
.lux-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.lux-btn--gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.lux-btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(201, 161, 91, 0.35);
}

.lux-btn--outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.lux-btn--outline:hover {
    background: var(--gold);
    color: var(--black);
}

.lux-btn--outline-light {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.lux-btn--outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.lux-btn--text {
    padding: 0;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
}

.lux-btn--text::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.lux-btn--text:hover::after { width: 100%; }

/* Header */
.lux-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    height: var(--header-h);
    /* background: rgba(13, 13, 13, 0.96); */
    background: #211e1f;
    border-bottom: 1px solid rgba(201, 161, 91, 0.12);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lux-header.is-scrolled {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.lux-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: var(--header-h);
    gap: 8px;
    padding: 0 16px;
}

.lux-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 1002;
    flex-shrink: 0;
}

.lux-logo__img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.lux-logo--center {
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
    max-width: 100%;
}

.lux-logo__mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.lux-logo__text {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.lux-nav { display: none; }

.lux-header__right {
    display: none;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    z-index: 1001;
}

.lux-nav--left {
    margin-right: auto;
    z-index: 1001;
}

.lux-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lux-nav--right .lux-nav__list {
    gap: 22px;
}

.lux-nav__link {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
}

.lux-nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.lux-nav__link:hover,
.lux-nav__link.is-active { color: var(--gold); }

.lux-nav__link:hover::after,
.lux-nav__link.is-active::after { width: 100%; }

.lux-header__cta { display: none; padding: 10px 22px; font-size: 11px; }

.lux-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    grid-column: 3;
    justify-self: end;
    z-index: 1001;
}

.lux-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
    margin-left: auto;
}

.lux-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lux-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lux-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.lux-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    max-width: 100vw;
}

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

.lux-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.lux-mobile-menu__panel {
    position: absolute;
    top: 0; right: 0;
    width: min(100%, 360px);
    height: 100%;
    background: var(--black);
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.lux-mobile-menu__close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
}

.lux-mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,0.08); }

.lux-mobile-menu__list a {
    display: block;
    padding: 18px 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
}

.lux-mobile-menu__cta { width: 100%; margin-top: 32px; }

/* Hero */
.lux-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 85vh;
    min-height: 85dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.lux-hero--video {
    min-height: 85vh;
    min-height: 85dvh;
}

.lux-hero--image {
    min-height: 70vh;
    min-height: 70dvh;
}

.lux-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.lux-hero__video,
.lux-hero__image,
.lux-hero__fallback-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.lux-hero__video {
    opacity: 1;
    z-index: 1;
    height: 100% !important;
    max-width: none;
    transition: opacity 0.6s ease;
}

.lux-hero__video.is-ready {
    opacity: 1;
}

.lux-hero__video.is-fallback-hidden {
    display: none;
}

.lux-hero__image {
    transform: scale(1);
}

.lux-hero__fallback-img {
    display: none;
    z-index: 1;
    transform: scale(1);
}

.lux-hero.is-video-fallback .lux-hero__fallback-img {
    display: block;
    opacity: 1;
}

.lux-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.28) 0%,
        rgba(13, 13, 13, 0.42) 50%,
        rgba(13, 13, 13, 0.55) 100%
    );
}

.lux-hero--video .lux-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.25) 0%,
        rgba(13, 13, 13, 0.38) 45%,
        rgba(13, 13, 13, 0.52) 100%
    );
}

.lux-hero--image .lux-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.3) 0%,
        rgba(13, 13, 13, 0.45) 50%,
        rgba(13, 13, 13, 0.58) 100%
    );
}

.lux-hero__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1510 0%, var(--black) 40%, #2a2218 100%);
}

.lux-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lux-hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 20px 80px;
    max-width: 900px;
}

.lux-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.lux-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.lux-hero__title-word {
    display: inline-block;
    will-change: transform, opacity;
}

.lux-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    max-width: 620px;
    margin: 0 auto 36px;
    font-weight: 300;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.lux-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.lux-hero__actions .lux-btn {
    will-change: transform, opacity;
}

.lux-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.lux-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: luxScrollPulse 2s ease-in-out infinite;
}

@keyframes luxScrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Sections */
.lux-section {
    padding: 80px 0;
}

.lux-section--cream { background: var(--cream); }

.lux-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.lux-section__head--light .lux-section__title,
.lux-section__head--light .lux-section__eyebrow { color: var(--white); }

.lux-section__eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.lux-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    color: var(--black);
}

.lux-section__cta {
    text-align: center;
    margin-top: 48px;
}

.lux-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 40px 0;
}

.lux-empty--light { color: rgba(255,255,255,0.6); }

/* About */
.lux-about { background: var(--cream); }

.lux-about__grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.lux-about__visual { position: relative; }

.lux-about__shape {
    position: absolute;
    border: 1px solid var(--gold);
    opacity: 0.35;
    z-index: 0;
}

.lux-about__shape--one {
    width: 120px; height: 120px;
    top: -20px; left: -20px;
}

.lux-about__shape--two {
    width: 80px; height: 80px;
    bottom: -16px; right: -16px;
    background: rgba(201,161,91,0.12);
}

.lux-about__image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
}

.lux-about__image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s ease;
    height: 450px !important;
}

.lux-about__image-wrap:hover .lux-about__image { transform: scale(1.05); }

.lux-about__placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--gray-100), var(--gold));
    opacity: 0.3;
}

.lux-about__text {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.lux-about__text p { margin: 0 0 16px; }

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

.lux-stat {
    text-align: center;
    padding: 24px 12px;
    background: var(--white);
    border: 1px solid rgba(201,161,91,0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.lux-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.lux-stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.lux-stat__label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* Service cards */
.lux-service-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.lux-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(13,13,13,0.12);
}

.lux-service-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.lux-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.lux-service-card:hover .lux-service-card__media img { transform: scale(1.08); }

.lux-service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.lux-service-card:hover .lux-service-card__overlay { opacity: 1; }

.lux-service-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--gray-100));
}

.lux-service-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lux-service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.lux-service-card__desc {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0 0 16px;
    flex: 1;
}

.lux-service-card__price {
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 12px;
}

.lux-service-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
}

.lux-service-card__duration { color: var(--gray-500); }

/* Sliders */
.lux-services { background: var(--white); }

.lux-services-slider,
.lux-testimonials-slider,
.lux-staff-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.lux-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.lux-slider-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    font-size: 18px;
    transition: background var(--transition), color var(--transition);
}

.lux-slider-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.lux-slider-nav--light .lux-slider-btn {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.lux-slider-nav--light .lux-slider-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.swiper-pagination-bullet {
    background: var(--gray-300) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.lux-slider-nav--light .swiper-pagination-bullet { background: rgba(255,255,255,0.4) !important; }
.lux-slider-nav--light .swiper-pagination-bullet-active { background: var(--gold) !important; }

/* Testimonials */
.lux-testimonials {
    background: var(--black);
    color: var(--white);
}

.lux-review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,161,91,0.2);
    padding: 32px;
    height: 100%;
    border-radius: 2px;
    transition: border-color var(--transition), transform var(--transition);
    height: 280px;
}

.lux-review-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.lux-review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lux-review-card__avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.lux-review-card__name {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.lux-review-card__email {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.lux-stars { margin-bottom: 16px; }

.lux-star {
    color: rgba(255,255,255,0.2);
    font-size: 18px;
}

.lux-star.is-filled { color: var(--gold); }

.lux-review-card__comment {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 16px;
    font-style: italic;
}

.lux-review-card__service {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Staff */
.lux-staff { background: var(--cream); }

.lux-staff-card { text-align: center; }

.lux-staff-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
    border-radius: 15px;
}

.lux-staff-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.lux-staff-card:hover .lux-staff-card__media img { transform: scale(1.06); }

.lux-staff-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.lux-staff-card:hover .lux-staff-card__overlay { opacity: 1; }

.lux-staff-card__social {
    display: flex;
    gap: 12px;
}

.lux-staff-card__social a {
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
}

.lux-staff-card__social a:hover {
    background: var(--gold);
    color: var(--black);
}

.lux-staff-card__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 6px;
}

.lux-staff-card__role {
    color: var(--gray-500);
    font-size: 13px;
    margin: 0;
}

.lux-staff-card__meta {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--gray-800);
}

/* Staff page */
.lux-staff-page {
    background: var(--cream);
    padding-top: 72px;
    padding-bottom: 96px;
}

.lux-staff-page__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.lux-staff-page__lead {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-500);
}

.lux-staff-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .lux-staff-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .lux-staff-page__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Gallery */
.lux-gallery { background: var(--white); }

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

.lux-gallery__item {
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 1;
}

.lux-gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }

.lux-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.lux-gallery__item:hover img { transform: scale(1.1); }

.lux-gallery__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(13,13,13,0.8));
    color: var(--white);
    font-size: 13px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.lux-gallery__item:hover .lux-gallery__caption { transform: translateY(0); }

/* Lightbox */
.lux-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13,13,13,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lux-lightbox[hidden] { display: none; }

.lux-lightbox__close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 40px;
    color: var(--white);
    line-height: 1;
}

.lux-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(201,161,91,0.3);
}

/* CTA */
.lux-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lux-cta__media {
    position: absolute;
    inset: 0;
}

.lux-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.72);
}

.lux-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
}

.lux-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin: 0 0 16px;
}

.lux-cta__text {
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.8);
}

.lux-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Contact */
.lux-contact {
    background: var(--white);
}

.lux-contact__layout {
    display: grid;
    gap: 48px;
    align-items: start;
}

.lux-contact__form-panel {
    background: #ebebeb;
    padding: clamp(24px, 4vw, 40px);
}

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

.lux-contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.lux-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lux-contact-form__field input,
.lux-contact-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #bdbdbd;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.lux-contact-form__field textarea {
    min-height: 180px;
    resize: vertical;
}

.lux-contact-form__field input::placeholder,
.lux-contact-form__field textarea::placeholder {
    color: #8a8a8a;
}

.lux-contact-form__field input:focus,
.lux-contact-form__field textarea:focus {
    outline: none;
    border-color: #b87333;
    box-shadow: 0 0 0 1px rgba(184, 115, 51, 0.15);
}

.lux-contact-form__error {
    font-size: 12px;
    color: #c0392b;
}

.lux-contact-form__submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    border: none;
    background: #b87333;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.lux-contact-form__submit:hover {
    background: #a0642d;
}

.lux-contact__script-title {
    font-family: var(--font-footer-title);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    margin: 0 0 18px;
}

.lux-contact__script-title--sub {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 36px;
    margin-bottom: 16px;
}

.lux-contact__intro {
    margin: 0 0 28px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

.lux-contact__details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
}

.lux-contact__details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.lux-contact__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #b87333;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.lux-contact__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 4px;
}

.lux-contact__details a,
.lux-contact__details span {
    font-size: 15px;
    line-height: 1.55;
    color: #333333;
}

.lux-contact__details a:hover {
    color: #b87333;
}

.lux-contact__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lux-contact__social-link {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #b87333;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background var(--transition), transform var(--transition);
}

.lux-contact__social-link:hover {
    background: #a0642d;
    transform: translateY(-2px);
}

.lux-contact--page {
    padding-top: 72px;
    padding-bottom: 96px;
    background: var(--cream);
}

.lux-contact-page__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.lux-contact-page__lead {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-500);
}

.lux-contact-page__hours {
    margin-bottom: 28px;
}

.lux-contact-page__hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.lux-contact-page__hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-800);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.lux-contact-page__hours-list li span:first-child {
    font-weight: 600;
}

/* Services page — featured alternating showcase */
.lux-services-showcase {
    /* background: #eceae6; */
    padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
}

.lux-services-showcase__inner {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vw, 56px);
}

.lux-service-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow var(--transition), transform var(--transition);
}

.lux-service-feature:hover {
    box-shadow: 0 10px 36px rgba(13, 13, 13, 0.06);
    transform: translateY(-2px);
}

.lux-service-feature__media {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.lux-service-feature__img,
.lux-service-feature__placeholder {
    width: 75%;
    height: 250px;
    min-height: 250px;
    object-fit: cover;
    display: block;
    margin: 50px;
    border-radius: 10px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-service-feature:hover .lux-service-feature__img {
    transform: scale(1.04);
}

.lux-service-feature__placeholder {
    background: linear-gradient(145deg, #2a2a2a 0%, #4a4035 55%, #c9a15b 100%);
}

.lux-service-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 56px) clamp(28px, 4.5vw, 52px);
}

.lux-service-feature__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: var(--gold);
}

.lux-service-feature__number {
    display: inline-block;
    margin-right: 0.15em;
}

.lux-service-feature__description,
.lux-service-feature__description p {
    margin: 0 0 16px;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.75;
    color: var(--gray-800);
}

.lux-service-feature__description p:last-child {
    margin-bottom: 0;
}

.lux-service-feature__description--plain {
    margin-bottom: 24px;
}

.lux-service-feature__includes {
    margin: 8px 0 28px;
}

.lux-service-feature__includes-label {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
}

.lux-service-feature__includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
}

.lux-service-feature__includes-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-800);
}

.lux-service-feature__includes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.lux-service-feature__cta {
    align-self: flex-start;
    margin-top: auto;
}

.lux-service-feature--reverse .lux-service-feature__media {
    order: 2;
}

.lux-service-feature--reverse .lux-service-feature__content {
    order: 1;
}

/* Services page */
.lux-services-page {
    background: #eceae6;
    padding-top: 48px;
    padding-bottom: 96px;
}
.lux-service-card__media img{
    border-radius: 15px;
}
.lux-services-page__inner {
    max-width: 1180px;
}

.lux-services-page__header {
    text-align: center;
    margin-bottom: 36px;
}

.lux-services-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}

.lux-services-gender {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 8vw, 72px);
    margin-bottom: 36px;
}

.lux-services-gender__btn {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    padding: 6px 0;
    transition: color var(--transition);
}

.lux-services-gender__btn:hover,
.lux-services-gender__btn.is-active {
    color: var(--gold);
}

.lux-services-treatments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.lux-services-treatment {
    min-width: 120px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.72);
    color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.lux-services-treatment:hover,
.lux-services-treatment.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.lux-services-page__results {
    position: relative;
    transition: min-height 0.3s ease;
}

.lux-services-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    transition: opacity 0.3s ease;
}

.lux-services-page__grid.is-loading { opacity: 0.4; pointer-events: none; }

.lux-services-page__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.lux-services-page__loader[hidden] {
    display: none !important;
}

.lux-service-card--page {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px 20px;
    overflow: hidden;
    box-shadow: none;
    height: 180px;
    min-height: 0;
    transition: box-shadow var(--transition);
}

.lux-service-card--page:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(13, 13, 13, 0.22);
}

.lux-service-card--page .lux-service-card__media {
    /* flex: 0 0 72px; */
    width: 134px;
    height: 100px;
    min-height: 90px;
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
}

.lux-service-card--page .lux-service-card__media img,
.lux-service-card--page .lux-service-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-service-card--page .lux-service-card__placeholder {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.lux-service-card--page .lux-service-card__body {
    flex: 1;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
}

.lux-service-card--page .lux-service-card__title {
    color: #c5a059;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
}

.lux-service-card--page .lux-service-card__duration {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
}

.lux-services-page__grid > .lux-service-card::after {
    content: none;
}

.lux-services-page__empty {
    text-align: center;
    color: var(--gray-500);
    font-size: 15px;
    margin: 32px 0 0;
}

.lux-spinner {
    display: inline-block;
    width: 36px; height: 36px;
    border: 2px solid var(--gray-100);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: luxSpin 0.8s linear infinite;
}

@keyframes luxSpin { to { transform: rotate(360deg); } }

/* Footer */
@font-face {
    font-family: 'Baby Giviona';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/BabyGiovaniScript.ttf') format('truetype');
}

.lux-footer {
    /* background: #000000; */
    background: #211e1f;
    color: rgba(255, 255, 255, 0.88);
    padding: 100px 0 30px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
}

.lux-footer__container {
    max-width: 1300px;
}

.lux-footer__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 70px;
}

.lux-footer__logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.lux-footer__logo-img {
    display: block;
    width: min(70%, 380px);
    height: auto;
    object-fit: contain;
}

.lux-footer__divider {
    width: 100%;
    height: 0;
    border-top: 1px solid rgba(201, 161, 91, 0.55);
    margin: 0;
}

.lux-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0 80px;
}

.lux-footer__title {
    font-family: var(--font-footer-title);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: capitalize;
    color: var(--gold);
    margin: 0 0 18px;
}

.lux-footer__about {
    width: 100%;
    max-width: 340px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.lux-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.lux-footer__social-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    background: rgba(2, 1, 1, 0.07);
    color: var(--gold);
    font-size: 15px;
    transition: background var(--transition), color var(--transition);
}

.lux-footer__social-link:hover {
    background: var(--gold);
    color: #000000;
}

.lux-footer__links,
.lux-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lux-footer__links li {
    margin-bottom: 15px;
}

.lux-footer__links li:last-child {
    margin-bottom: 0;
}

.lux-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.5;
    transition: color var(--transition);
}

.lux-footer__links a i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

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

.lux-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
}

.lux-footer__contact li:last-child {
    margin-bottom: 0;
}

.lux-footer__contact i {
    color: var(--gold);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 5px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.lux-footer__contact a {
    color: inherit;
    transition: color var(--transition);
}

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

.lux-footer__bottom {
    padding: 18px 0 8px;
    text-align: center;
}

.lux-footer__bottom p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

/* Toast */
.lux-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    background: var(--black);
    color: var(--white);
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
    animation: luxToastIn 0.4s ease;
}

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

/* ==========================================================================
   RESPONSIVE — Mobile First Breakpoints
   ========================================================================== */

@media (min-width: 375px) {
    .lux-container { padding: 0 24px; }
}

@media (min-width: 480px) {
    .lux-gallery__grid { grid-template-columns: repeat(3, 1fr); }

    .lux-services-page__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 14px;
    }

    .lux-services-page__grid > .lux-service-card:not(:nth-child(2n))::after {
        content: '';
        position: absolute;
        top: 10%;
        right: -20px;
        width: 0;
        height: 80%;
        border-right: 2px dotted #c5a059;
    }
}

@media (min-width: 576px) {
    .lux-section { padding: 100px 0; }
    .lux-stats { gap: 24px; }
    .lux-newsletter { flex-direction: row; }
    .lux-newsletter input { flex: 1; }
}

@media (min-width: 768px) {
    :root { --header-h: 80px; }

    .lux-hero--video {
        min-height: 90vh;
        min-height: 90dvh;
    }

    .lux-hero--image {
        min-height: 75vh;
        min-height: 75dvh;
    }

    .lux-about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .lux-contact__layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
        align-items: center;
    }

    .lux-contact-form__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }

    .lux-footer__col--about {
        grid-column: 1 / -1;
    }

    .lux-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .lux-hamburger { display: none; }

    .lux-nav--left,
    .lux-nav--right,
    .lux-header__right {
        display: flex;
    }

    .lux-header__cta { display: inline-flex; }

    .lux-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .lux-logo--center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        grid-column: auto;
        justify-self: auto;
    }

    .lux-footer__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 24px 20px;
        align-items: start;
    }

    .lux-footer__col--about {
        grid-column: auto;
    }

    .lux-hero--video {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .lux-hero--image {
        min-height: 80vh;
        min-height: 80dvh;
    }

    .lux-services-page__grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 48px;
        row-gap: 18px;
    }

    .lux-services-page__grid > .lux-service-card {
        padding: 15px 20px;
    }

    .lux-services-page__grid > .lux-service-card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        top: 10%;
        right: -24px;
        width: 0;
        height: 80%;
        border-right: 2px dotted #c5a059;
    }
}

@media (min-width: 1200px) {
    .lux-container { padding: 0 40px; }
    .lux-section { padding: 120px 0; }
}

@media (min-width: 1400px) {
    .lux-container { max-width: 1096px; }
}

@media (min-width: 1600px) {
    .lux-container { max-width: 1096px; }
    .lux-hero__title { font-size: 5rem; }
}

@media (max-width: 1024px) {
    .lux-footer {
        padding-top: 70px;
    }

    .lux-footer__title {
        font-size: 24px;
    }

    .lux-footer__grid {
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .lux-hamburger { display: flex; }

    .lux-nav,
    .lux-header__right {
        display: none !important;
    }

    .lux-service-feature {
        grid-template-columns: 1fr;
    }

    .lux-service-feature__media,
    .lux-service-feature--reverse .lux-service-feature__media {
        order: -1;
    }

    .lux-service-feature__content,
    .lux-service-feature--reverse .lux-service-feature__content {
        order: 2;
    }

    .lux-service-feature__media,
    .lux-service-feature__img,
    .lux-service-feature__placeholder {
        min-height: 250px;
    }

    .lux-service-feature:hover {
        transform: none;
    }

    .lux-header__inner {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 0 16px;
        margin: 0;
    }

    .lux-logo--center {
        grid-column: 2;
        justify-self: center;
        position: static;
        transform: none;
        left: auto;
        top: auto;
        max-width: calc(100% - 8px);
    }

    .lux-logo__img {
        height: 40px;
        max-width: min(160px, 100%);
    }
}

@media (max-width: 767px) {
    .lux-service-feature__includes-list {
        grid-template-columns: 1fr;
    }

    .lux-footer {
        padding: 70px 0 30px;
    }

    .lux-footer__logo-wrap {
        padding-bottom: 40px;
    }

    .lux-footer__logo-img {
        width: min(85%, 260px);
    }

    .lux-footer__grid {
        padding-top: 36px;
        padding-bottom: 50px;
    }

    .lux-footer__title {
        font-size: 23px;
    }

    .lux-hero__content {
        width: 100%;
        max-width: 100%;
        padding: calc(var(--header-h) + 28px) 16px 64px;
        box-sizing: border-box;
    }

    .lux-hero__title {
        font-size: clamp(1.85rem, 8.5vw, 2.5rem);
        line-height: 1.15;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .lux-hero__title-word {
        display: inline;
    }

    .lux-hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .lux-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lux-hero__actions .lux-btn {
        width: 100%;
    }

    .lux-stats { grid-template-columns: 1fr; }
    .lux-stat { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 20px; }
    .lux-stat__number { margin-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
