/* ==========================================================================
   FlexPro Cleaning — "California Luxury Clean" v3
   Editorial magazine × luxury SoCal lifestyle brand
   Typography: Playfair Display (serif) + DM Sans (geometric)
   New: custom cursor, scroll progress, before/after slider,
        big numbers, wave dividers, magnetic buttons, tilt images,
        horizontal scroll reviews, clip-path text reveals
   ========================================================================== */

:root {
    --bg:        #FAF7F2;
    --bg-dark:   #1C1917;
    --bg-cream:  #F3EDE4;
    --surface:   #FFFFFF;
    --text:      #1C1917;
    --text-sub:  #6B635A;
    --text-inv:  #FAF7F2;
    --accent:    #C2703E;
    --accent-dk: #A35A2E;
    --emergency: #B91C1C;
    --border:    #DDD6CB;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
    --ease:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
input, select, textarea { cursor: auto; }

/* --- Custom Cursor --- */
.cursor {
    position: fixed; top: 0; left: 0; z-index: 99999;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
    mix-blend-mode: difference;
}
.cursor.hover { width: 40px; height: 40px; background: var(--accent); mix-blend-mode: normal; opacity: 0.3; }
.cursor-follower {
    position: fixed; top: 0; left: 0; z-index: 99998;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(194,112,62,0.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}
.cursor-follower.hover { width: 60px; height: 60px; border-color: rgba(194,112,62,0.15); }

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 9998;
    height: 3px; background: var(--accent);
    width: 0%; transition: none;
}

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

/* --- Preloader --- */
.preloader {
    position: fixed; inset: 0; z-index: 100000; background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: clip-path 0.8s var(--ease) 0.3s, visibility 0s 1.1s;
    clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader-bar { width: 120px; height: 2px; background: rgba(250,247,242,0.1); border-radius: 2px; overflow: hidden; }
.preloader-bar::after { content: ''; display: block; width: 100%; height: 100%; background: var(--accent); animation: preBar 0.8s var(--ease) forwards; }
@keyframes preBar { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
.preloader-text { display: flex; gap: 6px; }
.preloader-word {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
    color: var(--text-inv); letter-spacing: 0.08em;
    opacity: 0; transform: translateY(20px); animation: preIn 0.5s var(--ease) forwards;
}
.preloader-word:nth-child(2) { animation-delay: 0.12s; }
.preloader-word.accent { color: var(--accent); }
@keyframes preIn { to { opacity: 1; transform: translateY(0); } }

/* --- Layout --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* --- Section Common --- */
.section-label {
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 16px;
}
.section-label.light { color: var(--accent); }
.section-heading {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
    line-height: 1.15; color: var(--text); margin-bottom: 24px; max-width: 600px;
}
.section-heading.light { color: var(--text-inv); }
.section-heading em { font-style: italic; color: var(--accent); }

/* --- Wave Dividers --- */
.wave-divider { display: block; width: 100%; height: 60px; position: relative; z-index: 2; }
.wave-divider.flip { transform: scaleY(-1); }

/* --- Reveal --- */
[data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Hero text clip-path reveal */
.h1-line { display: block; overflow: hidden; }
.h1-mask { display: inline-block; transform: translateY(110%); transition: transform 0.8s var(--ease); }
.h1-line[data-reveal].is-visible .h1-mask { transform: translateY(0); }
.h1-line:nth-child(2) .h1-mask { transition-delay: 0.1s; }
.h1-line:nth-child(3) .h1-mask { transition-delay: 0.2s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all 0.4s var(--ease); }
.nav.scrolled { background: rgba(250,247,242,0.92); backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8); padding: 12px 0; box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; letter-spacing: 0.06em; display: flex; gap: 3px; }
.brand-flex { color: var(--text); }
.brand-pro  { color: var(--accent); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-sub); position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--text-sub); transition: color 0.3s; }
.nav-phone:hover { color: var(--accent); }
.btn-cta { display: inline-flex; align-items: center; padding: 10px 24px; background: var(--accent); color: #fff; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; border-radius: 6px; transition: all 0.3s var(--ease); }
.btn-cta:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,112,62,0.3); }
.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 200; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center; }
.menu-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.active span:last-child  { transform: rotate(-45deg) translate(3px, -3px); }
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: var(--bg); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav-links a { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 700; color: var(--text); padding: 8px 0; opacity: 0; transform: translateY(20px); transition: all 0.4s var(--ease); }
.mobile-nav.open .mobile-nav-links a { opacity: 1; transform: translateY(0); }
.mobile-nav.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-cta { margin-top: 16px; font-family: var(--font-body) !important; font-size: 1rem !important; background: var(--accent); color: #fff !important; padding: 14px 40px !important; border-radius: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-col { display: flex; }
.hero-text { flex-direction: column; justify-content: center; padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 80px) clamp(60px, 8vh, 100px); }
.hero-tag { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-sub); margin-bottom: 32px; }
.tag-line { width: 40px; height: 1px; background: var(--accent); }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 6.5vw, 5.5rem); line-height: 1.0; letter-spacing: -0.03em; color: var(--text); margin-bottom: 28px; }
.italic { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: var(--text-sub); max-width: 440px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--accent); color: #fff; font-size: 0.9rem; font-weight: 700; border-radius: 6px; transition: all 0.3s var(--ease); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(194,112,62,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border: 1.5px solid var(--border); color: var(--text); font-size: 0.9rem; font-weight: 700; border-radius: 6px; transition: all 0.3s var(--ease); }
.btn-ghost:hover { border-color: var(--text); transform: translateY(-3px); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; color: var(--text-sub); }
.hero-visual { position: relative; overflow: hidden; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 12s var(--ease-out); }
.hero-img-wrap:hover .hero-img { transform: scale(1); }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(28,25,23,0.25) 100%); }
.hero-float-card { position: absolute; bottom: 48px; left: 48px; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border-radius: 12px; padding: 24px 32px; display: flex; align-items: center; gap: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.float-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.float-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-sub); line-height: 1.4; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { padding: 20px 0; background: var(--bg-dark); overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: scroll 25s linear infinite; }
.marquee-track span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(250,247,242,0.6); padding: 0 16px; }
.marquee-track .sep { color: var(--accent); font-size: 0.6rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 120px 0 80px; }
.services .section-heading { margin-bottom: 64px; }
.services-showcase { display: flex; flex-direction: column; gap: 2px; }
.service-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; overflow: hidden; }
.service-panel.reverse { direction: rtl; }
.service-panel.reverse > * { direction: ltr; }
.service-img { position: relative; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-panel:hover .service-img img { transform: scale(1.04); }
.service-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 80px); background: var(--surface); }
.service-num { font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: var(--bg-cream); line-height: 1; margin-bottom: 8px; }
.service-body h3 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; margin-bottom: 16px; color: var(--text); }
.service-body p { font-size: 0.95rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 24px; max-width: 420px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--accent); transition: gap 0.3s var(--ease); }
.link-arrow:hover { gap: 14px; }
.emergency-link { color: var(--emergency); }
.emergency-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(185,28,28,0.08); color: var(--emergency); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; width: fit-content; }
.pulse-dot { width: 8px; height: 8px; background: var(--emergency); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.pulse-dot.white { background: #fff; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }
.emergency-panel .service-body { background: #FEF2F2; }
.more-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--border); }
.mini-service h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.mini-service p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; }

