:root {
    --primary: #0A0A0A;
    --secondary: #C9A84C;
    --secondary-light: #E8D5A3;
    --tertiary: #F5F0E8;
    --accent: #6B1D2A;
    --hover-glow: #B76E79;
    --black-trans: rgba(10, 10, 10, 0.8);
    --gold-trans: rgba(201, 168, 76, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-subhead: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--primary);
    color: var(--tertiary);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); text-transform: uppercase; font-weight: 400; letter-spacing: 0.15em; }
.subheading { font-family: var(--font-subhead); font-style: italic; font-size: 1.5rem; color: var(--secondary); }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: none; }
.custom-cursor { position: fixed; top: 0; left: 0; width: 20px; height: 20px; background-color: var(--secondary); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s; mix-blend-mode: difference; }
.custom-cursor.hover { width: 60px; height: 60px; mix-blend-mode: difference; background-color: var(--tertiary); }
.cursor-trail { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid var(--secondary); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: opacity 0.3s; opacity: 0.5; }
.noise-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9000; opacity: 0.03; background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--secondary), var(--secondary-light)); z-index: 10000; width: 0%; transform-origin: left; }
.reveal-block { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo); }
.reveal-block.in-view { opacity: 1; transform: translateY(0); }
#preloader {
    position: fixed; inset: 0; background: var(--primary); z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: clip-path 1.2s var(--ease-in-out-circ), opacity 1.2s;
}
.preloader-content { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: 0.2em; color: var(--tertiary); font-weight: 100; margin-bottom: 2rem; }
.preloader-line-wrapper { width: 200px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 2rem; position: relative; overflow: hidden; }
.preloader-line { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: var(--secondary); transform: translateX(-100%); animation: loadLine 2s var(--ease-out-expo) forwards; }
.preloader-est { font-size: 0.8rem; letter-spacing: 0.3em; color: var(--secondary); text-transform: uppercase; }
.scissor-anim { width: 60px; height: 60px; margin: 0 auto 1rem; position: relative; }
.scissor-blade { position: absolute; width: 40px; height: 10px; border: 2px solid var(--secondary); border-radius: 50px; top: 25px; left: 10px; transform-origin: 30px 5px; }
.blade-top { transform: rotate(15deg); animation: snipTop 1s infinite alternate ease-in-out; }
.blade-bot { transform: rotate(-15deg); animation: snipBot 1s infinite alternate ease-in-out; }
.scissor-screw { position: absolute; width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; top: 27px; left: 37px; }
@keyframes snipTop { 0% { transform: rotate(20deg); } 100% { transform: rotate(0deg); } }
@keyframes snipBot { 0% { transform: rotate(-20deg); } 100% { transform: rotate(0deg); } }
@keyframes loadLine { to { transform: translateX(0); } }
body.loaded #preloader { clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%, 0 100%, 100% 100%, 100% 50%, 0 50%); opacity: 0; pointer-events: none; }
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 2rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s var(--ease-out-expo);
}
header.scrolled {
    padding: 1rem 5%; background: var(--black-trans); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gold-trans);
}
.logo-monogram { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); font-weight: 700; letter-spacing: 0.1em; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; position: relative; padding: 0.5rem 0; overflow: hidden; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--secondary); transform: translateX(-101%); transition: transform 0.4s var(--ease-out-expo); }
.nav-links a:hover::after { transform: translateX(0); }
.btn-gold { background: transparent; color: var(--secondary); border: 1px solid var(--secondary); padding: 0.8rem 1.5rem; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; position: relative; overflow: hidden; transition: color 0.4s; }
.btn-gold::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--secondary); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s var(--ease-out-expo); z-index: -1; }
.btn-gold:hover { color: var(--primary); }
.btn-gold:hover::before { transform: scaleY(1); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: none; z-index: 1001; }
.hamburger span { width: 30px; height: 2px; background: var(--secondary); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; background: var(--primary); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateY(-100%); transition: transform 0.7s var(--ease-out-expo); }
.mobile-nav.active { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-heading); font-size: 2.5rem; color: var(--tertiary); opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.mobile-nav.active a { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } }
.hero { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; background: radial-gradient(circle at center, #1a1a1a 0%, var(--primary) 100%); }
#particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
.hero-title { font-size: clamp(3rem, 8vw, 8rem); font-weight: 100; letter-spacing: 0.3em; color: var(--tertiary); line-height: 1; margin: 2rem 0 1rem; perspective: 1000px; }
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(100%) rotateX(-90deg); transform-origin: top center; transition: opacity 1s, transform 1s var(--ease-out-expo); }
body.loaded .hero-title .word { opacity: 1; transform: translateY(0) rotateX(0deg); }
.hero-subtitle { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.5rem); letter-spacing: 0.5em; color: var(--secondary); text-transform: uppercase; margin-bottom: 2rem; opacity: 0; transform: translateY(20px); transition: opacity 1s 1s, transform 1s 1s var(--ease-out-expo); }
body.loaded .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-divider { width: 0; height: 1px; background: var(--secondary); margin: 0 auto 2rem; transition: width 1.5s 1.5s var(--ease-out-expo); }
body.loaded .hero-divider { width: 200px; }
.hero-desc { font-family: var(--font-subhead); font-style: italic; font-size: 1.5rem; color: var(--tertiary); max-width: 600px; opacity: 0; transition: opacity 2s 2s; }
body.loaded .hero-desc { opacity: 1; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; transition: opacity 1s 2.5s; z-index: 10; }
body.loaded .scroll-indicator { opacity: 1; }
.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--secondary); }
.scroll-dot { width: 30px; height: 40px; border: 1px solid var(--secondary); border-radius: 15px; position: relative; display: flex; justify-content: center; }
.scroll-dot::before { content: ''; width: 4px; height: 4px; background: var(--secondary); border-radius: 50%; position: absolute; top: 8px; animation: scrollBounce 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94); }
@keyframes scrollBounce { 0% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(15px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
.barber-pole-container {
    width: 40px;
    height: 180px;
    position: relative;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 1.5s 0.5s var(--ease-out-expo), opacity 1s 0.5s;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 10px rgba(0,0,0,0.8);
    background: #000;
}
body.loaded .barber-pole-container {
    opacity: 1;
    transform: scale(1);
}
.barber-pole {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: repeating-linear-gradient(
        -45deg,
        #E32636 0px,
        #E32636 20px,
        #F5F0E8 20px,
        #F5F0E8 40px,
        #1D4ED8 40px,
        #1D4ED8 60px,
        #F5F0E8 60px,
        #F5F0E8 80px
    );
    background-size: 113.13px 113.13px;
    animation: poleSpin 3s linear infinite;
}
.barber-pole-overlay {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        90deg, 
        rgba(0,0,0,0.8) 0%, 
        rgba(255,255,255,0.2) 30%, 
        rgba(255,255,255,0) 50%, 
        rgba(0,0,0,0.4) 70%, 
        rgba(0,0,0,0.9) 100%
    );
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.pole-cap-top, .pole-cap-bottom {
    position: absolute;
    width: 48px;
    height: 10px;
    background: linear-gradient(90deg, #333, #888, #bbb, #888, #333);
    left: -4px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 2;
}
.pole-cap-top { top: -2px; }
.pole-cap-bottom { bottom: -2px; }
@keyframes poleSpin {
    from { background-position: 0 0; }
    to { background-position: 0 113.13px; }
}
.intro-section { padding: 8rem 5%; display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; overflow: hidden; }
.intro-left, .intro-right { flex: 1; min-width: 300px; position: relative; }
.intro-image-container { width: 100%; aspect-ratio: 4/5; position: relative; perspective: 1000px; transform-style: preserve-3d; }
.intro-image-container .tilt-card { width: 100%; height: 100%; background: linear-gradient(45deg, #111, #222); display: flex; justify-content: center; align-items: center; position: relative; transition: transform 0.1s; transform-style: preserve-3d; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.intro-image-container .tilt-card::after { content: 'FOTO'; font-family: var(--font-heading); color: var(--secondary); opacity: 0.3; font-size: 2rem; transform: translateZ(50px); }
.gold-border { position: absolute; inset: 15px; border: 1px solid var(--secondary); pointer-events: none; transform: translateZ(30px); opacity: 0; }
.intro-image-container.in-view .gold-border { opacity: 1; transition: opacity 1.5s 0.5s; }
.intro-image-container.in-view .gold-border::before, .intro-image-container.in-view .gold-border::after { content: ''; position: absolute; width: 0; height: 1px; background: var(--secondary); }
.est-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); border: 1px solid var(--secondary); padding: 1rem; color: var(--secondary); font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; transform: translateZ(40px); z-index: 2; box-shadow: 0 10px 20px rgba(0,0,0,0.8); }
.intro-right h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; line-height: 1.2; }
.gold-divider { width: 100px; height: 2px; background: var(--secondary); margin-bottom: 2rem; position: relative; }
.gold-divider::after { content: '✂'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--primary); padding: 0 10px; color: var(--secondary); font-size: 0.8rem; }
.intro-text p { font-size: 1.1rem; line-height: 1.8; color: #aaa; margin-bottom: 1.5rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.9rem; position: relative; margin-top: 1rem; transition: transform 0.3s; }
.link-arrow::after { content: '→'; transition: transform 0.3s; }
.link-arrow:hover { transform: translateX(5px); }
.link-arrow:hover::after { transform: translateX(5px); }
.services-section { padding: 8rem 5%; background: #0f0f0f; position: relative; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); display: inline-block; position: relative; }
.services-header h2::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--secondary), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; perspective: 1000px; }
.service-card-wrapper { aspect-ratio: 3/4; perspective: 1000px; }
.service-card { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.service-card-wrapper:hover .service-card { transform: rotateY(180deg); }
.service-front, .service-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; background: rgba(10, 10, 10, 0.8); border: 1px solid var(--gold-trans); backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; text-align: center; transition: box-shadow 0.4s, border-color 0.4s; }
.service-card-wrapper:hover .service-front { border-color: var(--secondary); box-shadow: 0 0 30px rgba(201, 168, 76, 0.15); }
.service-back { transform: rotateY(180deg); border-color: var(--secondary); background: #151515; justify-content: space-between; }
.service-icon { width: 60px; height: 60px; margin-bottom: 1.5rem; fill: transparent; stroke: var(--secondary); stroke-width: 1.5; }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--tertiary); margin-bottom: 1rem; }
.service-price { font-size: 1.8rem; color: var(--secondary); font-family: var(--font-subhead); font-style: italic; }
.service-desc { font-size: 1rem; line-height: 1.6; color: #aaa; margin-bottom: 2rem; }
.service-duration { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--secondary); text-transform: uppercase; margin-bottom: 1rem; }
.gallery-section { padding: 8rem 5%; background: var(--primary); }
.gallery-header { margin-bottom: 4rem; text-align: left; }
.gallery-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; grid-auto-rows: 250px; grid-auto-flow: dense; }
@media (min-width: 768px) { .gallery-item:nth-child(2n) { grid-row: span 2; } .gallery-item:nth-child(3n) { grid-column: span 2; } }
.gallery-item { position: relative; overflow: hidden; background: linear-gradient(135deg, #111, #222); cursor: none; perspective: 1000px; transform-style: preserve-3d; }
.gallery-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--secondary); opacity: 0.3; font-family: var(--font-heading); transition: transform 0.3s; transform: translateZ(20px); }
.gallery-placeholder span { font-size: 2rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.9); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s; z-index: 2; border: 1px solid var(--secondary); }
.gallery-overlay-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--secondary); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-out-expo); z-index: 3; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay-line { transform: scaleX(1); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05) translateZ(40px); opacity: 0.5; }
.gallery-overlay h3 { font-size: 1.2rem; margin-bottom: 0.5rem; transform: translateY(20px); opacity: 0; transition: all 0.4s 0.1s; }
.gallery-overlay p { font-style: italic; color: #aaa; transform: translateY(20px); opacity: 0; transition: all 0.4s 0.2s; }
.gallery-item:hover .gallery-overlay h3, .gallery-item:hover .gallery-overlay p { transform: translateY(0); opacity: 1; }
@media (max-width: 767px) { .gallery-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 2rem; gap: 1rem; scrollbar-width: none; } .gallery-item { flex: 0 0 80vw; height: 350px; scroll-snap-align: center; } }
.experience-section { height: 200vh; position: relative; background: #050505; }
.experience-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 0 5%; }
.experience-bg { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; z-index: 0; opacity: 0.2; }
.chair-art { width: 300px; height: 400px; position: relative; }
.chair-base { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 40px; background: linear-gradient(90deg, #333, #666, #333); border-radius: 60px 60px 0 0; }
.chair-pole { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 20px; height: 80px; background: linear-gradient(90deg, #888, #ccc, #888); }
.chair-seat { position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%); width: 160px; height: 40px; background: var(--secondary); border-radius: 10px; box-shadow: inset 0 -10px 20px rgba(0,0,0,0.5); }
.chair-back { position: absolute; bottom: 160px; left: 50%; transform: translateX(-50%); width: 140px; height: 140px; background: var(--accent); border-radius: 20px 20px 5px 5px; border: 4px solid var(--secondary); box-shadow: inset 0 0 30px rgba(0,0,0,0.8); }
.chair-headrest { position: absolute; bottom: 310px; left: 50%; transform: translateX(-50%); width: 80px; height: 40px; background: var(--accent); border-radius: 20px; border: 2px solid var(--secondary); }
.chair-arm-l { position: absolute; bottom: 140px; left: 30px; width: 20px; height: 80px; border: 4px solid var(--secondary); border-right: none; border-radius: 10px 0 0 10px; }
.chair-arm-r { position: absolute; bottom: 140px; right: 30px; width: 20px; height: 80px; border: 4px solid var(--secondary); border-left: none; border-radius: 0 10px 10px 0; }
.experience-content { position: relative; z-index: 10; width: 100%; display: flex; justify-content: space-between; }
.experience-text-block { width: 45%; max-width: 500px; opacity: 0; transform: translateY(50px); transition: all 0.8s var(--ease-out-expo); position: absolute; top: 50%; left: 0; }
.experience-text-block.active { opacity: 1; transform: translateY(-50%); }
.experience-text-block.passed { opacity: 0; transform: translateY(-150px); }
.exp-num { position: absolute; top: -60px; left: -20px; font-family: var(--font-heading); font-size: 8rem; color: var(--secondary); opacity: 0.1; line-height: 1; z-index: -1; }
.exp-title { font-size: 2rem; margin-bottom: 1rem; color: var(--tertiary); }
.exp-desc { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.exp-progress-container { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 2px; height: 300px; background: rgba(255,255,255,0.1); z-index: 10; }
.exp-progress-bar { width: 100%; background: var(--secondary); height: 0%; transition: height 0.1s; }
.testimonials-section { padding: 8rem 5%; background: var(--primary); text-align: center; overflow: hidden; }
.testi-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 4rem; }
.carousel-container { position: relative; width: 100%; max-width: 800px; margin: 0 auto; height: 400px; perspective: 1000px; }
.carousel-track { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.testi-card { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #111; border: 1px solid var(--gold-trans); padding: 3rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border-radius: 10px; transition: transform 0.6s, opacity 0.6s, z-index 0.6s; opacity: 0; transform-origin: 50% 50%; pointer-events: none; }
.testi-card.active { opacity: 1; transform: translateZ(0) translateX(0) scale(1); z-index: 3; pointer-events: auto; }
.testi-card.prev { opacity: 0.3; transform: translateZ(-100px) translateX(-30%) rotateY(15deg); z-index: 2; }
.testi-card.next { opacity: 0.3; transform: translateZ(-100px) translateX(30%) rotateY(-15deg); z-index: 2; }
.testi-stars { color: var(--secondary); font-size: 1.5rem; margin-bottom: 1rem; letter-spacing: 5px; }
.testi-quote { font-family: var(--font-subhead); font-style: italic; font-size: 1.3rem; line-height: 1.6; color: var(--tertiary); margin-bottom: 2rem; position: relative; }
.testi-quote::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-size: 6rem; color: var(--secondary); opacity: 0.1; line-height: 1; }
.testi-author { font-family: var(--font-heading); font-size: 1.1rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.carousel-controls { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.carousel-btn { background: transparent; border: 1px solid var(--secondary); color: var(--secondary); width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: none; transition: background 0.3s, color 0.3s; }
.carousel-btn:hover { background: var(--secondary); color: var(--primary); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 1.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--secondary); cursor: none; transition: background 0.3s; }
.dot.active { background: var(--secondary); }
.pricing-section { padding: 8rem 5%; background: linear-gradient(to bottom, #0A0A0A, #111); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.pricing-container { max-width: 900px; margin: 0 auto; display: grid; gap: 4rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pricing-container { grid-template-columns: 1fr 1fr; } }
.pricing-group h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 2rem; letter-spacing: 0.2em; position: relative; display: inline-block; }
.pricing-group h3::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 50px; height: 2px; background: var(--secondary); }
.price-list { list-style: none; }
.price-item { display: flex; justify-content: space-between; align-items: flex-end; padding: 1rem 0; position: relative; transition: padding-left 0.3s; }
.price-item::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: linear-gradient(90deg, var(--gold-trans), transparent); z-index: 0; transition: width 0.4s var(--ease-out-expo); }
.price-item:hover { padding-left: 10px; }
.price-item:hover::before { width: 100%; }
.price-name { font-size: 1.1rem; position: relative; z-index: 1; }
.price-connector { flex-grow: 1; border-bottom: 1px dashed rgba(201, 168, 76, 0.4); margin: 0 15px 5px; opacity: 0.5; }
.price-value { font-family: var(--font-subhead); font-size: 1.5rem; color: var(--secondary); font-style: italic; position: relative; z-index: 1; }
.pricing-note { text-align: center; margin-top: 4rem; font-style: italic; color: #888; font-size: 0.9rem; }
.cta-section { padding: 10rem 5%; background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 50%, var(--primary) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(201, 168, 76, 0.03) 100px, rgba(201, 168, 76, 0.03) 101px); animation: moveBg 20s linear infinite; pointer-events: none; }
@keyframes moveBg { 0% { background-position: 0 0; } 100% { background-position: 141px 141px; } }
.cta-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
.cta-header { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1rem; color: var(--tertiary); }
.cta-sub { font-size: 1.2rem; color: var(--secondary); font-family: var(--font-subhead); font-style: italic; margin-bottom: 4rem; letter-spacing: 0.1em; }
.cta-buttons { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.btn-cta-ghost, .btn-cta-filled { padding: 1.2rem 2.5rem; font-family: var(--font-heading); font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: none; display: flex; align-items: center; gap: 10px; transition: all 0.4s; position: relative; overflow: hidden; }
.btn-cta-ghost { background: transparent; color: var(--secondary); border: 1px solid var(--secondary); }
.btn-cta-ghost:hover { background: rgba(201, 168, 76, 0.1); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.btn-cta-filled { background: var(--secondary); color: var(--primary); border: 1px solid var(--secondary); }
.btn-cta-filled::before { content: ''; position: absolute; top: 50%; left: 50%; width: 300px; height: 300px; background: var(--tertiary); border-radius: 50%; transform: translate(-50%, -50%) scale(0); transition: transform 0.6s var(--ease-out-expo); z-index: 0; }
.btn-cta-filled:hover::before { transform: translate(-50%, -50%) scale(1); }
.btn-cta-filled span { position: relative; z-index: 1; transition: color 0.4s; }
.btn-cta-filled svg { position: relative; z-index: 1; fill: var(--primary); transition: fill 0.4s; width: 20px; height: 20px; }
.btn-cta-filled:hover span { color: var(--primary); }
.btn-cta-ghost svg { fill: var(--secondary); width: 20px; height: 20px; transition: transform 0.3s; }
.btn-cta-ghost:hover svg { transform: scale(1.2); }
.contact-section { padding: 8rem 5%; display: flex; flex-wrap: wrap; gap: 4rem; background: var(--primary); }
.contact-left, .contact-right { flex: 1; min-width: 300px; }
.contact-left h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.contact-info { margin-bottom: 3rem; }
.contact-row { display: flex; margin-bottom: 1.5rem; }
.contact-icon { width: 30px; color: var(--secondary); font-size: 1.2rem; margin-top: 5px; }
.contact-text { flex: 1; color: var(--tertiary); line-height: 1.6; }
.contact-text a { transition: color 0.3s; }
.contact-text a:hover { color: var(--secondary); text-shadow: 0 0 10px rgba(201,168,76,0.5); }
.hours-list { list-style: none; border-top: 1px solid rgba(255,255,255,0.1); max-width: 400px; }
.hours-row { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #aaa; transition: all 0.3s; }
.hours-row.today { color: var(--secondary); font-weight: bold; background: linear-gradient(90deg, rgba(201,168,76,0.1), transparent); padding-left: 10px; }
.social-links { display: flex; gap: 1.5rem; margin-top: 2rem; }
.social-icon { width: 40px; height: 40px; border: 1px solid var(--secondary); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--secondary); transition: all 0.4s; cursor: none; }
.social-icon:hover { background: var(--secondary); color: var(--primary); transform: rotateY(360deg); box-shadow: 0 0 20px rgba(201,168,76,0.5); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.map-container { width: 100%; height: 100%; min-height: 400px; border: 1px solid var(--secondary); position: relative; display: flex; justify-content: center; align-items: center; background: #151515; overflow: hidden; }
.map-container::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(10,10,10,0.8), rgba(201,168,76,0.1)); pointer-events: none; }
.map-iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) sepia(30%) hue-rotate(15deg) brightness(80%) contrast(120%); }
footer { padding: 4rem 5% 2rem; background: #050505; text-align: center; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary), transparent); }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; color: var(--tertiary); letter-spacing: 0.2em; margin-bottom: 2rem; }
.footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.footer-nav a { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: #888; transition: color 0.3s; }
.footer-nav a:hover { color: var(--secondary); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.footer-social a { color: var(--secondary); opacity: 0.7; transition: opacity 0.3s; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { fill: currentColor; width: 24px; height: 24px; }
.footer-copy { font-size: 0.8rem; color: #555; margin-bottom: 1rem; }
.footer-credit { font-size: 0.8rem; color: #555; }
.footer-credit span { color: var(--secondary); }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--secondary); color: var(--primary); display: flex; justify-content: center; align-items: center; z-index: 999; cursor: none; opacity: 0; transform: translateY(50px); transition: all 0.4s; font-size: 1.5rem; pointer-events: none; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--tertiary); }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); } 70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); } 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }
.split-text { display: inline-block; max-width: 100%; word-break: break-word; }
.split-text .word { display: inline-block; max-width: 100%; word-break: break-word; white-space: normal; opacity: 0; transform: translateY(100%); transition: opacity 0.8s, transform 0.8s var(--ease-out-expo); filter: blur(4px); }
.split-text.in-view .word { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (max-width: 1200px) { html { font-size: 14px; } .hero-content { transform: scale(0.9); } }
@media (max-width: 768px) {
    html { font-size: 12px; }
    .intro-section, .services-section, .gallery-section, .contact-section { padding: 4rem 5%; }
    .intro-left, .intro-right, .contact-left, .contact-right { min-width: 100%; }
    .hero-title { font-size: 10vw; letter-spacing: 0.15em; line-height: 1.2; word-wrap: break-word; }
    .hero-subtitle { font-size: 3.5vw; letter-spacing: 0.2em; }
    .cta-header { font-size: 8vw; letter-spacing: 0.1em; line-height: 1.2; word-wrap: break-word; }
    h2.split-text { font-size: 8vw; letter-spacing: 0.1em; line-height: 1.2; word-wrap: break-word; }
    .btn-gold { padding: 0.6rem 1rem; }
    .custom-cursor, .cursor-trail { display: none; }
    body, button, a { cursor: auto !important; }
    .experience-section { height: auto; padding: 4rem 5%; }
    .experience-sticky { position: relative; height: auto; flex-direction: column; overflow: visible; }
    .experience-bg { position: relative; opacity: 0.5; margin-bottom: 3rem; }
    .experience-content { flex-direction: column; gap: 3rem; }
    .experience-text-block { width: 100%; position: relative; opacity: 1; transform: none; top: 0; left: 0; transition: none; }
    .exp-progress-container { display: none; }
    .testi-card { padding: 1.5rem; }
    .testi-quote { font-size: 1.1rem; } .testi-quote::before { font-size: 3rem; top: -20px; }
}
