/* ═══════════════════════════════════════════════════════════
   ENACHE ESTUDIO — Premium Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── CRITICAL CSS LOAD & PERFORMANCE ─── */
/* Preload fonts for faster rendering */
@font-face {
    font-family: 'Playfair Display';
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* ─── CUSTOM PROPERTIES ─── */
:root {
    /* Colors */
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --charcoal: #2a2a2a;
    --gray-dark: #3a3a3a;
    --gray: #6b6b6b;
    --gray-light: #999999;
    --cream: #f5f0eb;
    --cream-soft: #faf7f4;
    --white: #fefefe;
    --gold: #c9a96e;
    --gold-light: #d4b97a;
    --gold-dark: #b8944f;

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Sizing */
    --container: 1320px;
    --header-h: 80px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
    --duration: 0.6s;
    --duration-fast: 0.3s;
    --duration-slow: 1s;
}

/* Performance optimizations for off-screen sections */
.services,
.experience,
.gallery,
.testimonials,
.contact-section,
.about-story,
.about-values,
.about-team,
.shop-section,
.services-hub,
.price-section,
.page-cta {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Hero and critical sections remain visible */
.hero,
.header,
.preloader {
    content-visibility: visible;
}

/* Performance containment for complex elements */
.service-card,
.gallery__item,
.testimonial,
.team-member,
.product-card,
.hub-card,
.value-card,
.price-item,
.contact-card {
    contain: layout style paint;
}

/* GPU acceleration for animated elements */
.parallax-img,
.cursor,
.whatsapp-float,
.service-card__image,
.gallery__img,
.hub-card__image,
.team-member__image,
.product-card__image {
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

body.preloader-active {
    overflow: hidden;
}

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

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

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

ul {
    list-style: none;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
    }

    * {
        cursor: none !important;
    }
}

.cursor__dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    transition: transform 0.15s ease;
}

.cursor__outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    top: -18px;
    left: -18px;
    opacity: 0.5;
    transition: transform 0.15s var(--ease-out-expo),
        width 0.3s var(--ease-out-expo),
        height 0.3s var(--ease-out-expo),
        top 0.3s var(--ease-out-expo),
        left 0.3s var(--ease-out-expo),
        opacity 0.3s ease;
}

.cursor.cursor--hover .cursor__outline {
    width: 56px;
    height: 56px;
    top: -28px;
    left: -28px;
    opacity: 0.8;
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    display: flex;
    gap: 0.15em;
    justify-content: center;
    overflow: hidden;
}

.preloader__letter {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.2em;
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.preloader__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.8em;
    margin-top: var(--space-sm);
    opacity: 0;
}

.preloader__line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: var(--space-md) auto 0;
}

/* ═══════════════════════════════════════════════════════════
   BOOK NOW FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
/* WhatsApp floating bubble */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Old book-now-float — kept hidden for compatibility */
.book-now-float {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 9998;
    transition: transform var(--duration) var(--ease-out-expo),
        background var(--duration-fast) ease;
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header--hidden {
    transform: translateY(-100%);
}

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

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.nav__logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.nav__menu {
    display: none;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .nav__menu {
        display: flex;
        align-items: center;
    }
}

.nav__link {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--duration-fast) ease;
}

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

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

.nav__link:hover::after {
    width: 100%;
}

/* Nav Toggle (Hamburger) */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 10001;
}

@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }
}

.nav__toggle-line {
    width: 28px;
    height: 1.5px;
    background: var(--cream);
    transition: transform var(--duration-fast) var(--ease-out-expo),
        opacity var(--duration-fast) ease;
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease-out-expo),
        visibility var(--duration) var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    text-align: center;
}

.mobile-menu__item {
    overflow: hidden;
}

.mobile-menu__link {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 500;
    color: var(--cream);
    padding: 0.3em 0;
    transition: color var(--duration-fast) ease;
    transform: translateY(100%);
    opacity: 0;
}