/* ==========================================================================
   Before/After Slider
   ========================================================================== */
.results { padding: 120px 0 0; background: var(--bg); position: relative; }
.results-sub { font-size: 0.95rem; color: var(--text-sub); margin-bottom: 48px; }

.ba-slider {
    position: relative; max-width: 1000px; margin: 0 auto; aspect-ratio: 16/9;
    overflow: hidden; border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.1);
    user-select: none; -webkit-user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 1; }
.ba-after  { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
    position: absolute; bottom: 20px; padding: 6px 16px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
    border-radius: 100px; z-index: 5;
}
.ba-label-before { left: 20px; background: rgba(28,25,23,0.7); color: #fff; }
.ba-label-after  { right: 20px; background: rgba(194,112,62,0.9); color: #fff; }

.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    transform: translateX(-50%); cursor: col-resize;
}
.ba-handle-line { flex: 1; width: 2px; background: #fff; box-shadow: 0 0 8px rgba(0,0,0,0.3); }
.ba-handle-knob {
    width: 48px; height: 48px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    color: var(--accent); flex-shrink: 0;
    transition: transform 0.2s var(--ease);
}
.ba-handle-knob:hover, .ba-slider.dragging .ba-handle-knob { transform: scale(1.15); }

/* ==========================================================================
   Big Numbers
   ========================================================================== */
.numbers { padding: 100px 0; background: var(--bg-dark); }
.numbers-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.number-item { display: flex; flex-direction: column; align-items: center; }
.big-num { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 900; color: var(--text-inv); line-height: 1; }
.big-suffix { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: var(--accent); }
.big-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,247,242,0.4); margin-top: 8px; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 120px 0; background: var(--bg-cream); }
.about-inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-image:hover img { transform: scale(1.03); }
.about-content p { font-size: 1rem; color: var(--text-sub); margin-bottom: 40px; line-height: 1.85; max-width: 500px; }
.trust-features { display: flex; flex-direction: column; gap: 20px; }
.trust-feat { display: flex; flex-direction: column; gap: 2px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.trust-feat:first-child { border-top: 1px solid var(--border); }
.trust-feat strong { font-size: 0.92rem; color: var(--text); }
.trust-feat span { font-size: 0.85rem; color: var(--text-sub); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { padding: 120px 0; }
.process .section-heading { margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { background: var(--surface); padding: clamp(32px, 3vw, 48px); position: relative; border-right: 1px solid var(--border); transition: background 0.4s var(--ease); }
.step:last-child { border-right: none; }
.step:first-child { border-radius: 12px 0 0 12px; }
.step:last-child  { border-radius: 0 12px 12px 0; }
.step:hover { background: var(--bg-cream); }
.step-idx { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--accent); opacity: 0.2; line-height: 1; margin-bottom: 20px; transition: opacity 0.4s; }
.step:hover .step-idx { opacity: 0.5; }
.step-line { width: 32px; height: 2px; background: var(--accent); margin-bottom: 20px; opacity: 0.4; }
.step h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; }

/* ==========================================================================
   Emergency Strip
   ========================================================================== */
.emergency-strip { padding: 60px 0; background: var(--bg-dark); position: relative; overflow: hidden; }
.emergency-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 10% 50%, rgba(185,28,28,0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 50%, rgba(194,112,62,0.08) 0%, transparent 50%);
    animation: emergBg 6s ease-in-out infinite alternate;
}
@keyframes emergBg {
    0%   { opacity: 1; }
    100% { opacity: 0.5; }
}
.emergency-strip-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.emergency-strip h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--text-inv); margin-bottom: 4px; }
.emergency-strip p { font-size: 0.9rem; color: rgba(250,247,242,0.6); }
.btn-emergency { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--emergency); color: #fff; font-size: 0.88rem; font-weight: 700; border-radius: 6px; transition: all 0.3s var(--ease); white-space: nowrap; animation: emergPulse 2.5s ease-in-out infinite; }
.btn-emergency:hover { background: #991B1B; transform: translateY(-2px); animation: none; }
@keyframes emergPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(185,28,28,0.3); } 50% { box-shadow: 0 0 0 14px rgba(185,28,28,0); } }

