/* ===== CSS VARIABLES ===== */
:root {
    --brass: #C9A24B;
    --brass-light: #E2C079;
    --brass-dark: #9A7A32;
    --copper: #B5713A;
    --bg: #121317;
    --bg-2: #17181D;
    --surface: #1E2127;
    --surface-2: #24272E;
    --cream: #F3EEE3;
    --white: #FFFFFF;
    --black: #0C0D10;
    --text: #C7CAD1;
    --text-strong: #EDEFF3;
    --muted: #8A8E97;
    --muted-dark: #6A6E77;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --gold: #C9A24B;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.6);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

/* Barber-pole loader */
.preloader-pole {
    width: 14px;
    height: 60px;
    margin: 0 auto 22px;
    border-radius: 8px;
    border: 2px solid var(--line-strong);
    background: repeating-linear-gradient(
        45deg,
        var(--brass) 0 8px,
        var(--bg-2) 8px 16px
    );
    background-size: 100% 200%;
    animation: poleSpin 0.9s linear infinite;
    box-shadow: 0 0 20px rgba(201,162,75,0.3);
}

@keyframes poleSpin {
    to { background-position: 0 -32px; }
}

.preloader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 6px;
    color: var(--cream);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(18, 19, 23, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--brass);
    transform: rotate(-20deg);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 3px;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brass);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brass-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px;
    background: var(--brass);
    color: var(--black) !important;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--brass-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 75, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(201, 162, 75, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 25%, rgba(181, 113, 58, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 90%, rgba(201, 162, 75, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--black) 100%);
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Hero Side Images */
.hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 38%;
    z-index: 1;
    overflow: hidden;
}

.hero-image-left {
    left: 0;
    animation: heroSlideLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-image-right {
    right: 0;
    animation: heroSlideRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@keyframes heroSlideLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes heroSlideRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(35%) contrast(1.05) brightness(0.85);
}

.hero-image-left .hero-image-inner img {
    object-position: right center;
}

.hero-image-right .hero-image-inner img {
    object-position: left center;
}

/* Gradient fade toward center */
.hero-image-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 75%;
    z-index: 2;
    pointer-events: none;
}

.hero-image-left .hero-image-fade {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, rgba(18,19,23,0) 100%);
}

.hero-image-right .hero-image-fade {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, rgba(18,19,23,0) 100%);
}

/* Dark vignette overlay on images */
.hero-image-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(12,13,16,0.5) 0%, transparent 25%),
        linear-gradient(to top, rgba(12,13,16,0.6) 0%, transparent 20%);
}

/* Floating Sparks */
.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--brass);
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 8px rgba(201,162,75,0.5);
    animation: sparkFall linear infinite;
}

.spark-1 { left: 12%; animation-duration: 15s; animation-delay: 0s; width: 5px; height: 5px; }
.spark-2 { left: 25%; animation-duration: 18s; animation-delay: 2s; width: 4px; height: 4px; background: var(--copper); }
.spark-3 { left: 45%; animation-duration: 20s; animation-delay: 5s; width: 6px; height: 6px; }
.spark-4 { left: 65%; animation-duration: 16s; animation-delay: 1s; width: 4px; height: 4px; background: var(--brass-light); }
.spark-5 { left: 80%; animation-duration: 22s; animation-delay: 3s; width: 5px; height: 5px; }
.spark-6 { left: 90%; animation-duration: 17s; animation-delay: 4s; width: 3px; height: 3px; background: var(--copper); }

@keyframes sparkFall {
    0% { top: -10%; transform: translateX(0); opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { top: 110%; transform: translateX(60px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(201, 162, 75, 0.1);
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass-light);
    margin-bottom: 26px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 24px;
}

.hero-line-1 {
    display: block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-line-2 {
    display: block;
    color: var(--brass);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--brass);
}

.stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--brass);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--line-strong);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--line-strong);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--brass);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--brass);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--brass-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 75, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--brass);
    color: var(--brass-light);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--cream);
    color: var(--black);
}

.btn-white:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(201, 162, 75, 0.1);
    border: 1px solid rgba(201, 162, 75, 0.2);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass-light);
    margin-bottom: 18px;
}

.section-tag.light {
    background: rgba(12, 13, 16, 0.25);
    border-color: rgba(12, 13, 16, 0.2);
    color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-strong);
    margin-bottom: 16px;
}

.section-title em {
    color: var(--brass);
    font-style: normal;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--bg-2);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--bg-2);
    box-shadow: var(--shadow-md);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--brass);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(201,162,75,0.35);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-text {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brass);
    flex-shrink: 0;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-strong);
}

.feature p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 162, 75, 0.3);
}

.service-card.featured {
    border: 1px solid var(--brass);
    box-shadow: 0 0 0 1px rgba(201,162,75,0.2), var(--shadow-md);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--brass);
    color: var(--black);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.service-body {
    padding: 36px 32px 32px;
}

.service-body h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-strong);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-body > p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

.service-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brass);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--bg-2);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid var(--line-strong);
    background: transparent;
    border-radius: 50px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--brass);
    background: var(--brass);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 250px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--line);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 13, 16, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-img img {
    filter: grayscale(0%);
}

.gallery-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass-light);
    margin-bottom: 4px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.gallery-item.hidden {
    display: none;
}

/* ===== BRANDS MARQUEE ===== */
.brands-section {
    padding: 40px 0;
    background: var(--black);
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: var(--muted-dark);
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.marquee-dot {
    font-size: 0.9rem !important;
    color: var(--brass) !important;
    letter-spacing: 0 !important;
    transform: rotate(-20deg);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== TEAM ===== */
.team {
    padding: 120px 0;
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 75, 0.3);
}

.team-photo {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%);
    transition: filter var(--transition);
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    color: var(--text-strong);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--brass);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
    font-size: 0.7rem;
    transition: all var(--transition);
}

.team-social a:hover {
    background: var(--brass);
    color: var(--black);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-2);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.3rem;
    color: var(--brass);
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-strong);
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-strong);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: transparent;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    border-color: var(--brass);
    background: var(--brass);
    color: var(--black);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line-strong);
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--brass);
    width: 30px;
    border-radius: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(12,13,16,0.06) 0 12px, transparent 12px 24px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--black);
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 16px;
}

.cta-content em {
    font-style: normal;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brass);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    color: var(--text-strong);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--text-strong);
    background: var(--surface-2);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brass);
    background: var(--bg-2);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A24B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--surface-2);
    color: var(--text-strong);
}

.form-group {
    margin-bottom: 0;
}

.contact-form .btn {
    margin-top: 8px;
    padding: 16px;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--text);
    padding: 80px 0 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--black);
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-strong);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--brass-light);
}

.footer-newsletter h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-strong);
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 50px 0 0 50px;
    background: var(--surface);
    color: var(--text-strong);
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--muted-dark);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--brass);
    color: var(--black);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--brass-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--muted-dark);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--brass);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brass-light);
    transform: translateY(-3px);
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-image {
        width: 30%;
    }

    .hero-image-left .hero-image-fade {
        width: 70%;
    }

    .hero-image-right .hero-image-fade {
        width: 70%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(18, 19, 23, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--line);
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-image {
        width: 25%;
        opacity: 0.5;
    }

    .hero-image-left .hero-image-fade,
    .hero-image-right .hero-image-fade {
        width: 80%;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-secondary {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 200px;
        margin-top: -40px;
    }

    .about-experience-badge {
        top: 20px;
        right: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .whatsapp-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
}
