/* ============================================================
   NOVA NAIL SALON — LUXURY THEME
   Palette: Ivory · Cream · Nude · Champagne Gold · Espresso
   Type: Cormorant Garamond (serif) + Jost (sans)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Core palette */
    --ivory:        #FAF7F2;
    --cream:        #F5EEE4;
    --nude:         #EDE0CF;
    --blush:        #F0E6DA;
    --gold:         #C9A96E;
    --gold-light:   #DFC28E;
    --gold-dark:    #A07840;
    --gold-subtle:  rgba(201,169,110,0.15);
    --espresso:     #2C1F14;
    --charcoal:     #4A3728;
    --taupe:        #8A7363;
    --mist:         rgba(201,169,110,0.12);

    /* Semantic aliases (keep backward compat) */
    --primary-gold:   #C9A96E;
    --light-gold:     #DFC28E;
    --dark-bg:        #FAF7F2;
    --darker-bg:      #F5EEE4;
    --card-bg:        #F5EEE4;
    --text-primary:   #2C1F14;
    --text-secondary: #4A3728;
    --text-muted:     #8A7363;
    --text-light:     #FAF7F2;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Jost', sans-serif;

    /* Spacing */
    --section-py: 100px;
    --section-py-sm: 64px;

    /* Radius */
    --radius-sm:  4px;
    --radius-md:  10px;
    --radius-lg:  20px;

    /* Shadows */
    --shadow-sm:  0 2px 16px rgba(44,31,20,0.06);
    --shadow-md:  0 8px 32px rgba(44,31,20,0.10);
    --shadow-lg:  0 20px 60px rgba(44,31,20,0.14);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--espresso);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== ACCENT ===== */
.accent-color { color: var(--gold); }

/* ===== GOLD DIVIDER ===== */
.gold-rule {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}
.gold-rule.left { margin: 0; }

/* ===== SECTION LABEL ===== */
.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
    padding: 15px 36px;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
    background: var(--gold);
    color: var(--ivory);
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.4);
    color: var(--ivory);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201,169,110,0.28);
}

.btn-dark {
    background: var(--espresso);
    color: var(--ivory);
}
.btn-dark:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-bottom 0.4s var(--ease);
}

/* top bar */
.top-bar {
    background: var(--espresso);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(250,247,242,0.75);
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    font-family: var(--font-body);
}
.phone-link:hover { color: var(--gold); }
.top-cta {
    font-size: 9.5px;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
}

/* main nav area */
.main-header {
    background: rgba(250,247,242,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,169,110,0.18);
    transition: background 0.4s, box-shadow 0.4s;
}
.main-header.scrolled {
    background: rgba(250,247,242,0.98);
    box-shadow: 0 4px 30px rgba(44,31,20,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Logo */
.logo-area { flex-shrink: 0; }
.logo { display: flex; align-items: center; }
.logo-circle-wrap {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}
.footer-logo-circle-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.footer-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    border: none;
}

/* Nav links */
.main-nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 4px 0;
    position: relative;
    transition: color 0.3s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn-book-nav {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    background: var(--gold);
    color: var(--ivory);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
}
.btn-book-nav:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
    color: var(--ivory);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--espresso);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(44,31,20,0.58) 0%,
        rgba(44,31,20,0.38) 50%,
        rgba(44,31,20,0.65) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 40px 24px;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201,169,110,0.5);
    padding: 9px 26px;
    margin-bottom: 32px;
    border-radius: 1px;
    backdrop-filter: blur(4px);
    background: rgba(44,31,20,0.25);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(56px, 10vw, 100px);
    font-weight: 400;
    line-height: 1.0;
    color: var(--ivory);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 40px rgba(44,31,20,0.5);
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(250,247,242,0.8);
    margin-bottom: 10px;
}
.hero-address {
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 28px;
    opacity: 0.9;
}
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 22px 0 32px;
}
.divider-line {
    display: block;
    width: 70px;
    height: 1px;
    background: rgba(201,169,110,0.5);
}
.divider-icon {
    color: var(--gold-light);
    font-size: 14px;
    opacity: 0.85;
}

/* hero pills */
.hero-pills {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-pill {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250,247,242,0.7);
}
.hero-pill::before {
    content: '✦';
    margin-right: 8px;
    color: var(--gold-light);
    font-size: 8px;
}