/* ==========================================================================
   Reviews (Horizontal Scroll)
   ========================================================================== */
.reviews { padding: 120px 0 100px; background: var(--bg-cream); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.scroll-hint { font-size: 0.82rem; color: var(--text-sub); font-weight: 500; animation: hintBounce 2s ease-in-out infinite; }
@keyframes hintBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

.reviews-track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px clamp(20px, 4vw, 48px) 40px;
    scrollbar-width: none; -ms-overflow-style: none;
    cursor: grab;
}
.reviews-track:active { cursor: grabbing; }
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 380px; scroll-snap-align: start;
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px; position: relative; transition: all 0.4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: transparent; }
.review-card.featured { flex: 0 0 420px; background: var(--bg-dark); border-color: transparent; }
.review-card.featured .stars { color: var(--accent); }
.review-card.featured p { color: rgba(250,247,242,0.8); }
.review-card.featured cite strong { color: var(--text-inv); }
.review-card.featured cite span { color: rgba(250,247,242,0.5); }
.stars { font-size: 1rem; letter-spacing: 2px; color: #D4A24E; margin-bottom: 20px; display: block; }
.review-card p { font-size: 0.95rem; color: var(--text-sub); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.review-card cite { font-style: normal; display: block; }
.review-card cite strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-card cite span { font-size: 0.78rem; color: var(--text-sub); }

/* ==========================================================================
   Areas
   ========================================================================== */
.areas { padding: 80px 0 120px; background: var(--bg-cream); position: relative; }
.areas-inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.areas-text p { font-size: 1rem; color: var(--text-sub); margin-bottom: 32px; line-height: 1.8; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.areas-grid ul li { font-size: 0.95rem; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 500; transition: padding-left 0.3s var(--ease), color 0.3s; }
.areas-grid ul li:hover { padding-left: 8px; color: var(--accent); }
.areas-map { border-radius: 16px; overflow: hidden; height: 420px; box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.areas-map iframe { width: 100%; height: 100%; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 120px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-left p { font-size: 0.95rem; color: var(--text-sub); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 0.95rem; font-weight: 600; color: var(--text); text-align: left; transition: color 0.3s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-icon::before { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 22px; font-size: 0.9rem; color: var(--text-sub); line-height: 1.8; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 120px 0; background: var(--bg-dark); position: relative; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(194,112,62,0.08) 0%, transparent 60%); }
.contact-inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left p { font-size: 1rem; color: rgba(250,247,242,0.6); margin-bottom: 40px; line-height: 1.8; max-width: 400px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.c-detail { display: flex; flex-direction: column; gap: 2px; }
.c-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(250,247,242,0.4); }
.c-detail a, .c-detail span { font-size: 0.95rem; color: var(--text-inv); font-weight: 500; }
.c-detail a:hover { color: var(--accent); }
.form { background: var(--surface); border-radius: 16px; padding: clamp(28px, 4vw, 48px); box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-sub); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: var(--bg); transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,112,62,0.1); }
.field textarea { resize: vertical; min-height: 80px; }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B635A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.btn-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: var(--accent); color: #fff; font-size: 0.92rem; font-weight: 700; border-radius: 8px; border: none; transition: all 0.3s var(--ease); }
.btn-submit:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,112,62,0.3); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { padding: 80px 0 0; background: #12110F; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,247,242,0.06); }
.footer-brand p { font-size: 0.85rem; color: rgba(250,247,242,0.4); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer .brand { font-size: 1.1rem; }
.footer .brand-flex { color: var(--text-inv); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(250,247,242,0.3); margin-bottom: 8px; }
.footer-col a, .footer-col span { font-size: 0.85rem; color: rgba(250,247,242,0.5); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; }
.footer-bottom span { font-size: 0.78rem; color: rgba(250,247,242,0.25); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { height: 50vh; min-height: 340px; }
    .hero-float-card { bottom: 24px; left: 24px; }
    .service-panel { grid-template-columns: 1fr; min-height: auto; }
    .service-panel.reverse { direction: ltr; }
    .service-img { height: 320px; }
    .about-inner { grid-template-columns: 1fr; }
    .about-image { max-height: 400px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .step:first-child { border-radius: 12px 12px 0 0; }
    .step:last-child  { border-radius: 0 0 12px 12px; border-bottom: none; }
    .step:nth-child(2) { border-radius: 0; }
    .step:nth-child(3) { border-radius: 0; }
    .numbers-inner { grid-template-columns: repeat(2, 1fr); }
    .areas-inner { grid-template-columns: 1fr; }
    .areas-map { height: 320px; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    a, button { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    .nav-links, .nav-right { display: none; }
    .menu-toggle { display: flex; }
    .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-float-card { display: none; }
    .more-services { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .step:first-child { border-radius: 12px 12px 0 0 !important; }
    .step:last-child  { border-radius: 0 0 12px 12px !important; }
    .emergency-strip-inner { flex-direction: column; text-align: center; }
    .numbers-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .review-card { flex: 0 0 300px; }
    .review-card.featured { flex: 0 0 320px; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .areas-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-text { padding: 100px 20px 60px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .service-body { padding: 32px 20px; }
    .numbers-inner { grid-template-columns: 1fr; }
    .ba-slider { aspect-ratio: 4/3; }
}