.mobile-menu.active .mobile-menu__link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__footer {
    margin-top: var(--space-lg);
}

.mobile-menu__tagline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
}

.mobile-menu.active .mobile-menu__tagline {
    opacity: 1;
    transition: opacity 0.8s ease 0.5s;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.4) 40%,
            rgba(10, 10, 10, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-md);
    max-width: 900px;
}

.hero__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.hero__title-line--italic {
    font-style: italic;
    color: var(--gold);
    font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.hero__subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(245, 240, 235, 0.7);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background var(--duration-fast) ease,
        color var(--duration-fast) ease;
}

.hero__cta:hover {
    background: var(--gold);
    color: var(--black);
}

.hero__cta svg {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.hero__cta:hover svg {
    transform: translateY(4px);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.hero__scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}

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

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
}

.section-header--light .section-header__tag {
    color: var(--gold-light);
}

.section-header--light .section-header__title {
    color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.services__category {
    margin-bottom: var(--space-xl);
}

.services__category:last-child {
    margin-bottom: 0;
}

.services__category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.services__number {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 400;
}

.services__category-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.services__category-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
}

/* Services Grid — Women */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

/* Service Card */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--white);
    transition: transform var(--duration) var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card__image-wrap {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.service-card--tall .service-card__image-wrap {
    height: 420px;
}

@media (min-width: 768px) {
    .service-card--tall .service-card__image-wrap {
        height: 100%;
    }

    .service-card--tall {
        grid-row: span 2;
    }
}

.service-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.service-card__content {
    padding: var(--space-md);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.service-card__price {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* Service Card — Horizontal (Men) */
.services__grid--men {
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.service-card--horizontal {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-card--horizontal {
        flex-direction: row;
    }

    .service-card--horizontal .service-card__image-wrap {
        width: 45%;
        height: auto;
        min-height: 280px;
    }

    .service-card--horizontal .service-card__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE SECTION
   ═══════════════════════════════════════════════════════════ */
.experience {
    padding: var(--space-2xl) 0;
    background: var(--black);
    color: var(--cream);
    overflow: hidden;
}

/* Marquee */
.experience__marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: var(--space-xl);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: var(--space-md) 0;
}

.experience__marquee-inner {
    display: inline-flex;
    gap: var(--space-lg);
    animation: marquee 20s linear infinite;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: rgba(245, 240, 235, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.experience__marquee-dot {
    color: var(--gold);
    font-size: 0.5em;
    opacity: 0.3;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .experience__grid {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-2xl);
    }
}

.experience__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.experience__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.experience__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.65);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

/* Stats */
.experience__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat__number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.stat__suffix {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
}

.stat__label {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Experience Images */
.experience__images {
    position: relative;
    height: 500px;
}

@media (max-width: 1023px) {
    .experience__images {
        height: 400px;
    }
}

.experience__img {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
}

.experience__img--1 {
    width: 65%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.experience__img--2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 3px solid var(--gold);
}

.experience__img .parallax-img {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--cream-soft);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

.gallery__item {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 2px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .gallery__item--wide {
        grid-column: span 2;
    }
}

.gallery__img {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.7) 0%,
            transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out-expo);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--cream);
    transform: translateY(20px);
    transition: transform var(--duration) var(--ease-out-expo);
}

.gallery__item:hover .gallery__item-overlay span {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--charcoal);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.testimonial {
    padding: var(--space-lg);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 2px;
    transition: border-color var(--duration) ease,
        transform var(--duration) var(--ease-out-expo);
}

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

.testimonial__stars {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.testimonial__quote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.testimonial__name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.testimonial__service {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer__cta {
    padding: var(--space-2xl) 0;
    background: var(--cream);
    text-align: center;
}

.footer__cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.footer__cta-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 3rem;
    background: var(--black);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background var(--duration-fast) ease,
        transform var(--duration) var(--ease-out-expo),
        box-shadow var(--duration) var(--ease-out-expo);
}

.footer__cta-btn:hover {
    background: var(--charcoal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer__cta-btn svg {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.footer__cta-btn:hover svg {
    transform: translateX(4px);
}

.footer__main {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--black);
    color: var(--cream);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-xl);
    }
}

.footer__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer__logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.footer__brand-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    font-style: italic;
}

.footer__col-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.footer__list li {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer__list a {
    transition: color var(--duration-fast) ease;
}

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

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    color: var(--cream);
    transition: border-color var(--duration-fast) ease,
        background var(--duration-fast) ease,
        color var(--duration-fast) ease;
}

.footer__social-link:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray);
}

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

