:root{
    --bg:#f5f2ed;
    --paper:#ffffff;
    --dark:#111111;
    --dark2:#1b1b1b;
    --muted:#696969;
    --line:#ded8cf;
    --red:#b4121d;
    --red2:#d7192a;
    --cream:#f5f2ed;
    --shadow:0 28px 80px rgba(17,17,17,.12);
}

*{
    box-sizing:border-box;
}

body.home-page{
    margin:0;
    background:var(--bg);
    color:var(--dark);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.home-shell{
    width:100%;
    max-width:1220px;
    margin:0 auto;
    padding:0 22px;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(245,242,237,.90);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(17,17,17,.08);
}

.header-inner{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    color:var(--dark);
    text-decoration:none;
    font-weight:950;
    letter-spacing:.14em;
    font-size:.94rem;
}

.brand span{
    color:var(--red2);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    color:var(--dark);
    text-decoration:none;
    font-weight:850;
    font-size:.92rem;
}

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

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

.btn-main{
    min-height:46px;
    border-radius:0;
    padding:12px 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:950;
    letter-spacing:.02em;
    border:1px solid transparent;
    transition:.22s ease;
}

.btn-red{
    background:var(--red2);
    color:#fff;
    border-color:var(--red2);
}

.btn-red:hover{
    background:var(--dark);
    border-color:var(--dark);
    color:#fff;
}

.btn-dark{
    background:var(--dark);
    color:#fff;
    border-color:var(--dark);
}

.btn-dark:hover{
    background:var(--red2);
    border-color:var(--red2);
    color:#fff;
}

.btn-line{
    background:transparent;
    color:var(--dark);
    border-color:var(--dark);
}

.btn-line:hover{
    background:var(--dark);
    color:#fff;
}

.hero{
    position:relative;
    min-height:calc(100vh - 78px);
    display:grid;
    grid-template-columns:1.05fr .95fr;
    border-bottom:1px solid rgba(17,17,17,.10);
}

.hero-copy{
    padding:76px 5vw 76px max(22px,calc((100vw - 1220px) / 2 + 22px));
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-kicker{
    color:var(--red2);
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:.78rem;
    font-weight:950;
    margin-bottom:20px;
}

.hero-title{
    margin:0;
    color:var(--dark);
    font-size:clamp(3.2rem,7vw,7.4rem);
    line-height:.82;
    letter-spacing:-.085em;
    font-weight:950;
    text-transform:uppercase;
}

.hero-title span{
    display:block;
}

.hero-title em{
    font-style:normal;
    color:var(--red2);
}

.hero-text{
    margin:28px 0 0;
    color:var(--muted);
    max-width:590px;
    font-size:1.08rem;
    line-height:1.75;
}

.hero-actions{
    margin-top:34px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-media{
    position:relative;
    min-height:560px;
    background:var(--dark);
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease, transform 5s ease;
    transform:scale(1.04);
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(.18) contrast(1.05);
}

.hero-slide-fallback{
    width:100%;
    height:100%;
    background:
        radial-gradient(circle at 20% 20%,rgba(215,25,42,.32),transparent 32%),
        linear-gradient(135deg,#141414,#050505);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:8rem;
    font-weight:950;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(17,17,17,.15),rgba(17,17,17,.55));
}

.hero-media-card{
    position:absolute;
    left:34px;
    right:34px;
    bottom:34px;
    background:rgba(17,17,17,.78);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:26px;
    display:grid;
    grid-template-columns:1fr auto;
    gap:18px;
    align-items:center;
    backdrop-filter:blur(12px);
}

.hero-media-card h2{
    margin:0;
    font-size:1.35rem;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:-.03em;
}

.hero-media-card p{
    margin:8px 0 0;
    color:#cfcfcf;
}

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

.slider-dot{
    width:9px;
    height:9px;
    border-radius:999px;
    background:rgba(255,255,255,.35);
    border:0;
    padding:0;
}

.slider-dot.active{
    width:28px;
    background:var(--red2);
}

.quick-info{
    background:var(--dark);
    color:#fff;
}

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

.quick-info-item{
    padding:30px 26px;
    border-right:1px solid rgba(255,255,255,.10);
}

.quick-info-item:last-child{
    border-right:0;
}

.quick-info-item span{
    display:block;
    color:var(--red2);
    font-size:.76rem;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:950;
    margin-bottom:8px;
}

.quick-info-item strong{
    font-size:1.12rem;
    font-weight:950;
}

.section{
    padding:92px 0;
}

.section-head{
    display:grid;
    grid-template-columns:1fr auto;
    gap:24px;
    align-items:end;
    margin-bottom:38px;
}

.section-kicker{
    color:var(--red2);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:.76rem;
    font-weight:950;
    margin-bottom:12px;
}

.section-title{
    margin:0;
    font-size:clamp(2.4rem,5vw,5.5rem);
    line-height:.86;
    letter-spacing:-.075em;
    font-weight:950;
    text-transform:uppercase;
}

.section-text{
    color:var(--muted);
    max-width:560px;
    line-height:1.7;
    margin:16px 0 0;
}

.feature-split{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:24px;
    align-items:stretch;
}

.feature-image{
    background:var(--dark);
    min-height:560px;
    overflow:hidden;
    position:relative;
}

.feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(.15) contrast(1.04);
}

.feature-image-fallback{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at center,rgba(215,25,42,.25),transparent 36%),
        linear-gradient(135deg,#171717,#050505);
    color:#fff;
    font-size:6rem;
    font-weight:950;
}

.services-list{
    background:#fff;
    border:1px solid var(--line);
}

.service-row{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:22px;
    align-items:center;
    padding:28px;
    border-bottom:1px solid var(--line);
}

.service-row:last-child{
    border-bottom:0;
}

.service-row:hover{
    background:#faf8f4;
}

.service-name{
    margin:0 0 8px;
    color:var(--dark);
    font-size:1.3rem;
    font-weight:950;
    letter-spacing:-.03em;
}

.service-desc{
    margin:0;
    color:var(--muted);
    line-height:1.6;
}

.service-meta{
    white-space:nowrap;
    font-weight:950;
    color:var(--dark);
}

.service-duration{
    color:var(--muted);
    font-weight:850;
    white-space:nowrap;
}

.about-band{
    background:var(--dark);
    color:#fff;
    padding:96px 0;
    overflow:hidden;
}

.about-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:52px;
    align-items:center;
}

.about-title{
    margin:0;
    font-size:clamp(2.8rem,6vw,6rem);
    line-height:.84;
    letter-spacing:-.08em;
    font-weight:950;
    text-transform:uppercase;
}

.about-title em{
    font-style:normal;
    color:var(--red2);
}

.about-text{
    color:#c9c9c9;
    font-size:1.05rem;
    line-height:1.85;
    margin:0;
}

.about-quote{
    margin-top:28px;
    border-left:4px solid var(--red2);
    padding-left:22px;
    color:#fff;
    font-size:1.2rem;
    font-weight:850;
    line-height:1.55;
}

.barbers-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.barber-card{
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}

.barber-photo-wrap{
    height:360px;
    background:var(--dark);
    overflow:hidden;
}

.barber-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(.12);
    transition:.5s ease;
}

