/* ============================================
   LA BARBERIA DI MIKY — Editorial Design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0C0C0C;
    color: #F0EDE6;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }
::selection { background: #D4A853; color: #0C0C0C; }
body { user-select: none; -webkit-user-select: none; }
a, button, input, textarea { user-select: auto; -webkit-user-select: auto; }

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

/* --- Custom Cursor --- */
.cursor {
    width: 8px;
    height: 8px;
    background: #D4A853;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}
.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 168, 83, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: #D4A853;
}
@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
    body, a, button { cursor: auto; }
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: #0C0C0C;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.loader-line {
    width: 60px;
    height: 1px;
    background: #D4A853;
    animation: loaderLine 1.5s ease-in-out infinite;
}
.loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4A853;
    animation: loaderTextPulse 1.5s ease-in-out infinite;
}
@keyframes loaderLine { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(0.5); } }
@keyframes loaderTextPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 32px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #F0EDE6;
    transition: color 0.3s ease;
}
.nav-logo-accent { color: #D4A853; }
.nav-center {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.4);
}
.nav-divider { opacity: 0.3; }
.nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.nav-menu-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.6);
    transition: color 0.3s ease;
}
.nav-menu-btn:hover .nav-menu-text { color: #D4A853; }
.nav-menu-icon {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nav-menu-icon span {
    display: block;
    width: 100%;
    height: 1px;
    background: #F0EDE6;
    transition: all 0.3s ease;
}
.nav-menu-icon span:last-child { width: 60%; }
.nav-menu-btn:hover .nav-menu-icon span { background: #D4A853; }
.nav-menu-btn.active .nav-menu-icon span:first-child { transform: rotate(45deg) translate(2px, 2px); }
.nav-menu-btn.active .nav-menu-icon span:last-child { width: 100%; transform: rotate(-45deg) translate(2px, -2px); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #0C0C0C;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 2px;
    color: rgba(240, 237, 230, 0.15);
    transition: color 0.3s ease;
    display: flex;
    align-items: baseline;
    gap: 16px;
    transform: translateY(20px);
    opacity: 0;
}
.mobile-menu.active .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
}
.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-link:hover { color: #F0EDE6; }
.mobile-menu-link::before {
    content: attr(data-index);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #D4A853;
    min-width: 24px;
}
.mobile-menu-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(240, 237, 230, 0.1);
}
.mobile-menu-footer a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #D4A853;
    color: #0C0C0C;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.mobile-menu-footer a:hover { background: #E0B963; transform: translateY(-2px); }

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    position: relative;
}
.hero-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.4);
    margin-bottom: 32px;
}
.hero-label-line {
    width: 40px;
    height: 1px;
    background: #D4A853;
}
.hero-title {
    margin-bottom: auto;
}
.hero-title-line {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: -2px;
    color: #F0EDE6;
}
.hero-title-outline {
    -webkit-text-stroke: 1.5px #F0EDE6;
    color: transparent;
}
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}
.hero-desc {
    font-size: 0.9375rem;
    color: rgba(240, 237, 230, 0.5);
    line-height: 1.7;
    max-width: 280px;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #D4A853;
    color: #0C0C0C;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.hero-cta:hover { background: #E0B963; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212, 168, 83, 0.3); }
.hero-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(12, 12, 12, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.hero-cta-arrow svg { width: 16px; height: 16px; }
.hero-cta:hover .hero-cta-arrow { background: #0C0C0C; color: #D4A853; }
.hero-cta:hover .hero-cta-arrow svg { stroke: #D4A853; }
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-image-wrapper {
    width: 100%;
    height: 100%;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.3) 0%, rgba(12, 12, 12, 0.1) 50%, rgba(12, 12, 12, 0.5) 100%);
}
.hero-image-tag {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.6);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-scroll-num {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #D4A853;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #D4A853, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-text {
    font-size: 0.625rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.3);
    writing-mode: vertical-rl;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* --- Marquee --- */
.marquee {
    padding: 24px 0;
    border-top: 1px solid rgba(240, 237, 230, 0.08);
    border-bottom: 1px solid rgba(240, 237, 230, 0.08);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 32px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.2);
}
.marquee-dot { color: #D4A853; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Section Number --- */
.section-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: #D4A853;
    display: block;
    margin-bottom: 16px;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: #0C0C0C;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}
.about-sticky {
    position: sticky;
    top: 120px;
}
.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -1px;
}
.about-title-line {
    display: block;
    color: rgba(240, 237, 230, 0.15);
    transition: color 0.5s ease;
}
.about-title-line:nth-child(2) { color: #D4A853; }
.about-right { padding-top: 80px; }
.about-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
}
.about-image-block {
    position: relative;
    max-width: 400px;
}
.about-image-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(0.4);
}
.about-image-label {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: #D4A853;
    color: #0C0C0C;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    gap: 12px;
}
.about-text-large {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #F0EDE6;
}
.about-text {
    font-size: 1rem;
    color: rgba(240, 237, 230, 0.5);
    line-height: 1.8;
}
.about-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 48px;
    border-top: 1px solid rgba(240, 237, 230, 0.08);
}
.about-stat { text-align: center; }
.about-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #D4A853;
    line-height: 1;
    display: block;
}
.about-stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(240, 237, 230, 0.4);
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}
.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(240, 237, 230, 0.08);
}

