/* ===========================================
   HAAR STYLE M&F - PREMIUM SALON STYLES
   =========================================== */

/* ========== VARIABLES ========== */
:root {
    --gold: #D4AF37;
    --gold-light: #F5D76E;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #F5D76E 0%, #D4AF37 50%, #B8860B 100%);
    --gold-shine: linear-gradient(135deg, #FFF6D5 0%, #F5D76E 25%, #D4AF37 50%, #B8860B 75%, #8B6914 100%);

    --dark: #0A0807;
    --dark-2: #1A1410;
    --brown: #2C1810;
    --brown-light: #3D2817;
    --cream: #FAF7F2;
    --cream-2: #F0EBE0;
    --gray: #888;
    --white: #FFFFFF;

    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-dark-bg: rgba(10, 8, 7, 0.55);

    --font-serif: 'Playfair Display', serif;
    --font-script: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);

    --transition: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--brown);
    margin-bottom: 1.5rem;
}
.section-title em {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 500;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.section-head .section-eyebrow { padding-left: 0; }
.section-head .section-eyebrow::before { display: none; }
.section-head.light .section-title { color: var(--cream); }
.section-head.light .section-eyebrow { color: var(--gold-light); }

.gold-text {
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
    cursor: none;
}
.btn i { transition: transform 0.4s var(--transition); }
.btn:hover i { transform: translateX(5px); }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s var(--transition);
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    color: var(--cream);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--dark);
    border-color: var(--cream);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========== GLASS EFFECTS ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-scissors {
    font-size: 3.5rem;
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cutting 1.2s infinite ease-in-out;
    margin-bottom: 1rem;
}
@keyframes cutting {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.15); }
}
.preloader-text {
    font-family: var(--font-script);
    font-size: 2rem;
    font-style: italic;
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s;
    mix-blend-mode: difference;
}
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower.hovered {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 968px) {
    .cursor, .cursor-follower { display: none; }
    body, button, .btn { cursor: auto; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 8, 7, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo img {
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    transition: transform 0.4s var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-menu {
    display: flex;
    gap: 2.5rem;
}
.nav-link {
    position: relative;
    color: var(--cream);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 0.3rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    padding: 0.75rem 1.6rem;
    background: var(--gold-gradient);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Quick-call button (mobile only) */
.nav-call {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    animation: callPulse 2.5s infinite;
}
.nav-call:hover { transform: scale(1.08); }
@keyframes callPulse {
    0%, 100% { box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 5px 25px rgba(212, 175, 55, 0.8); }
}

@media (max-width: 968px) {
    .navbar { padding: 0.8rem 0; }
    .navbar.scrolled { padding: 0.6rem 0; }
    .nav-container { gap: 0.6rem; padding: 0 1rem; }
    .nav-logo img { height: 44px; }

    .nav-menu {
        position: fixed;
        top: 70px; right: -100%;
        width: 85%;
        max-width: 340px;
        height: calc(100vh - 70px);
        background: rgba(10, 8, 7, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.3rem;
        transition: right 0.4s var(--transition);
        border-left: 1px solid var(--glass-border);
        box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .nav-cta { display: none; }
    .nav-call { display: inline-flex; }
    .nav-toggle { display: flex; }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-swiper, .hero-swiper .swiper-wrapper {
    height: 100%;
}
.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: kenburns 8s ease-out forwards;
}
.swiper-slide-active.hero-slide {
    animation: none;
}
@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,8,7,0.85) 0%, rgba(44,24,16,0.6) 50%, rgba(10,8,7,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--cream);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.08);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.title-line {
    display: block;
    overflow: hidden;
}
.title-line:nth-child(2) {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-style: italic;
    color: var(--cream-2);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--gold);
    margin: 1rem auto 0;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--cream);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Hero swiper navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--gold-light);
    transition: all 0.3s;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--gold);
    color: var(--dark);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 700;
}
.hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: var(--cream);
    opacity: 0.4;
    transition: all 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--gold);
    opacity: 1;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.deco-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    animation: float 6s infinite ease-in-out;
}
.deco-1 { top: 15%; left: 8%; animation-delay: 0s; }
.deco-2 { bottom: 20%; right: 8%; animation-delay: 2s; transform: rotate(45deg); }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}
.ba-section::before {
    content: '';
    position: absolute;
    top: 20%; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.ba-section .container { position: relative; z-index: 1; }

.ba-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ba-slider {
    --pos: 50%;
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    cursor: ew-resize;
}
.ba-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 24px;
    pointer-events: none;
    z-index: 5;
}

