:root{
    --bg: #121212;
    --bg-soft: #1c1c1c;
    --surface: #181818;
    --surface-alt: #222222;
    --text: #f3efe8;
    --muted: #c8b8a8;
    --accent: #b85c38;
    --accent-strong: #d97a4d;
    --accent-soft: #f0c2a9;
    --border: rgba(217, 122, 77, 0.22);
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(184, 92, 56, 0.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(217, 122, 77, 0.09), transparent 24%),
        linear-gradient(180deg, #101010 0%, #171717 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container{
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand,
h1,
h2,
h3{
    font-family: "Cinzel", serif;
}

.brand{
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--accent-soft);
}

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

.nav-links a{
    padding: 10px 14px;
    border-radius: 999px;
    color: #efe6da;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover{
    color: var(--accent-soft);
    background: rgba(184, 92, 56, 0.14);
    transform: translateY(-1px);
}

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span{
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-strong);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero{
    padding: 88px 0 72px;
}

.hero-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.hero-copy,
.hero-card,
.about-card,
.highlight-box,
.service-card,
.contact-info,
.contact-form{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-copy{
    padding: 42px;
    border-radius: 28px;
}

.eyebrow{
    display: inline-block;
    margin: 0 0 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(184, 92, 56, 0.14);
    color: var(--accent-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1{
    margin: 0;
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 0.95;
}

.tagline{
    margin: 16px 0 14px;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--accent-soft);
    font-weight: 700;
}

.hero-text{
    max-width: 56ch;
    color: #e1d3c6;
}

.primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-width: 160px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff7f1;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.primary-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(184, 92, 56, 0.3);
    filter: brightness(1.04);
}

.hero-card{
    min-height: 100%;
    border-radius: 28px;
    padding: 18px;
}

.hero-panel{
    display: grid;
    align-content: end;
    min-height: 100%;
    padding: 36px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.75)),
        linear-gradient(135deg, rgba(184, 92, 56, 0.26), rgba(255, 255, 255, 0.04));
}

.panel-label{
    margin: 0 0 10px;
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-panel h2{
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
}

.hero-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hero-stats div{
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats span{
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.hero-stats strong{
    font-size: 1.05rem;
}

.section{
    padding: 24px 0 72px;
}

.section-heading{
    margin-bottom: 24px;
}

.section-heading h2,
.about-card h2,
.contact-info h2{
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

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

.service-card{
    padding: 28px;
    border-radius: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.service-image{
    width: 100%;
    height: 220px;
    margin-bottom: 22px;
    border-radius: 18px;
    border: 1px dashed rgba(217, 122, 77, 0.34);
    background:
        linear-gradient(180deg, rgba(184, 92, 56, 0.12), rgba(255, 255, 255, 0.02)),
        #1b1b1b;
    display: grid;
  
    place-items: center;
    overflow: hidden;
}


.service-image span{
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--accent-soft);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-image-haircut,
.service-image-beard,
.service-image-full{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover{
    transform: translateY(-4px);
    border-color: rgba(217, 122, 77, 0.4);
    background: rgba(184, 92, 56, 0.1);
}

.service-card h3{
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.service-card p,
.about-card p,
.contact-info p{
    color: #e1d3c6;
}

.schedule-list{
    display: grid;
    gap: 16px;
}

.schedule-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.schedule-item:hover{
    transform: translateY(-3px);
    border-color: rgba(217, 122, 77, 0.4);
    background: rgba(184, 92, 56, 0.08);
}

.schedule-item span{
    color: #e1d3c6;
    font-weight: 600;
}

.schedule-item strong{
    color: var(--accent-soft);
    font-size: 1rem;
}

.price{
    display: inline-block;
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-soft);
}

.about-grid,
.contact-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-card,
.contact-info{
    padding: 34px;
    border-radius: 28px;
}

.about-highlight{
    display: grid;
}

.highlight-box{
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 36px;
    border-radius: 28px;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(184, 92, 56, 0.18), rgba(255, 255, 255, 0.02)),
        var(--surface-alt);
}

.highlight-box span{
    color: var(--accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.84rem;
    font-weight: 700;
}

.highlight-box strong{
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
}

.contact-list{
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.contact-form{
    display: grid;
    gap: 16px;
    padding: 34px;
    border-radius: 28px;
}

.contact-form label{
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #f2e8dc;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #b99f8b;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: rgba(217, 122, 77, 0.65);
    box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea{
    min-height: 150px;
    resize: vertical;
}

.site-footer{
    padding: 0 0 36px;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.social-links a{
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-soft);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover{
    transform: translateY(-3px);
    background: rgba(184, 92, 56, 0.14);
    border-color: rgba(217, 122, 77, 0.3);
}

.site-footer p{
    margin: 0;
    color: #ccb5a4;
}

@media (max-width: 900px){
    .hero-grid,
    .about-grid,
    .contact-grid,
    .services-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px){
    .menu-toggle{
        display: flex;
    }

    .nav-links{
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 20px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
    }

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

    .nav-links a{
        padding: 12px 14px;
    }

    .hero{
        padding-top: 56px;
    }

    .hero-copy,
    .hero-card,
    .about-card,
    .contact-info,
    .contact-form{
        padding: 24px;
    }

    .hero-panel{
        padding: 24px;
    }

    .service-image{
        height: 240px;
    }

    .hero-stats{
        grid-template-columns: 1fr;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px){
    .container{
        width: min(100% - 24px, 1120px);
    }

    .schedule-item{
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn{
        width: 100%;
    }

    .service-image{
        height: 200px;
    }
}
