/* ============================================================
   Luan Corts Barbearia — Landing Page
   landing.css

   Intent: Converter visitante em cliente em < 10 segundos.
           Preto teatral de salão + ouro de letreiro premium.
           Consistência com o sistema BarbeiraControl.

   Depth: borders-only, sem shadows decorativas
   Surfaces: warm black escalado em 4 níveis
   Typography: Bebas Neue (display) + Barlow (corpo)
   Spacing: base 8px
============================================================ */

/* ════════════════════════════════
   TOKENS
════════════════════════════════ */
:root {
    /* Superfícies — preto teatral + subtom quente */
    --bg: #080808;
    --surface: #0E0E0E;
    --card: #141414;
    --raised: #1C1C1C;
    --hover: #242424;
    /* Bordas */
    --rule-xs: rgba(255,255,255,0.04);
    --rule: rgba(255,255,255,0.08);
    --rule-hi: rgba(255,255,255,0.14);
    --rule-max: rgba(255,255,255,0.24);
    /* Texto */
    --ink-1: #F0EDE8; /* primário — creme */
    --ink-2: #9C9690; /* secundário */
    --ink-3: #5C5850; /* terciário */
    --ink-4: #343028; /* muted */
    /* Gold — spotlight de barbearia */
    --gold: #C4A24A;
    --gold-2: #A88838;
    --gold-hi: #DEBB6A;
    --gold-ghost: rgba(196,162,74,0.07);
    --gold-dim: rgba(196,162,74,0.14);
    --gold-border: rgba(196,162,74,0.22);
    /* Tipografia */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink-1);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-2);
}

img {
    display: block;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: linear-gradient(to bottom, rgba(8,8,8,0.97), rgba(8,8,8,0));
    transition: background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

    nav.scrolled {
        background: rgba(8,8,8,0.98);
        border-bottom-color: var(--rule);
    }

.nav-logo img {
    height: 56px;
    mix-blend-mode: screen;
    transition: opacity 0.2s;
}

    .nav-logo img:hover {
        opacity: 0.8;
    }

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

    .nav-links a {
        color: var(--ink-2);
        text-decoration: none;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 4px;
        transition: color 0.2s;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.2s;
        }

        .nav-links a:hover {
            color: var(--ink-1);
        }

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

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 7px;
    background: none;
    border: 1px solid var(--rule);
    z-index: 1002;
    transition: border-color 0.15s;
}

    .nav-hamburger:hover {
        border-color: var(--gold-border);
    }

    .nav-hamburger span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: var(--gold);
        transition: all 0.25s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

/* Drawer mobile */
.nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid var(--gold-border);
}

    .nav-drawer.open {
        display: flex;
    }

    .nav-drawer a {
        color: var(--ink-1);
        text-decoration: none;
        font-family: var(--font-display);
        font-size: 44px;
        letter-spacing: 5px;
        transition: color 0.2s;
    }

        .nav-drawer a:hover {
            color: var(--gold);
        }

.nav-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--rule-hi);
    color: var(--ink-2);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.15s;
}

    .nav-drawer-close:hover {
        border-color: var(--gold-border);
        color: var(--gold);
    }

    .nav-drawer-close::before, .nav-drawer-close::after {
        content: none !important;
        display: none !important;
    }

/* ════════════════════════════════
   UTILITÁRIOS TIPOGRÁFICOS
════════════════════════════════ */
.section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .section-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        opacity: 0.7;
        flex-shrink: 0;
    }

    /* Versão centrada */
    .section-eyebrow.centered {
        justify-content: center;
    }

        .section-eyebrow.centered::before {
            display: none;
        }

        .section-eyebrow.centered::after {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--gold);
            opacity: 0.7;
            flex-shrink: 0;
        }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.92;
    color: var(--ink-1);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

/* Gradiente radial de atmosfera */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(196,162,74,0.05) 0%, transparent 55%), radial-gradient(ellipse at 15% 80%, rgba(255,255,255,0.015) 0%, transparent 45%);
    pointer-events: none;
}