/* ═══════════════════════════════════════════════════════════
   REVEAL TEXT ANIMATIONS (initial state — GSAP handles rest)
   ═══════════════════════════════════════════════════════════ */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal-text,
    .reveal-up {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
    
    .parallax-img {
        transform: none !important;
    }
    
    .hero__scroll-line {
        animation: none;
    }
    
    .experience__marquee-inner {
        animation: none;
    }
    
    .whatsapp-float::before {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .hero {
        min-height: 600px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .experience__stats {
        gap: var(--space-md);
    }

    .gallery__item {
        height: 250px;
    }

    .testimonial {
        padding: var(--space-md);
    }

    .book-now-float {
        bottom: var(--space-sm);
        right: var(--space-sm);
        padding: 0.75rem 1.4rem;
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   ACTIVE NAV LINK
   ═══════════════════════════════════════════════════════════ */
.nav__link--active {
    color: var(--gold);
}

.nav__link--active::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (INNER PAGES)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero--short {
    height: 50vh;
    min-height: 380px;
}

.page-hero__bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.65) 0%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.75) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-md);
    max-width: 800px;
}

.page-hero__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.page-hero__title em {
    font-style: italic;
    color: var(--gold);
}

.page-hero__desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: rgba(245, 240, 235, 0.5);
    transition: color var(--duration-fast) ease;
}

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

.breadcrumb span {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES HUB
   ═══════════════════════════════════════════════════════════ */
.services-hub {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.services-hub__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-hub__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-md);
    }
}

.hub-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    background: var(--white);
    transition: transform var(--duration) var(--ease-out-expo);
}

.hub-card:hover {
    transform: translateY(-12px);
}

.hub-card__image-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hub-card__image-wrap {
        height: 500px;
    }
}

.hub-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.hub-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0) 30%,
            rgba(10, 10, 10, 0.85) 100%);
}

.hub-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-md);
    z-index: 2;
}

.hub-card__number {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.hub-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.hub-card__desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.hub-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: gap var(--duration-fast) var(--ease-out-expo);
}

.hub-card:hover .hub-card__cta {
    gap: 0.8rem;
}

.hub-card__cta svg {
    transition: transform var(--duration-fast) var(--ease-out-expo);
}

.hub-card:hover .hub-card__cta svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   PRICE SECTION (Peluquería, Estética, Belleza)
   ═══════════════════════════════════════════════════════════ */