.ba-image {
    position: absolute;
    inset: 0;
}
.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.ba-after {
    clip-path: inset(0 0 0 var(--pos));
    -webkit-clip-path: inset(0 0 0 var(--pos));
    transition: clip-path 0s;
}

.ba-tag {
    position: absolute;
    top: 1.2rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 4;
}
.ba-tag-before {
    left: 1.2rem;
    background: rgba(10, 8, 7, 0.75);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.2);
}
.ba-tag-after {
    right: 1.2rem;
    background: var(--gold-gradient);
    color: var(--dark);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: var(--pos);
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    z-index: 6;
    cursor: ew-resize;
}
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-handle-circle {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.4), 0 8px 30px rgba(0,0,0,0.5);
}
.ba-handle-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95) 15%, rgba(255,255,255,0.95) 85%, transparent);
    box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 2px var(--gold);
    transition: transform 0.2s var(--transition);
}
.ba-handle-circle i {
    color: var(--gold-dark);
    font-size: 0.85rem;
}
.ba-slider:hover .ba-handle-circle,
.ba-handle.dragging .ba-handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
}
.ba-handle.dragging .ba-handle-circle {
    background: var(--gold-gradient);
}
.ba-handle.dragging .ba-handle-circle i {
    color: var(--dark);
}

.ba-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    padding: 0.7rem 1.4rem;
    background: rgba(10, 8, 7, 0.85);
    backdrop-filter: blur(10px);
    color: var(--cream);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    pointer-events: none;
    animation: hintPulse 2s infinite;
    transition: opacity 0.5s, visibility 0.5s;
}
.ba-hint i { color: var(--gold-light); }
.ba-slider.interacted .ba-hint {
    opacity: 0;
    visibility: hidden;
}
@keyframes hintPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

.ba-caption h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ba-caption h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin-top: 0.8rem;
}
.ba-caption p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.ba-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .ba-section { padding: 5rem 0; }
    .ba-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    .ba-caption {
        text-align: center;
        padding: 0 0.5rem;
    }
    .ba-caption h3::after {
        margin: 0.8rem auto 0;
    }
    .ba-caption h3 { font-size: 1.5rem; }
    .ba-caption p { font-size: 0.95rem; }
    .ba-handle-circle {
        width: 64px;
        height: 64px;
    }
    .ba-handle-circle i { font-size: 1rem; }
    .ba-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        top: 0.8rem;
    }
    .ba-tag-before { left: 0.8rem; }
    .ba-tag-after { right: 0.8rem; }
}

/* ========== ABOUT ========== */
.about {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 10%; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}
.about-img-main, .about-img-secondary {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.about-img-main {
    top: 0; left: 0;
    width: 75%;
    height: 75%;
}
.about-img-secondary {
    bottom: 0; right: 0;
    width: 60%;
    height: 55%;
    border: 8px solid var(--cream);
}
.about-img-main img, .about-img-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}
.about-img-main:hover img, .about-img-secondary:hover img {
    transform: scale(1.08);
}

.about-experience {
    position: absolute;
    top: 50%; left: -20px;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    animation: rotate 20s linear infinite;
}
@keyframes rotate {
    100% { transform: translateY(-50%) rotate(360deg); }
}
.exp-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 1.2rem;
}
.about-text {
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.about-feature i {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.about-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--brown);
}
.about-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 500px; }
    .about-features { grid-template-columns: 1fr; }
}

/* ========== SERVICES ========== */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
    position: relative;
    overflow: hidden;
}
.services .section-title,
.services .section-title em { color: var(--cream); }
.services .section-sub { color: rgba(255,255,255,0.6); }

.services-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.bg-shape.shape-1 {
    top: 10%; left: -100px;
    width: 400px; height: 400px;
    background: rgba(212, 175, 55, 0.15);
}
.bg-shape.shape-2 {
    bottom: 10%; right: -100px;
    width: 500px; height: 500px;
    background: rgba(212, 175, 55, 0.1);
}

/* ===== Service Categories Grid ===== */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-category {
    padding: 2.5rem 2rem;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
    display: flex;
    flex-direction: column;
}
.service-category::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition);
}
.service-category:hover::before { transform: scaleX(1); }
.service-category:hover {
    transform: translateY(-6px);
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--gold);
}

.category-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.5s var(--transition);
}
.service-category:hover .category-icon {
    transform: rotateY(360deg) scale(1.05);
}
.category-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    color: var(--cream);
}
.category-header p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-trigger {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s var(--transition);
    cursor: none;
}
.service-trigger i {
    font-size: 0.75rem;
    color: var(--gold-light);
    transition: transform 0.3s var(--transition);
    opacity: 0.7;
}
.service-trigger:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
    padding-left: 1.5rem;
}
.service-trigger:hover i {
    transform: translateX(4px);
    opacity: 1;
}
.service-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.services-cta a {
    color: var(--gold-light);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
    transition: color 0.3s;
}
.services-cta a:hover { color: var(--cream); }