/* Linhas decorativas verticais */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-lines::before {
        content: '';
        position: absolute;
        top: -50%;
        left: 52%;
        width: 1px;
        height: 200%;
        background: linear-gradient(to bottom, transparent 0%, var(--gold-border) 30%, rgba(196,162,74,0.5) 50%, var(--gold-border) 70%, transparent 100%);
        animation: heroLine 5s ease-in-out infinite alternate;
    }

    .hero-lines::after {
        content: '';
        position: absolute;
        top: -50%;
        left: 54%;
        width: 1px;
        height: 200%;
        background: linear-gradient(to bottom, transparent 0%, var(--rule) 40%, var(--rule-hi) 55%, var(--rule) 70%, transparent 100%);
        animation: heroLine 5s 1.5s ease-in-out infinite alternate;
        opacity: 0.5;
    }

@keyframes heroLine {
    from {
        opacity: 0.3;
        transform: scaleY(0.85);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 3;
    width: 55%;
    max-width: 720px;
    padding: 140px 60px 80px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(76px, 9.5vw, 136px);
    line-height: 0.88;
    color: var(--ink-1);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

    .hero-title span {
        color: var(--gold);
    }

.hero-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 300;
    color: var(--ink-3);
    margin-bottom: 44px;
    line-height: 1.75;
    max-width: 480px;
}

/* CTA — clip-path de paralelogramo, identidade do sistema */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gold-2);
    color: #060400;
    padding: 18px 48px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: background 0.15s, gap 0.2s, transform 0.1s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

    .hero-cta:hover {
        background: var(--gold);
        gap: 22px;
        transform: translateX(3px);
    }

/* Imagem do hero */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: grayscale(100%) contrast(1.08) brightness(0.82);
        opacity: 0.9;
    }

    /* Overlay gradiente que funde com o fundo */
    .hero-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to left, transparent 0%, rgba(8,8,8,0.12) 15%, rgba(8,8,8,0.50) 40%, rgba(8,8,8,0.96) 100% );
        z-index: 2;
    }

/* Watermark — marca da casa */
.hero-number {
    position: absolute;
    right: 48px;
    bottom: 32px;
    font-family: var(--font-display);
    font-size: 160px;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ════════════════════════════════
   SEÇÃO — BASE
════════════════════════════════ */
section {
    padding: 120px 60px;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about {
    background: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

/* Imagem com cantos angulares — padrão do sistema */
.about-visual {
    position: relative;
    overflow: hidden;
    height: 520px;
}

    .about-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        filter: grayscale(100%) contrast(1.1) brightness(0.85);
        transition: transform 0.6s;
    }

    .about-visual:hover img {
        transform: scale(1.03);
    }

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.1) 55%, transparent 100%);
}

/* Frame de cantos dourados */
.about-frame {
    position: absolute;
    inset: 12px;
    pointer-events: none;
    z-index: 2;
}

    .about-frame::before, .about-frame::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 28px;
        border-color: var(--gold-2);
        border-style: solid;
        opacity: 0.7;
    }

    .about-frame::before {
        top: -1px;
        left: -1px;
        border-width: 1px 0 0 1px;
    }

    .about-frame::after {
        bottom: -1px;
        right: -1px;
        border-width: 0 1px 1px 0;
    }

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--ink-2);
    margin-bottom: 20px;
}

    .about-text p strong {
        color: var(--ink-1);
        font-weight: 600;
    }

/* Stats — ledger style igual ao admin */
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* ════════════════════════════════
   SERVICES
   Assinatura: número de item como watermark interno
════════════════════════════════ */
.services {
    background: var(--bg);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule-xs); /* gap como linha de grid */
}

.service-card {
    background: var(--card);
    padding: 44px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

    .service-card:hover {
        background: var(--raised);
    }

/* Número de item — watermark interno grande */
.service-card-num {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 96px;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.2s;
}

.service-card:hover .service-card-num {
    color: rgba(196,162,74,0.05);
}

/* Linha dourada no rodapé — revela no hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: block;
    fill: none;
    stroke: var(--ink-3);
    stroke-width: 1.4;
    transition: stroke 0.2s;
}

.service-card:hover .service-icon {
    stroke: var(--gold);
}

.service-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink-1);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.8;
}

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gallery-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

    /* Watermark GALERIA */
    .gallery-section::before {
        content: 'GALERIA';
        position: absolute;
        right: -60px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-family: var(--font-display);
        font-size: 160px;
        color: rgba(255,255,255,0.015);
        pointer-events: none;
        white-space: nowrap;
        user-select: none;
    }

.gallery-header {
    text-align: center;
    margin-bottom: 56px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 2px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--card);
}

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) contrast(1.12) brightness(0.82);
        transition: transform 0.55s, filter 0.35s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
        filter: grayscale(40%) contrast(1.15) brightness(0.9);
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* Cantos angulares dourados no hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--gold-2);
    border-left: 1px solid var(--gold-2);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.3s;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid var(--gold-2);
    border-right: 1px solid var(--gold-2);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.3s;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--gold);
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
}