/* --- Diagonal Divider --- */
.diagonal-divider {
    margin-top: -1px;
    line-height: 0;
}
.diagonal-divider svg {
    width: 100%;
    height: 80px;
}

/* --- Services --- */
.services {
    padding: 100px 0 120px;
    background: var(--color-bg-alt, #111111);
}
.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}
.services-header {
    margin-bottom: 64px;
}
.services-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
}
.services-subtitle {
    font-size: 1rem;
    color: rgba(240, 237, 230, 0.4);
}
.services-list {
    display: flex;
    flex-direction: column;
}
.service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto 60px;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(240, 237, 230, 0.08);
    transition: all 0.3s ease;
}
.service-item:first-child { border-top: 1px solid rgba(240, 237, 230, 0.08); }
.service-item:hover { padding-left: 16px; background: rgba(212, 168, 83, 0.03); }
.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: rgba(240, 237, 230, 0.15);
    transition: color 0.3s ease;
}
.service-item:hover .service-num { color: #D4A853; }
.service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.service-item:hover .service-name { color: #D4A853; }
.service-desc {
    font-size: 0.875rem;
    color: rgba(240, 237, 230, 0.4);
    margin-top: 4px;
}
.service-price {
    font-size: 0.875rem;
    color: rgba(240, 237, 230, 0.3);
    white-space: nowrap;
}
.service-cta {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 237, 230, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.service-cta svg { width: 18px; height: 18px; }
.service-cta:hover { background: #D4A853; border-color: #D4A853; color: #0C0C0C; }

/* --- Gallery Horizontal Scroll --- */
.gallery {
    padding: 120px 0 80px;
    background: #0C0C0C;
    overflow: hidden;
}
.gallery-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}
.gallery-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -1px;
    line-height: 1;
}
.gallery-nav {
    display: flex;
    gap: 8px;
}
.gallery-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 237, 230, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.gallery-nav-btn:hover { background: #D4A853; border-color: #D4A853; color: #0C0C0C; }
.gallery-nav-btn svg { width: 18px; height: 18px; }
.gallery-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 80px;
}
.gallery-scroll-wrapper::-webkit-scrollbar { display: none; }
.gallery-track {
    display: flex;
    gap: 24px;
    width: max-content;
}
.gallery-item {
    flex: 0 0 350px;
    height: 450px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item-tall { height: 550px; }
.gallery-item-wide { flex: 0 0 500px; }
.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.6);
    transition: all 0.6s ease;
}
.gallery-item:hover img { filter: grayscale(0); transform: scale(1.05); }
.gallery-item-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gallery-item-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(240, 237, 230, 0.3);
    line-height: 1;
}
.gallery-item-tag {
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A853;
    background: rgba(12, 12, 12, 0.7);
    padding: 6px 12px;
    backdrop-filter: blur(8px);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 237, 230, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.lightbox-close:hover { background: #D4A853; border-color: #D4A853; color: #0C0C0C; }
.lightbox-close svg { width: 20px; height: 20px; }

/* --- Reviews --- */
.reviews {
    padding: 120px 0;
    background: #111111;
}
.reviews-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}
.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
}
.reviews-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #D4A853;
    line-height: 1;
}
.reviews-stars {
    display: flex;
    gap: 4px;
}
.reviews-stars svg { width: 24px; height: 24px; color: #D4A853; }
.reviews-count {
    font-size: 1rem;
    color: rgba(240, 237, 230, 0.5);
}
.reviews-count span { font-weight: 600; color: #F0EDE6; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.review-card {
    background: rgba(240, 237, 230, 0.03);
    border: 1px solid rgba(240, 237, 230, 0.06);
    padding: 40px 32px;
    transition: all 0.3s ease;
}
.review-card:hover { border-color: rgba(212, 168, 83, 0.3); transform: translateY(-4px); }
.review-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #D4A853;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}
.review-text {
    font-size: 1rem;
    color: rgba(240, 237, 230, 0.6);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}
.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-name { font-weight: 600; font-size: 0.875rem; }
.review-date { font-size: 0.75rem; color: rgba(240, 237, 230, 0.3); }
.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4A853;
    transition: all 0.3s ease;
}
.reviews-link:hover { gap: 16px; }
.reviews-link svg { width: 16px; height: 16px; }