.price-section {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.price-category {
    margin-bottom: var(--space-xl);
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-category__number {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 400;
}

.price-category__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.price-category__line {
    flex: 1;
    height: 1px;
    background: rgba(201, 169, 110, 0.3);
}

.price-category__subtitle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
    color: var(--gray);
}

.price-category__badge {
    display: inline-block;
    padding: 0.3em 0.8em;
    background: var(--gold);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* Price List */
.price-list {
    max-width: 900px;
}

.price-item {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.06);
    transition: background var(--duration-fast) ease;
}

.price-item:hover {
    background: rgba(201, 169, 110, 0.04);
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.price-item__info {
    flex-shrink: 0;
    max-width: 55%;
}

.price-item__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
}

.price-item__desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.price-item__dots {
    flex: 1;
    border-bottom: 2px dotted rgba(201, 169, 110, 0.25);
    margin-bottom: 0.35em;
    min-width: 30px;
}

.price-item__price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-list--compact .price-item {
    padding: 0.8rem 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE CTA
   ═══════════════════════════════════════════════════════════ */
.page-cta {
    padding: var(--space-2xl) 0;
    background: var(--black);
    text-align: center;
}

.page-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.page-cta__title em {
    font-style: italic;
    color: var(--gold);
}

.page-cta__desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.6);
    margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT / SOBRE NOSOTROS
   ═══════════════════════════════════════════════════════════ */
.about-story {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
}

.about-story__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.about-story__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.about-story__title em {
    font-style: italic;
    color: var(--gold);
}

.about-story__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.about-story__image {
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
}

.about-story__image .parallax-img {
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1023px) {
    .about-story__image {
        height: 350px;
    }
}

/* Values */
.about-values {
    padding: var(--space-2xl) 0;
    background: var(--black);
}

.about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.value-card {
    padding: var(--space-lg) var(--space-md);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 2px;
    text-align: center;
    transition: border-color var(--duration-fast) ease,
        transform var(--duration) var(--ease-out-expo);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.value-card__icon {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.value-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.7;
}

/* Team Grid */
.about-team {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

.team-member {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: transform var(--duration) var(--ease-out-expo),
        box-shadow var(--duration) var(--ease-out-expo);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.team-member__image-wrap {
    height: 340px;
    overflow: hidden;
}

.team-member__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.team-member__info {
    padding: var(--space-md);
}

.team-member__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.team-member__role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-member__bio {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SHOP
   ═══════════════════════════════════════════════════════════ */
.shop-section {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-xl);
}

.shop-filter {
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.shop-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.shop-filter--active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 500;
}

/* Product Grid */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

.product-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: transform var(--duration) var(--ease-out-expo),
        box-shadow var(--duration) var(--ease-out-expo);
}

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

.product-card__image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f0ece5;
}

.product-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.product-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.3em 0.7em;
    background: var(--gold);
    color: var(--black);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.product-card__content {
    padding: var(--space-md);
}

.product-card__brand {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}


.product-card__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.product-card__volume {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.product-card__price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
}

.product-card__add {
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--duration-fast) ease;
}

.product-card__add:hover {
    background: var(--gold-dark);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE INNER PAGES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero--short {
        height: 40vh;
        min-height: 300px;
    }

    .price-item__info {
        max-width: 60%;
    }

    .product-card__image-wrap {
        height: 180px;
    }

    .team-member__image-wrap {
        height: 280px;
    }

    .hub-card__image-wrap {
        height: 300px;
    }
}

/* Disable custom cursor on touch devices */
@media (hover: none) {
    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }

    .cursor {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — TABLETS (768px - 1023px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero Section — Tablets */
    .hero {
        min-height: 600px;
    }

    .hero__content {
        max-width: 700px;
        padding: 0 var(--space-lg);
    }

    .hero__title-line {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .hero__title-line--italic {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero__subtitle {
        max-width: 450px;
    }

    /* Services Grid — Tablets (2 columns) */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .services__grid--men {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card--tall {
        grid-row: span 1;
    }

    .service-card--tall .service-card__image-wrap {
        height: 320px;
    }

    /* Gallery — Tablets */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .gallery__item {
        height: 280px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    /* Testimonials — Tablets */
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .testimonial {
        padding: var(--space-md);
    }

    /* Services Hub — Tablets */
    .services-hub__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .hub-card__image-wrap {
        height: 350px;
    }

    /* Shop — Tablets */
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    /* Team — Tablets */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer — Tablets */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    /* Container spacing — Tablets */
    .container {
        padding: 0 var(--space-lg);
    }

    /* Section spacing — Tablets */
    .services,
    .experience,
    .gallery,
    .testimonials,
    .services-hub,
    .price-section,
    .about-story,
    .about-values,
    .about-team,
    .shop-section {
        padding: var(--space-xl) 0;
    }

    .footer__cta {
        padding: var(--space-xl) 0;
    }

    .footer__main {
        padding: var(--space-lg) 0 var(--space-md);
    }

    /* Experience — Tablets */
    .experience__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .experience__images {
        height: 400px;
    }

    /* About Story — Tablets */
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-story__image {
        height: 350px;
    }

    /* Section Header — Tablets */
    .section-header {
        margin-bottom: var(--space-lg);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — MOBILE (< 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Hero Section — Mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: var(--space-xl) 0;
    }

    .hero__content {
        max-width: 100%;
        padding: 0 var(--space-md);
    }

    .hero__title-line {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.1;
    }

    .hero__title-line--italic {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero__subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: var(--space-md);
    }

    .hero__tag {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
        margin-bottom: var(--space-sm);
    }

    .hero__tag-line {
        width: 25px;
    }

    .hero__cta {
        padding: 0.9rem 2rem;
        font-size: 0.75rem;
    }

    /* Services — Mobile (single column) */
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .services__grid--men {
        grid-template-columns: 1fr;
    }

    .services__category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }

    .services__category-line {
        width: 100%;
    }

    .service-card__image-wrap {
        height: 280px;
    }

    .service-card--tall .service-card__image-wrap {
        height: 280px;
    }

    .service-card--horizontal {
        flex-direction: column;
    }

    .service-card--horizontal .service-card__image-wrap {
        width: 100%;
        height: 280px;
        min-height: auto;
    }

    .service-card__content {
        padding: var(--space-sm);
    }

    .service-card__title {
        font-size: 1.1rem;
    }

    /* Gallery — Mobile (single column) */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .gallery__item {
        height: 300px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    /* Testimonials — Mobile (single column) */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .testimonial {
        padding: var(--space-md);
    }

    .testimonial__quote {
        font-size: 0.95rem;
    }

    /* Services Hub — Mobile */
    .services-hub__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hub-card__image-wrap {
        height: 320px;
    }

    .hub-card__content {
        padding: var(--space-md);
    }

    /* Shop — Mobile */
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .product-card__image-wrap {
        height: 160px;
    }

    .product-card__content {
        padding: var(--space-sm);
    }

    .product-card__name {
        font-size: 0.9rem;
    }

    /* Team — Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .team-member__image-wrap {
        height: 320px;
    }

    /* Price Section — Mobile */
    .price-category__header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }

    .price-category__line {
        width: 100%;
    }

    .price-item {
        flex-wrap: wrap;
        padding: var(--space-sm) 0;
    }

    .price-item__info {
        max-width: 70%;
    }

    .price-item__name {
        font-size: 0.95rem;
    }

    .price-item__desc {
        font-size: 0.75rem;
    }

    .price-item__price {
        font-size: 1rem;
    }

    /* Experience — Mobile */
    .experience__stats {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-md);
        padding-top: var(--space-md);
    }

    .stat {
        align-items: center;
    }

    .experience__images {
        height: 300px;
    }

    .experience__img--1 {
        width: 70%;
        height: 70%;
    }

    .experience__img--2 {
        width: 55%;
        height: 50%;
    }

    /* About — Mobile */
    .about-story__image {
        height: 280px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .value-card {
        padding: var(--space-md);
    }

    /* Footer — Mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__cta-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .footer__cta-desc {
        font-size: 0.9rem;
    }

    .footer__cta-btn {
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }

    /* Mobile Menu Improvements */
    .mobile-menu__link {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        padding: 0.25em 0;
    }

    .mobile-menu__footer {
        margin-top: var(--space-md);
    }

    /* Nav Improvements — Mobile */
    .nav {
        padding: 0 var(--space-sm);
    }

    .nav__logo-text {
        font-size: 1.2rem;
    }

    .nav__logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.3em;
    }

    .nav__toggle {
        padding: 6px;
    }

    .nav__toggle-line {
        width: 24px;
    }

    /* Page Hero — Mobile */
    .page-hero {
        height: 45vh;
        min-height: 320px;
    }

    .page-hero--short {
        height: 35vh;
        min-height: 260px;
    }

    .page-hero__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-hero__desc {
        font-size: 0.85rem;
    }

    /* Section Headers — Mobile */
    .section-header {
        margin-bottom: var(--space-md);
    }

    .section-header__title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .section-header__tag {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
    }

    /* Container — Mobile */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Reduced spacing — Mobile */
    .services,
    .experience,
    .gallery,
    .testimonials,
    .services-hub,
    .price-section,
    .about-story,
    .about-values,
    .about-team,
    .shop-section,
    .page-cta {
        padding: var(--space-lg) 0;
    }

    .footer__cta {
        padding: var(--space-lg) 0;
    }

    .footer__main {
        padding: var(--space-md) 0 var(--space-sm);
    }

    /* WhatsApp Float — Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    /* Breadcrumb — Mobile */
    .breadcrumb {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — SMALL MOBILE (< 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 479px) {
    /* Typography — Small Mobile */
    html {
        font-size: 14px;
    }

    .hero__title-line {
        font-size: clamp(1.8rem, 11vw, 2.2rem);
    }

    .hero__title-line--italic {
        font-size: clamp(1.6rem, 10vw, 2rem);
    }

    .hero__subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero__tag {
        font-size: 0.6rem;
        letter-spacing: 0.25em;
    }

    /* Buttons — Larger touch targets */
    .hero__cta {
        padding: 1rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer__cta-btn {
        padding: 1.1rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .shop-filter {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }

    .product-card__add {
        padding: 0.6rem 0.8rem;
        font-size: 0.65rem;
    }

    /* Cards — Small Mobile */
    .service-card__image-wrap {
        height: 240px;
    }

    .service-card--tall .service-card__image-wrap {
        height: 240px;
    }

    .service-card--horizontal .service-card__image-wrap {
        height: 240px;
    }

    .gallery__item {
        height: 250px;
    }

    .hub-card__image-wrap {
        height: 280px;
    }

    .team-member__image-wrap {
        height: 280px;
    }

    .product-card__image-wrap {
        height: 140px;
    }

    /* Testimonials — Small Mobile */
    .testimonial {
        padding: var(--space-sm);
    }

    .testimonial__quote {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial__stars {
        font-size: 0.75rem;
        margin-bottom: var(--space-sm);
    }

    .testimonial__author {
        padding-top: var(--space-xs);
    }

    /* Gallery — Small Mobile */
    .gallery__grid {
        gap: 8px;
    }

    /* Shop — Small Mobile (single column) */
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .product-card__image-wrap {
        height: 200px;
    }

    /* Price Section — Small Mobile */
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }

    .price-item__info {
        max-width: 100%;
    }

    .price-item__dots {
        display: none;
    }

    .price-item__price {
        align-self: flex-end;
    }

    /* Experience — Small Mobile */
    .experience__images {
        height: 250px;
    }

    .experience__img--1 {
        width: 75%;
        height: 65%;
    }

    .experience__img--2 {
        width: 60%;
        height: 45%;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    .stat__suffix {
        font-size: 1.2rem;
    }

    /* Mobile Menu — Small Mobile */
    .mobile-menu__link {
        font-size: 1.6rem;
        padding: 0.2em 0;
    }

    /* Footer — Small Mobile */
    .footer__logo-text {
        font-size: 1.4rem;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    /* Section Headers — Small Mobile */
    .section-header__title {
        font-size: 1.5rem;
    }

    .services__category-title,
    .price-category__title {
        font-size: 1.4rem;
    }

    /* Reduced spacing — Small Mobile */
    .services,
    .experience,
    .gallery,
    .testimonials,
    .services-hub,
    .price-section,
    .about-story,
    .about-values,
    .about-team,
    .shop-section,
    .page-cta {
        padding: var(--space-md) 0;
    }

    .footer__cta {
        padding: var(--space-md) 0;
    }

    .container {
        padding: 0 var(--space-xs);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — LANDSCAPE MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) and (orientation: landscape) {
    /* Hero — Landscape Mobile */
    .hero {
        min-height: auto;
        height: auto;
        padding: calc(var(--header-h) + var(--space-md)) 0 var(--space-lg);
    }

    .hero__content {
        padding: 0 var(--space-md);
    }

    .hero__title-line {
        font-size: clamp(1.8rem, 8vh, 2.5rem);
    }

    .hero__title-line--italic {
        font-size: clamp(1.6rem, 7vh, 2.2rem);
    }

    .hero__subtitle {
        max-width: 400px;
        margin-bottom: var(--space-md);
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* Services — Landscape Mobile */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .services__grid--men {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card__image-wrap {
        height: 200px;
    }

    .service-card--tall .service-card__image-wrap {
        height: 200px;
    }

    .service-card__content {
        padding: var(--space-sm);
    }

    .service-card__title {
        font-size: 1rem;
    }

    .service-card__desc {
        font-size: 0.8rem;
        margin-bottom: var(--space-xs);
    }

    /* Gallery — Landscape Mobile */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }

    .gallery__item {
        height: 200px;
    }

    /* Testimonials — Landscape Mobile */
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .testimonial {
        padding: var(--space-sm);
    }

    .testimonial__quote {
        font-size: 0.85rem;
        margin-bottom: var(--space-sm);
    }

    /* Experience — Landscape Mobile */
    .experience__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .experience__images {
        height: 220px;
    }

    .experience__stats {
        flex-direction: row;
        gap: var(--space-md);
        margin-top: var(--space-md);
    }

    /* Shop — Landscape Mobile */
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .product-card__image-wrap {
        height: 130px;
    }

    /* Team — Landscape Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .team-member__image-wrap {
        height: 200px;
    }

    /* Services Hub — Landscape Mobile */
    .services-hub__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .hub-card__image-wrap {
        height: 220px;
    }

    .hub-card__content {
        padding: var(--space-sm);
    }

    .hub-card__title {
        font-size: 1.2rem;
    }

    .hub-card__desc {
        font-size: 0.8rem;
    }

    /* Page Hero — Landscape Mobile */
    .page-hero {
        height: auto;
        min-height: 300px;
        padding: calc(var(--header-h) + var(--space-sm)) 0 var(--space-md);
    }

    .page-hero--short {
        min-height: 240px;
    }

    /* Price Section — Landscape Mobile */
    .price-list {
        max-width: 100%;
    }

    .price-item {
        padding: var(--space-xs) 0;
    }

    .price-item__name {
        font-size: 0.9rem;
    }

    /* About — Landscape Mobile */
    .about-story__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .about-story__image {
        height: 220px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .value-card {
        padding: var(--space-sm);
    }

    /* Footer — Landscape Mobile */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .footer__cta-title {
        font-size: 1.6rem;
    }

    /* Reduced spacing — Landscape Mobile */
    .services,
    .experience,
    .gallery,
    .testimonials,
    .services-hub,
    .price-section,
    .about-story,
    .about-values,
    .about-team,
    .shop-section,
    .page-cta {
        padding: var(--space-md) 0;
    }

    .section-header {
        margin-bottom: var(--space-sm);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE IMPROVEMENTS — SMALL LANDSCAPE MOBILE (< 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 479px) and (orientation: landscape) {
    .hero__title-line {
        font-size: 1.6rem;
    }

    .hero__title-line--italic {
        font-size: 1.4rem;
    }

    .services__grid,
    .services__grid--men {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item {
        height: 160px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .experience__grid {
        grid-template-columns: 1fr;
    }

    .experience__images {
        height: 180px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-story__image {
        height: 180px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}