/* ════════════════════════════════
   PRICING
   Assinatura: cardápio de barbearia
   linha pontilhada separando nome e valor
════════════════════════════════ */
.pricing {
    background: var(--bg);
}

.pricing-inner {
    display: flex;
    justify-content: center;
}

.pricing-cta-box {
    max-width: 660px;
    width: 100%;
    background: var(--card);
    border: 1px solid var(--rule);
    padding: 56px;
    position: relative;
}

    /* Linha dourada esquerda — marca de cardápio */
    .pricing-cta-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 60px;
        background: var(--gold-2);
        opacity: 0.6;
    }

    .pricing-cta-box .section-title {
        font-size: clamp(38px, 5vw, 56px);
        margin-bottom: 14px;
    }

    .pricing-cta-box > p {
        color: var(--ink-3);
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 40px;
        font-style: italic;
        font-weight: 300;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 14px 36px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.2s;
}

    .btn-outline:hover {
        background: var(--gold-2);
        border-color: var(--gold-2);
        color: #060400;
    }

/* ════════════════════════════════
   BARBERS + CONTACT
════════════════════════════════ */
.barbers {
    background: var(--surface);
    border-top: 1px solid var(--rule);
}

.barbers-header {
    margin-bottom: 64px;
}

.barbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--rule-xs);
}

.barber-card {
    position: relative;
    overflow: hidden;
    background: var(--card);
}

.barber-img-wrap {
    position: relative;
    overflow: hidden;
    height: 520px;
}

    .barber-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        filter: grayscale(100%) brightness(1.3) contrast(0.75);
        transition: transform 0.55s;
    }

    .barber-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.06);
        mix-blend-mode: overlay;
        pointer-events: none;
    }

.barber-card:hover .barber-img-wrap img {
    transform: scale(1.03);
}

.barber-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
    padding: 48px 28px 28px;
}

.barber-name {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--ink-1);
    margin-bottom: 4px;
}

.barber-role {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Info card — horários e contato */
.barber-info-card {
    background: var(--card);
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-title {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--ink-1);
    line-height: 0.95;
    margin-bottom: 32px;
}

.hours-list {
    list-style: none;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
        border-bottom: 1px solid var(--rule-xs);
        font-size: 13px;
        color: var(--ink-2);
    }

        .hours-list li span:last-child {
            color: var(--ink-1);
            font-weight: 600;
        }

        .hours-list li.closed span:last-child {
            color: var(--gold);
        }

.contact-block {
    margin-top: 40px;
}

    .contact-block p {
        font-size: 13px;
        color: var(--ink-2);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .contact-block p svg {
            flex-shrink: 0;
        }

    .contact-block strong {
        color: var(--ink-1);
        font-weight: 600;
    }

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

    .contact-link:hover {
        color: var(--gold);
    }

/* ════════════════════════════════
   STRIP CTA
════════════════════════════════ */
.strip {
    background: var(--gold-2);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    position: relative;
}

    /* Textura sutil */
    .strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 45deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 8px );
        pointer-events: none;
    }