/* ===== FEATURE / OUR STORY SECTION ===== */
.feature-section {
    padding: var(--section-py) 0;
    background: var(--ivory);
}
.feature-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.feature-text { flex: 1; min-width: 300px; }
.feature-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.feature-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--espresso);
    margin-bottom: 24px;
}
.feature-paragraph {
    color: var(--taupe);
    font-size: 14.5px;
    line-height: 2;
    margin-bottom: 32px;
    font-weight: 300;
}
.feature-btn { margin-bottom: 36px; display: inline-block; }
.feature-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,169,110,0.2);
}
.feature-footer-line {
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(201,169,110,0.25);
}
.feature-address {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--taupe);
    white-space: nowrap;
    text-transform: uppercase;
}
.feature-images { flex: 1; min-width: 300px; position: relative; }

/* ===== ABOUT SLIDER ===== */
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 14px;
    pointer-events: none;
}
.nav-btn {
    pointer-events: all;
    background: rgba(250,247,242,0.9);
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.35);
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-btn:hover { background: var(--gold); color: var(--ivory); }
.slider-track { display: flex; transition: transform 0.55s var(--ease); }
.slide { min-width: 100%; }
.slide img { width: 100%; height: 420px; object-fit: cover; display: block; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--cream);
}
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(201,169,110,0.28);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--cream);
    padding: var(--section-py) 0 0;
}
.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}
.services-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.services-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 16px;
}
.services-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: var(--taupe);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.service-card { position: relative; overflow: hidden; }
.service-text-card {
    background: var(--nude);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 28px;
    min-height: 280px;
    border: 1px solid rgba(201,169,110,0.12);
    transition: background 0.3s;
}
.service-text-card:hover {
    background: #E8DACE;
}
.service-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 6px;
    text-align: center;
}
.service-name-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 13px;
    color: var(--taupe);
    margin-bottom: 24px;
    text-align: center;
}
.service-menu-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.45);
    padding: 10px 24px;
    transition: all 0.3s var(--ease);
    border-radius: var(--radius-sm);
}
.service-menu-btn:hover {
    background: var(--gold);
    color: var(--ivory);
    border-color: var(--gold);
    transform: translateY(-1px);
}
.service-photo-card {
    min-height: 280px;
    overflow: hidden;
}
.service-photo-card img,
.service-photo-card video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}
.service-photo-card:hover img,
.service-photo-card:hover video { transform: scale(1.08); }
.service-span-2 { grid-column: span 2; }

/* Service gold badge */
.service-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201,169,110,0.14);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: var(--section-py) 24px;
    background: var(--espresso);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.guarantee-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(201,169,110,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.guarantee-inner { max-width: 800px; margin: 0 auto; position: relative; }
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.guarantee-badge-text {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.guarantee-title {
    font-family: var(--font-heading);
    color: var(--ivory);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 400;
    font-style: italic;
    margin: 0 0 16px;
    line-height: 1.1;
}
.guarantee-sub {
    color: rgba(201,169,110,0.7);
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 50px;
    font-weight: 300;
}
.guarantee-cards {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.guarantee-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    width: 240px;
    min-width: 180px;
    transition: transform 0.3s var(--ease), border-color 0.3s;
}
.guarantee-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,0.45);
}
.guarantee-card-icon { font-size: 32px; margin-bottom: 14px; }
.guarantee-card-title {
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.guarantee-card-desc {
    color: rgba(201,169,110,0.6);
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 300;
}
.guarantee-fine {
    color: rgba(201,169,110,0.4);
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: var(--section-py) 20px;
    background: var(--blush);
    text-align: center;
}
.reviews-header { margin-bottom: 48px; }
.reviews-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 400;
    color: var(--espresso);
    margin: 10px 0 20px;
}
.reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.28);
    padding: 9px 22px;
    border-radius: 50px;
}
.reviews-score {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}
.reviews-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.reviews-source {
    font-size: 11px;
    color: var(--taupe);
    border-left: 1px solid rgba(201,169,110,0.35);
    padding-left: 12px;
    letter-spacing: 1px;
}
.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 44px;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: var(--ivory);
    color: var(--charcoal);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,169,110,0.15);
    text-align: left;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
    box-shadow: var(--shadow-sm);
}
.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201,169,110,0.35);
    box-shadow: var(--shadow-md);
}
.review-card-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.review-card-stars { color: #D4A84B; font-size: 14px; letter-spacing: 2px; }
.review-card-date { color: var(--taupe); font-size: 10px; letter-spacing: 1px; }
.review-card-text {
    color: var(--charcoal);
    font-size: 13px;
    line-height: 1.75;
    margin: 14px 0;
    font-weight: 300;
    font-style: italic;
}
.review-card-avatar {
    width: 34px; height: 34px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.review-card-name {
    color: var(--espresso);
    font-size: 12.5px;
    font-weight: 600;
    margin: 0;
}
.review-card-role {
    color: var(--taupe);
    font-size: 10px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-py) 40px var(--section-py-sm);
    background: var(--cream);
}
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 10px;
}
.gallery-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--taupe);
    max-width: 460px;
    margin: 16px auto 0;
    line-height: 1.7;
}
.gal-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 3/4;
    height: auto !important;
}
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
    display: block;
}
.gal-item:hover img { transform: scale(1.09); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,31,20,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
    color: var(--ivory);
    border: 1px solid rgba(250,247,242,0.65);
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    background: rgba(44,31,20,0.3);
    backdrop-filter: blur(4px);
}