.barber-card:hover .barber-photo{
    transform:scale(1.04);
}

.barber-initial{
    width:100%;
    height:100%;
    background:
        radial-gradient(circle at center,rgba(215,25,42,.18),transparent 34%),
        linear-gradient(135deg,#1b1b1b,#050505);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:6rem;
    font-weight:950;
}

.barber-content{
    padding:26px;
}

.barber-name{
    margin:0 0 10px;
    font-size:1.35rem;
    font-weight:950;
    letter-spacing:-.03em;
}

.barber-bio{
    color:var(--muted);
    line-height:1.65;
    margin:0 0 22px;
}

.location-section{
    padding:0 0 92px;
}

.location-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
}

.location-dark{
    background:var(--dark);
    color:#fff;
    padding:46px;
}

.location-dark h2{
    margin:0 0 20px;
    font-size:clamp(2rem,4vw,4.4rem);
    line-height:.88;
    letter-spacing:-.07em;
    font-weight:950;
    text-transform:uppercase;
}

.location-dark p{
    color:#cfcfcf;
    line-height:1.75;
    margin:0;
}

.hours-box{
    padding:46px;
}

.hours-title{
    margin:0 0 20px;
    font-weight:950;
    font-size:1.4rem;
}

.hour-line{
    display:flex;
    justify-content:space-between;
    gap:18px;
    border-bottom:1px solid var(--line);
    padding:14px 0;
    color:var(--muted);
}

.hour-line strong{
    color:var(--dark);
}

.cta{
    background:
        radial-gradient(circle at 85% 20%,rgba(215,25,42,.22),transparent 34%),
        var(--dark);
    color:#fff;
    padding:70px 0;
}

.cta-grid{
    display:grid;
    grid-template-columns:1fr auto;
    gap:30px;
    align-items:center;
}

.cta h2{
    margin:0;
    font-size:clamp(2.2rem,5vw,5rem);
    line-height:.88;
    letter-spacing:-.075em;
    font-weight:950;
    text-transform:uppercase;
}

.cta p{
    color:#cfcfcf;
    margin:16px 0 0;
}

.footer{
    background:#070707;
    color:#bdbdbd;
    padding:34px 0;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer strong{
    color:#fff;
}

@media(max-width:1040px){
    .hero{
        grid-template-columns:1fr;
    }

    .hero-media{
        min-height:560px;
    }

    .quick-info-grid{
        grid-template-columns:1fr;
    }

    .quick-info-item{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.10);
    }

    .quick-info-item:last-child{
        border-bottom:0;
    }

    .feature-split,
    .about-grid,
    .location-card,
    .cta-grid{
        grid-template-columns:1fr;
    }

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

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

    .header-actions .btn-line{
        display:none;
    }

    .hero-copy{
        padding:54px 22px;
    }

    .hero-media{
        min-height:430px;
    }

    .hero-media-card{
        left:18px;
        right:18px;
        bottom:18px;
        grid-template-columns:1fr;
    }

    .section{
        padding:68px 0;
    }

    .section-head{
        grid-template-columns:1fr;
    }

    .service-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:24px;
    }

    .barbers-layout{
        grid-template-columns:1fr;
    }

    .barber-photo-wrap{
        height:330px;
    }

    .location-dark,
    .hours-box{
        padding:30px;
    }
}