.strip-text {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    color: #060400;
    letter-spacing: 3px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.strip-cta {
    background: var(--bg);
    color: var(--gold);
    padding: 16px 44px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: background 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}

    .strip-cta:hover {
        background: #0E0E0E;
        border-color: var(--gold-border);
    }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
    background: var(--bg);
    border-top: 1px solid var(--rule);
    padding: 56px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 100px;
    mix-blend-mode: screen;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .footer-logo img:hover {
        opacity: 0.9;
    }

.circle-bg {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-copy {
    font-size: 10px;
    color: var(--ink-4);
    letter-spacing: 2px;
    text-align: center;
}

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

    .footer-social a {
        width: 38px;
        height: 38px;
        border: 1px solid var(--rule);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.2s;
    }

        .footer-social a svg {
            width: 16px;
            height: 16px;
            fill: var(--ink-3);
            transition: fill 0.2s;
        }

        .footer-social a:hover {
            border-color: var(--gold-border);
            background: var(--gold-ghost);
        }

            .footer-social a:hover svg {
                fill: var(--gold);
            }

/* ════════════════════════════════
   SCROLL TO TOP
════════════════════════════════ */
#scrollTop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold-border);
    background: rgba(8,8,8,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 1001;
}

    #scrollTop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #scrollTop:hover {
        background: var(--gold-ghost);
        border-color: var(--gold);
    }

    #scrollTop svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold);
        stroke-width: 2;
        fill: none;
    }

/* ════════════════════════════════
   REVEAL
════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.slide-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX( 20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY( 16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .slide-left.visible,
    .slide-right.visible,
    .slide-up.visible {
        opacity: 1;
        transform: translate(0);
    }

/* ════════════════════════════════
   RESPONSIVE — 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
    section {
        padding: 80px 40px;
    }

    nav {
        padding: 14px 32px;
    }

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

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

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .about {
        gap: 48px;
    }

    .barbers-grid {
        gap: 2px;
    }

    .hero-number {
        display: none;
    }

    .hero-lines::after {
        display: none;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 768px (mobile)
════════════════════════════════ */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
    }

    nav {
        padding: 12px 16px !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    .nav-logo img {
        height: 44px;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
        height: 100svh;
        align-items: stretch;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 96px 20px 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 66px;
        line-height: 0.88;
    }

    .hero-subtitle {
        font-size: 13px;
        max-width: 250px;
    }

    .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

        .hero-image img {
            object-position: 65% center;
            opacity: 0.36;
        }

    .hero-number {
        display: none;
    }

    .hero-lines {
        display: none;
    }

    /* SECTIONS */
    section {
        padding: 64px 20px !important;
    }

    .section-title {
        font-size: clamp(38px, 11vw, 56px);
        margin-bottom: 20px;
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .about-visual {
        height: 280px;
    }

    .about-stats {
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 28px;
        margin-top: 28px;
    }

    .stat-num {
        font-size: 44px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .service-card {
        padding: 28px 16px;
    }

    .service-name {
        font-size: 20px;
    }

    .service-desc {
        font-size: 12px;
    }

    .service-card-num {
        font-size: 72px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: repeat(3, 180px) !important;
    }

    .gallery-item:first-child {
        grid-column: span 2 !important;
    }

    .gallery-header {
        margin-bottom: 32px;
    }

    /* PRICING */
    .pricing-cta-box {
        padding: 32px 22px;
    }

        .pricing-cta-box .section-title {
            font-size: 36px;
        }

    /* BARBERS */
    .barbers-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .barber-img-wrap {
        height: 340px;
    }

    .barber-info-card {
        padding: 32px 20px;
    }

    .hours-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .barbers-header {
        margin-bottom: 40px;
    }

    /* STRIP */
    .strip {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 36px 20px !important;
        gap: 24px !important;
    }

    .strip-text {
        font-size: 34px !important;
    }

    .strip-cta {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 24px !important;
    }

    /* FOOTER */
    footer {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
        padding: 44px 20px !important;
        text-align: center !important;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════ */
@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content {
        padding: 90px 16px 44px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-image img {
        object-position: 62% center;
        opacity: 0.4;
    }

    .hero-cta {
        padding: 14px 40px;
        font-size: 10px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .gallery-item {
        height: 200px !important;
    }

        .gallery-item:first-child {
            grid-column: span 1 !important;
        }

    .about-stats {
        flex-direction: column;
        gap: 14px;
    }

    .contact-block p {
        font-size: 12px;
    }

    .barber-img-wrap {
        height: 280px;
    }

    .barber-info-card {
        padding: 24px 16px;
    }

    .hours-title {
        font-size: 26px;
    }
}