/* ===== BOOKING CTA SECTION ===== */
.cta-section {
    background: var(--nude);
    border-top: 1px solid rgba(201,169,110,0.2);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    padding: var(--section-py) 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M40 40 L41 41 L40 42 L39 41 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.cta-inner { max-width: 620px; margin: 0 auto; position: relative; }
.cta-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 12px;
    line-height: 1.2;
}
.cta-heading em { font-style: italic; color: var(--gold-dark); }
.cta-address {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--taupe);
    margin-bottom: 8px;
}
.cta-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 36px;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}
.cta-phone:hover { color: var(--gold); }
.cta-sub {
    font-size: 12px;
    color: var(--taupe);
    margin-top: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--espresso); }
.footer-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 340px;
}
.footer-map-container {
    flex: 1;
    min-width: 300px;
    min-height: 340px;
}
.footer-info-container {
    flex: 1;
    padding: 40px 48px;
    background: rgba(44,31,20,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid rgba(201,169,110,0.12);
}
.footer-salon-name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 6px;
}
.footer-salon-name em { font-style: italic; color: var(--gold); }
.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: var(--taupe);
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.footer-info-value {
    font-size: 16px;
    color: rgba(250,247,242,0.75);
    font-weight: 300;
    line-height: 1.6;
}
.footer-info-value a {
    color: rgba(250,247,242,0.75);
    transition: color 0.3s;
}
.footer-info-value a:hover { color: var(--gold); }
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(201,169,110,0.18);
    margin: 16px 0;
}
.footer-hours { width: 100%; max-width: 340px; }
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: rgba(250,247,242,0.65);
    padding: 6px 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    font-weight: 300;
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row .day { font-weight: 500; color: rgba(250,247,242,0.8); }
.footer-bottom {
    text-align: center;
    padding: 18px 20px;
    border-top: 1px solid rgba(201,169,110,0.1);
    font-size: 12px;
    color: rgba(201,169,110,0.45);
    letter-spacing: 1.5px;
    background: var(--espresso);
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 180px 20px 110px;
    text-align: center;
    overflow: hidden;
    min-height: 48vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(44,31,20,0.6) 0%, rgba(44,31,20,0.42) 100%);
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 68px);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(44,31,20,0.5);
    line-height: 1.1;
}
.page-hero-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
    color: rgba(250,247,242,0.8);
}

/* ===== FLOATING SOCIAL (LEFT) ===== */
.floating-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.social-tab {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250,247,242,0.92);
    border: 1px solid rgba(201,169,110,0.35);
    border-left: none;
    color: var(--gold);
    transition: all 0.3s var(--ease);
    border-radius: 0 6px 6px 0;
    box-shadow: 2px 0 12px rgba(44,31,20,0.08);
}
.social-tab:hover {
    background: var(--gold);
    color: var(--ivory);
    width: 52px;
}
.social-tab svg { width: 17px; height: 17px; fill: currentColor; }