/* ===== SERVICE MODAL ===== */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.service-modal.open {
    opacity: 1;
    visibility: visible;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 7, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.modal-content {
    position: relative;
    max-width: 600px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    margin: 5vh auto 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    border-radius: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s var(--transition);
    -webkit-overflow-scrolling: touch;
}
.service-modal.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--gold-gradient);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(10, 8, 7, 0.08);
    border-radius: 50%;
    color: var(--brown);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
    cursor: none;
}
.modal-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}
.modal-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}
.modal-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--brown);
    line-height: 1.2;
}

.modal-body {
    padding: 1.5rem 2rem;
}
.modal-body p {
    color: var(--brown);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.modal-features li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--brown);
}
.modal-features i {
    color: var(--gold-dark);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.modal-duration {
    text-align: center;
    padding: 0.8rem;
    background: var(--dark);
    color: var(--cream);
    border-radius: 12px;
    font-size: 0.9rem;
}
.modal-duration i {
    color: var(--gold-light);
    margin-right: 0.5rem;
}
.modal-duration strong {
    color: var(--gold-light);
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}
.modal-footer .btn { flex: 1; min-width: 180px; justify-content: center; }

.btn-outline-dark {
    color: var(--brown);
    border: 2px solid var(--brown);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--transition);
    cursor: none;
}
.btn-outline-dark:hover {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .modal-features { grid-template-columns: 1fr; }
    .modal-content { margin: 3vh auto 0; }
    .modal-header { padding: 2.5rem 1.5rem 1rem; }
    .modal-body, .modal-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ========== STATS ========== */
.stats {
    padding: 5rem 0;
    background: var(--cream);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%; right: -1.5rem;
    width: 1px; height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-number::after {
    content: '+';
}
.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 8rem 0;
    background: var(--cream-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: none;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,8,7,0.85), rgba(44,24,16,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition);
}
.gallery-overlay i {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.4s var(--transition);
}
.gallery-item:hover img { transform: scale(1.15); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item.wide { grid-column: span 2; }
}

/* ========== TEAM ========== */
.team {
    padding: 8rem 0;
    background: var(--cream);
}

.team-swiper {
    padding: 2rem 0 4rem;
}
.team-card {
    text-align: center;
    transition: transform 0.4s var(--transition);
}
.team-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-dark);
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.team-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,7,0.8), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}
.team-card:hover .team-img img { transform: scale(1.08); }
.team-card:hover .team-img::after { opacity: 1; }

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    transition: bottom 0.4s var(--transition);
    z-index: 2;
}
.team-card:hover .team-social { bottom: 20px; }
.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
}
.team-social a:hover { transform: translateY(-3px) scale(1.1); }

.team-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.3rem;
}
.team-card span {
    font-size: 0.85rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-swiper .swiper-pagination {
    bottom: 0;
}
.team-swiper .swiper-pagination-bullet {
    background: var(--gold);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}
.testimonials-bg {
    position: absolute;
    inset: 0;
    background-image:
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    filter: blur(2px);
}
.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,8,7,0.9), rgba(44,24,16,0.85));
}
.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-swiper {
    padding: 1rem 0 4rem;
}
.testimonial-card {
    padding: 2.5rem;
    color: var(--cream);
    height: auto;
}
.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 4px;
}
.testimonial-card p {
    font-family: var(--font-script);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.testimonial-author h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--gold);
}

/* ========== CONTACT ========== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.info-card {
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    transition: transform 0.3s;
    background: rgba(255,255,255,0.6);
}
.info-card:hover { transform: translateX(10px); }
.info-card i {
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}
.info-card p, .info-card a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color 0.3s;
}
.info-card a:hover { color: var(--gold-dark); }

.contact-form {
    padding: 2.5rem;
    background: rgba(255,255,255,0.6);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--brown);
    transition: all 0.3s;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s;
    background: var(--cream);
    padding: 0 0.4rem;
}
.form-group textarea + label {
    top: 1rem;
    transform: none;
}
.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group .static-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Honeypot — visually hidden but not display:none (bots ignore that) */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Privacy checkbox */
.form-privacy {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
}
.form-privacy label {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}
.form-privacy input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.form-privacy a {
    color: var(--gold-dark);
    text-decoration: underline;
}
.form-privacy a:hover { color: var(--gold); }