/* --- CTA Band --- */
.cta-band {
    padding: 80px 0;
    background: #D4A853;
    overflow: hidden;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: ctaBandScroll 15s linear infinite;
    width: max-content;
}
.cta-band-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #0C0C0C;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.cta-band-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0C0C0C;
    border-radius: 50%;
    color: #D4A853;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.cta-band-btn:hover { transform: scale(1.1); }
.cta-band-btn svg { width: 32px; height: 32px; }
@keyframes ctaBandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: #0C0C0C;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}
.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 48px;
}
.contact-title-line {
    display: block;
    color: rgba(240, 237, 230, 0.15);
}
.contact-title-line:last-child { color: #F0EDE6; }
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-label {
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A853;
}
.contact-value {
    font-size: 1rem;
    color: rgba(240, 237, 230, 0.6);
    line-height: 1.6;
}
.contact-link:hover { color: #D4A853; }
.contact-social {
    display: flex;
    gap: 16px;
}
.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(240, 237, 230, 0.1);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}
.contact-social-link:hover { border-color: #D4A853; color: #D4A853; }
.contact-social-link svg { width: 18px; height: 18px; }
.contact-right { display: flex; flex-direction: column; gap: 24px; }
.contact-map {
    flex: 1;
    min-height: 400px;
    border: 1px solid rgba(240, 237, 230, 0.08);
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.7) contrast(1.1) brightness(0.8);
}
.contact-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.contact-map-btn:hover { background: #128C7E; transform: translateY(-2px); }
.contact-map-btn svg { width: 20px; height: 20px; }

/* --- Footer --- */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(240, 237, 230, 0.06);
    background: #0C0C0C;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 80px;
    align-items: start;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}
.footer-logo-accent { color: #D4A853; }
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(240, 237, 230, 0.3);
    line-height: 1.6;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.8125rem;
    color: rgba(240, 237, 230, 0.4);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}
.footer-links a:hover { color: #D4A853; }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 237, 230, 0.1);
    color: rgba(240, 237, 230, 0.4);
    transition: all 0.3s ease;
}
.footer-social a:hover { border-color: #D4A853; color: #D4A853; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(240, 237, 230, 0.06);
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(240, 237, 230, 0.2);
}
.footer-developed {
    font-size: 0.75rem;
    color: rgba(240, 237, 230, 0.2);
    transition: color 0.3s ease;
}
.footer-developed:hover {
    color: #D4A853;
}
.footer-back-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.3);
    transition: color 0.3s ease;
}
.footer-back-top:hover { color: #D4A853; }
.footer-back-top svg { width: 14px; height: 14px; }

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { padding: 120px 40px 80px; }
    .hero-right { display: none; }
    .hero-scroll-indicator { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
    .about-sticky { position: static; }
    .services-inner, .gallery-header, .gallery-scroll-wrapper { padding: 0 40px; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .reviews-inner, .footer-inner { padding: 0 40px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .nav-center { display: none; }
    .hero-left { padding: 100px 24px 60px; }
    .hero-title-line { font-size: clamp(3rem, 15vw, 5rem); }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .about-grid { padding: 0 24px; }
    .about-stats { flex-direction: column; gap: 24px; }
    .about-stat-divider { width: 40px; height: 1px; }
    .services-inner { padding: 0 24px; }
    .service-item { grid-template-columns: 40px 1fr 48px; gap: 16px; }
    .service-price { display: none; }
    .gallery-header, .gallery-scroll-wrapper { padding: 0 24px; }
    .gallery-item { flex: 0 0 280px; height: 380px; }
    .gallery-item-wide { flex: 0 0 280px; }
    .gallery-item-tall { height: 420px; }
    .reviews-inner, .footer-inner { padding: 0 24px; }
    .contact-inner { padding: 0 24px; }
    .contact-map { min-height: 300px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}