/* ===== FLOATING BOOK NOW (RIGHT) ===== */
.floating-book {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.float-book-btn {
    background: var(--gold);
    color: var(--ivory);
    padding: 18px 10px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: -4px 0 20px rgba(201,169,110,0.4);
    transition: padding 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.float-book-btn:hover {
    background: var(--gold-dark);
    box-shadow: -6px 0 28px rgba(201,169,110,0.6);
    padding-right: 4px;
}
.float-book-btn span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: var(--espresso);
}
.float-book-btn svg { width: 17px; height: 17px; flex-shrink: 0; fill: var(--espresso); }
.float-call-btn {
    background: var(--ivory);
    border: 1px solid rgba(201,169,110,0.3);
    border-right: none;
    color: var(--espresso);
    padding: 13px 10px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    transition: background 0.25s var(--ease);
    box-shadow: -2px 0 10px rgba(44,31,20,0.06);
}
.float-call-btn:hover { background: rgba(201,169,110,0.1); }
.float-call-btn svg { width: 17px; height: 17px; fill: currentColor; }

/* ===== LIGHTBOX ===== */
#lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(44,31,20,0.88);
    cursor: pointer;
    backdrop-filter: blur(6px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 88%;
    max-height: 80vh;
    border: 1.5px solid rgba(201,169,110,0.5);
    border-radius: var(--radius-md);
    object-fit: contain;
    cursor: default;
    box-shadow: 0 30px 80px rgba(44,31,20,0.5);
}
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--gold-light);
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
}
.close-lightbox {
    position: fixed;
    top: 16px;
    right: 30px;
    color: rgba(201,169,110,0.8);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    font-weight: 300;
}
.close-lightbox:hover { color: var(--ivory); }

/* ===== HOURS TABLE ===== */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table tr {
    border-bottom: 1px solid rgba(201,169,110,0.1);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
    padding: 7px 0;
    font-size: 13px;
    color: rgba(250,247,242,0.65);
    font-weight: 300;
}
.hours-table td:first-child {
    font-weight: 500;
    color: rgba(250,247,242,0.85);
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--gold); font-weight: 600; }

/* ===== PROMOTIONS ===== */
.promo-section {
    padding: var(--section-py) 32px;
    background: var(--ivory);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.promo-card {
    background: var(--cream);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
    position: relative;
    overflow: hidden;
}
.promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,169,110,0.38);
}
.promo-discount {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.promo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--espresso);
    margin-bottom: 10px;
}
.promo-desc {
    font-size: 13px;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}
.promo-fine {
    font-size: 10px;
    color: rgba(138,115,99,0.65);
    letter-spacing: 0.5px;
    margin-top: 14px;
    font-style: italic;
}

/* ===== ELEGANT SECTION DIVIDER ===== */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 0 40px;
}
.ornament-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(201,169,110,0.3);
}
.ornament-diamond {
    font-size: 10px;
    color: var(--gold);
    opacity: 0.8;
}

/* ===== MOBILE BOOK BAR (service page) ===== */
.mobile-book-bar { display: none; }

/* ===== SCROLL FADE IN ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-container { gap: 48px; }
}
@media (max-width: 768px) {
    :root {
        --section-py: 70px;
        --section-py-sm: 44px;
    }
    .container { padding: 0 20px; }
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(44,31,20,0.98);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .main-nav.active { display: flex; }
    .main-nav ul { flex-direction: column; gap: 36px; text-align: center; }
    .main-nav a { font-size: 12px; letter-spacing: 4px; color: var(--ivory) !important; }
    .main-nav a:hover, .main-nav a.active { color: var(--gold) !important; }
    .mobile-menu-toggle { display: flex; }
    .header-actions .btn-book-nav,
    .header-actions .btn-gold { display: none; }
    .feature-container { flex-direction: column; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { margin: 0; }
    .footer-container { flex-direction: column; }
    .footer-map-container { min-height: 260px; width: 100%; flex: 1 1 100%; }
    .footer-info-container { width: 100%; flex: 1 1 100%; padding: 40px 24px; border-left: none; border-top: 1px solid rgba(201,169,110,0.12); }
    .gallery-section { padding: var(--section-py-sm) 16px; }
    .floating-social { display: none; }
    .slide img { height: 280px; }
    .hero-section { min-height: auto !important; height: auto !important; width: 100%; aspect-ratio: 16/10; }
    .mobile-book-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0; right: 0;
        z-index: 900;
        background: var(--ivory);
        border-top: 1px solid rgba(201,169,110,0.22);
        padding: 10px 14px;
        gap: 10px;
        align-items: center;
    }
    .mobile-book-bar a.bar-book {
        flex: 1;
        background: var(--gold);
        color: var(--ivory);
        text-align: center;
        padding: 13px 0;
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }
    .mobile-book-bar a.bar-call {
        width: 46px; height: 46px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--espresso);
        color: var(--gold-light);
    }
    .mobile-book-bar a.bar-call svg { width: 18px; height: 18px; fill: currentColor; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-pills { gap: 12px; }
    .top-cta { display: none; }
    .guarantee-cards { gap: 14px; }
    .guarantee-card { width: 90%; min-width: unset; }
    .promo-grid { grid-template-columns: 1fr; }
    .logo-circle-wrap { height: 44px; }
}