@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 5rem 0 2rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold-gradient);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}
.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
}
.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    font-size: 0.95rem;
}
.footer-col ul a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 0.3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition);
    z-index: 99;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========== SCROLLBAR ========== */
/* ============================================
   MOBILE OPTIMIZATIONS (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }

    /* Section spacing — smaller on mobile */
    .about, .services, .gallery, .team, .testimonials, .contact, .ba-section {
        padding: 4rem 0;
    }
    .stats { padding: 3rem 0; }

    .section-head { margin-bottom: 2.5rem; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .section-eyebrow { font-size: 0.75rem; letter-spacing: 3px; }
    .section-sub { font-size: 0.95rem; }

    /* Hero — lighter, friendlier */
    .hero { min-height: 600px; height: 88vh; }
    .hero-content { padding: 0 1.5rem; }
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        padding: 0.4rem 1.1rem;
        margin-bottom: 1.2rem;
    }
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    .hero-buttons {
        gap: 0.8rem;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next { display: none; }
    .hero-scroll { font-size: 0.65rem; bottom: 1.2rem; }
    .scroll-line { height: 35px; margin-top: 0.6rem; }
    .deco-icon { font-size: 2.5rem; }

    /* Buttons — friendlier, smaller */
    .btn {
        padding: 0.85rem 1.6rem;
        font-size: 0.82rem;
        letter-spacing: 1.2px;
    }

    /* About */
    .about-grid { gap: 2rem; }
    .about-images { height: 380px; }
    .about-img-main { width: 80%; height: 70%; }
    .about-img-secondary { width: 55%; height: 50%; }
    .about-experience {
        width: 100px;
        height: 100px;
        left: -10px;
    }
    .exp-number { font-size: 1.8rem; }
    .exp-text { font-size: 0.65rem; }
    .about-features { gap: 1rem; }
    .about-feature i { width: 42px; height: 42px; font-size: 1rem; }
    .about-feature h4 { font-size: 0.95rem; }
    .about-feature p { font-size: 0.8rem; }
    .about-lead { font-size: 1rem; }
    .about-text { font-size: 0.95rem; }

    /* Services */
    .services-categories { gap: 1.2rem; }
    .service-category { padding: 1.8rem 1.4rem; }
    .category-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .category-header h3 { font-size: 1.3rem; }
    .category-header p { font-size: 0.75rem; }
    .service-trigger {
        padding: 0.95rem 1rem;
        font-size: 0.9rem;
        min-height: 48px; /* touch target */
    }

    /* Stats */
    .stats-grid { gap: 1.8rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 0.75rem; letter-spacing: 1.5px; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 0.7rem;
    }

    /* Team */
    .team-card h3 { font-size: 1.2rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.8rem; }
    .testimonial-card p { font-size: 1.05rem; }

    /* Contact */
    .info-card { padding: 1.2rem; gap: 0.9rem; }
    .info-card i { width: 44px; height: 44px; font-size: 1rem; }
    .info-card h4 { font-size: 0.95rem; }
    .info-card p, .info-card a { font-size: 0.85rem; }
    .contact-form { padding: 1.8rem 1.4rem; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* prevent iOS zoom */
        min-height: 48px;
    }
    .form-group label { font-size: 0.9rem; }
    .form-privacy { font-size: 0.8rem; }

    /* Footer */
    .footer { padding: 3.5rem 0 1.5rem; }
    .footer-grid { gap: 2rem; margin-bottom: 2rem; }
    .footer-logo { height: 60px; }
    .footer-col h4 { margin-bottom: 1rem; }
    .footer-bottom {
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.6rem;
    }
    .footer-legal { gap: 1.2rem; }

    /* Back-to-top */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    /* Modal */
    .modal-icon { width: 64px; height: 64px; font-size: 1.6rem; }
    .modal-header { padding: 2rem 1.2rem 1rem; }
    .modal-body { padding: 1.2rem 1.2rem; }
    .modal-body p { font-size: 0.95rem; }
    .modal-features { padding: 0.9rem; }
    .modal-features li { font-size: 0.85rem; }
    .modal-footer { padding: 1rem 1.2rem 1.5rem; }
    .modal-footer .btn { min-width: 0; width: 100%; }
}

/* Extra small (≤ 400px) */
@media (max-width: 400px) {
    .hero-title { font-size: 2rem; }
    .nav-logo img { height: 38px; }
    .nav-call { width: 38px; height: 38px; font-size: 0.9rem; }
    .gallery-grid { grid-auto-rows: 150px; }
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ========== UTILITIES ========== */
::selection {
    background: var(--gold);
    color: var(--dark);
}
