:root {
    /* Elite Color Palette - Extracted from Salon Interior */
    --clr-bg: #FDFBFA;
    /* Warm Off-white */
    --clr-bg-alt: #F7F2EE;
    /* Soft Cream */
    --clr-primary: #B36D4D;
    /* Terracotta / Burnt Orange */
    --clr-secondary: #8CA399;
    /* Sage Green */
    --clr-accent: #D9C5B2;
    /* Muted Gold/Tan */
    --clr-text: #1C1C1C;
    /* Deep Charcoal */
    --clr-text-muted: #6B6B6B;
    --clr-white: #FFFFFF;
    --clr-glass: rgba(255, 255, 255, 0.8);

    /* Typography - Vogue / Editorial Style */
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Montserrat', sans-serif;

    /* Fluid Scale & Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 8rem;

    --container-max: 1400px;
    --br-sm: 4px;
    --br-md: 12px;
    --br-arch: 500px 500px 0 0;
    /* Architectural Arch */

    /* Shadows */
    --sh-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --sh-premium: 0 20px 50px rgba(179, 109, 77, 0.1);

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    --header-height: 100px;
    --header-height-scrolled: 80px;

    --container-header-max: 1250px;
}

/* Base Resets */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    font-family: var(--ff-body);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Mastery */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--clr-text-muted);
}

.text-vogue {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Layout Architecture */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.section {
    padding: var(--sp-xl) 0;
}

/* Elite UI Elements */
.arch-frame {
    border-radius: var(--br-arch);
    overflow: hidden;
    position: relative;
    display: block;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-text);
    transform: translateY(-5px);
    box-shadow: var(--sh-premium);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15),
            transparent);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: #111111;
    backdrop-filter: blur(15px);
    box-shadow: var(--sh-soft);
}

.header-wrap {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    order: -1;
}

@media (min-width: 1024px) {
    .header-logo {
        order: 0;
    }
}

.nav {
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

.header-actions {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.header-reserve-btn {
    margin-left: 40px;
}

.header-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.header.scrolled .header-logo img {
    height: 50px;
}

/* Desktop Specific Constraints */
@media (min-width: 1024px) {
    .header-wrap {
        padding: 0 40px;
    }

    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center;
        list-style: none !important;
        padding: 0;
        margin: 0;
    }

    .header-logo img {
        height: 140px;
        max-height: 140px;
        margin: 0 auto;
    }

    .header.scrolled .header-logo img {
        height: 100px;
    }

    .header-actions {
        padding-left: 0;
    }

    .header {
        height: auto;
        min-height: 160px;
        padding: 20px 0;
    }

    .header.scrolled {
        min-height: 120px;
        padding: 10px 0;
    }
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none !important;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links li {
    list-style: none !important;
}

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.nav-mobile-btn {
    display: none !important;
}

.hero .hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 1px;
    background: var(--clr-text);
    transition: var(--transition);
}

/* Hero Section & Slider System */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-logo-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    pointer-events: none;
}

.hero-logo-overlay img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-wrap {
    position: relative;
    z-index: 5;
    color: var(--clr-white);
    margin-top: 5rem;
}

.hero-wrap p {
    color: var(--clr-accent);
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--clr-white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--clr-white);
    width: 40px;
    border-radius: 10px;
}

/* Inside Our Salon - Video Tour */
.video-tour-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 4rem;
}

.video-frame {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
    box-shadow: var(--sh-premium);
    cursor: pointer;
    background: #000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full video is visible */
}

.video-frame.vertical {
    aspect-ratio: 9 / 16;
    max-width: 380px;
    margin: 0 auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.video-frame:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 100px;
    height: 100px;
    background: var(--clr-white);
    border-radius: 50%;
    position: relative;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent var(--clr-text);
}

/* Beauty Tips & Insights */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.insight-card {
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-15px);
}

.insight-img {
    height: 300px;
    margin-bottom: 2rem;
}

.insight-meta h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.btn-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-primary);
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 4px;
}

.hero-wrap {
    position: relative;
    z-index: 2;
}

.hero-badge {
    position: absolute;
    bottom: var(--sp-lg);
    right: var(--sp-md);
}

.badge-circle {
    width: 100px;
    height: 100px;
    border: 1px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Services Staggered Layout */
.services-staggered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
    margin-top: var(--sp-lg);
}

.service-img {
    height: 400px;
    margin-bottom: var(--sp-md);
    transition: var(--transition);
}

.service-el:hover .service-img {
    transform: translateY(-10px);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* About Layout */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.trust-list {
    margin-top: var(--sp-md);
}

.trust-list li {
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    display: flex;
    align-items: center;
}

.trust-list li::before {
    content: '✦';
    margin-right: 1.5rem;
    color: var(--clr-primary);
}

.about-visuals {
    position: relative;
    padding-bottom: 100px;
}

.main-visual {
    height: 550px;
    box-shadow: var(--sh-soft);
}

.floating-visual {
    position: absolute;
    bottom: -60px;
    right: -60px;
    height: 380px;
    width: 300px;
    border: 15px solid var(--clr-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 5;
    background-color: var(--clr-bg-alt);
}

/* Responsive Foundations */
/* Gallery Luxury Grid */
.gallery-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: var(--sp-md);
    margin-top: var(--sp-lg);
}

.gallery-item {
    transition: var(--transition);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

/* Pricing Menu */
.pricing-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    margin-top: var(--sp-lg);
}

.pricing-cat {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: var(--sp-md);
    color: var(--clr-primary);
}

.price-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.p-name {
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.p-dots {
    flex-grow: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 1.5rem;
}

.p-val {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Testimonials Elite */
.testimonials-elite {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.t-text {
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 2rem 0;
    color: var(--clr-text);
}

.t-author {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    font-weight: 700;
    color: var(--clr-primary);
}

/* Reservation Form */
.reservation-wrap {
    max-width: 800px;
}

.res-form {
    margin-top: var(--sp-lg);
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.res-form input,
.res-form select {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--clr-bg-alt);
    border: none;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.res-form input:focus {
    outline: 1px solid var(--clr-primary);
}

/* Footer Excellence */
.footer {
    background-color: var(--clr-bg-alt);
    padding: var(--sp-lg) 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--sp-lg);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

.footer-social a {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.6rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

/* Final Responsive Master */
@media (max-width: 1200px) {
    :root {
        --sp-xl: 6rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        letter-spacing: 0.15rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 64px;
        background: #111111;
    }

    .header-wrap {
        padding: 0 20px;
        grid-template-columns: auto 1fr;
    }

    .header-logo img {
        height: 36px;
    }

    .header-reserve-btn {
        display: none !important;
    }

    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #111111;
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-mobile-btn {
        display: inline-flex;
        margin-top: 2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 10001;
        justify-self: end;
    }
}


@media (max-width: 640px) {
    :root {
        --sp-xl: 4rem;
        --sp-lg: 3rem;
    }

    .header-wrap {
        padding: 0 0.5rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.55rem;
    }

    .hero-wrap {
        margin-top: 1rem;
        padding-top: calc(var(--header-height-scrolled) + 2rem);
    }

    .hero-logo-overlay {
        top: 12%;
    }

    .hero-logo-overlay img {
        height: 50px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-luxury {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .item-wide {
        grid-column: span 1;
    }

    .t-text {
        font-size: 1.5rem;
    }

    .floating-visual {
        width: 180px;
        height: 220px;
    }

    .video-frame.vertical {
        max-width: 280px;
    }
}