:root {
    --primary: #111111;
    --secondary: #d9a441;
    --accent: #ffffff;
    --cream: #f6efe4;
    --muted: #77706a;
    --dark-soft: #1b1b1b;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary);
    background: var(--cream);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(217, 164, 65, 0.22), transparent 36%),
        linear-gradient(135deg, #090909, var(--primary));
    color: var(--accent);
}

.section-light {
    background: #fff;
}

.section-cream {
    background: var(--cream);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(18px);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: -1px;
}

.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.brand small {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    padding: 11px 17px;
    border: 1px solid var(--secondary);
    border-radius: 999px;
    color: var(--secondary) !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(45deg, #fff 2px, transparent 2px),
        linear-gradient(-45deg, #fff 2px, transparent 2px);
    background-size: 46px 46px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(44px, 8vw, 86px);
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary);
    color: #111;
    box-shadow: 0 16px 34px rgba(217, 164, 65, 0.24);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats strong {
    display: block;
    color: var(--secondary);
    font-size: 22px;
}

.hero-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.hero-card {
    position: relative;
    min-height: 520px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
        #151515;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 28px;
}

.barber-pole {
    position: absolute;
    top: 34px;
    right: 34px;
    width: 76px;
    height: 320px;
    border: 8px solid #f8f8f8;
    border-radius: 999px;
    overflow: hidden;
    background: repeating-linear-gradient(
        -35deg,
        #b7192a 0 18px,
        #fff 18px 36px,
        #184b8f 36px 54px,
        #fff 54px 72px
    );
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.barber-pole span:first-child,
.barber-pole span:last-child {
    position: absolute;
    left: 50%;
    width: 54px;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--secondary);
}

.barber-pole span:first-child {
    top: -10px;
}

.barber-pole span:last-child {
    bottom: -10px;
}

.cut-card {
    position: absolute;
    left: 28px;
    bottom: 110px;
    width: min(310px, calc(100% - 56px));
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    color: #111;
}

.cut-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #111;
    color: var(--secondary);
    font-size: 30px;
}

.cut-card h2 {
    margin-bottom: 8px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.cut-card p {
    color: #6b6259;
    margin-bottom: 14px;
}

.cut-card strong {
    color: var(--secondary);
    font-size: 22px;
}

.appointment-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(217, 164, 65, 0.14);
    border: 1px solid rgba(217, 164, 65, 0.35);
}

.appointment-card small,
.appointment-card span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}

.appointment-card strong {
    display: block;
    color: var(--secondary);
    font-size: 24px;
}

.services,
.about,
.process,
.showcase,
.testimonials,
.faq,
.contact {
    padding: 86px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    padding: 28px;
    border-radius: 26px;
    background: #f8f4ee;
    border: 1px solid #eee2d4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.service-card span {
    color: var(--secondary);
    font-weight: 900;
}

.service-card h3 {
    margin: 18px 0 10px;
    font-size: 23px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.service-card strong {
    color: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.about-visual {
    min-height: 500px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background:
        radial-gradient(circle, rgba(217, 164, 65, 0.28), transparent 38%),
        #151515;
    overflow: hidden;
}

.mirror-card {
    width: min(310px, 82%);
    height: 430px;
    padding: 22px;
    border-radius: 999px 999px 42px 42px;
    background: linear-gradient(145deg, #2b2b2b, #090909);
    border: 8px solid var(--secondary);
    box-shadow: var(--shadow);
}

.mirror-top {
    height: 42px;
    width: 42px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--secondary);
}

.mirror-face {
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 999px 999px 32px 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
        #f8f8f8;
}

.mirror-face span {
    font-size: 64px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.08em;
}

.mirror-line {
    width: 70%;
    height: 8px;
    margin: 30px auto 0;
    border-radius: 999px;
    background: var(--secondary);
}

.about-copy p {
    color: #5f574f;
    margin: 22px 0;
    font-size: 17px;
}

.trust-list {
    display: grid;
    gap: 14px;
}

.trust-list div {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eadfce;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list span {
    color: var(--muted);
    font-size: 14px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    padding: 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
}

.process-step span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--secondary);
    color: #111;
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.68);
}

.look-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.look-card {
    padding: 18px;
    border-radius: 30px;
    background: #f8f4ee;
    border: 1px solid #eee2d4;
}

.look-art {
    min-height: 260px;
    border-radius: 24px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.fade-art::before {
    content: "";
    position: absolute;
    inset: 50px 70px 0;
    border-radius: 120px 120px 30px 30px;
    background:
        linear-gradient(to bottom, #2c2c2c 0 38%, #d9a441 38% 40%, #111 40% 100%);
}

.beard-art::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 42px;
    width: 150px;
    height: 190px;
    transform: translateX(-50%);
    border-radius: 70px 70px 90px 90px;
    background:
        radial-gradient(circle at 50% 34%, #f4d6b1 0 34px, transparent 35px),
        linear-gradient(to bottom, #f4d6b1 0 44%, #2a1710 44% 100%);
}

.classic-art::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 45px;
    width: 170px;
    height: 190px;
    transform: translateX(-50%);
    border-radius: 80px 80px 32px 32px;
    background:
        linear-gradient(145deg, #d9a441 0 16%, transparent 16%),
        linear-gradient(to bottom, #2d2d2d 0 36%, #f4d6b1 36% 100%);
}

.look-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.look-card p {
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #eadfce;
}

.testimonial-card p {
    color: #4d4741;
    margin-bottom: 22px;
    font-size: 17px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.faq-intro p {
    margin-top: 18px;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    background: #f8f4ee;
    border: 1px solid #eee2d4;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 20px;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
    color: #111;
}

.faq-item p {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.active p {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.contact-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
    margin: 20px 0;
}

.contact-details {
    display: grid;
    gap: 10px;
}

.contact-details a,
.contact-details span {
    color: var(--secondary);
    font-weight: 800;
}

.contact-form {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    color: #111;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 900;
}

.contact-form input,
.contact-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #e4d8c7;
    border-radius: 14px;
    padding: 0 14px;
    background: #f8f4ee;
    color: #111;
}

.form-button {
    width: 100%;
    margin-top: 4px;
}

.contact-form small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #07180d;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.site-footer {
    background: #080808;
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 0;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-wrap a {
    color: var(--secondary);
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 10px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 460px;
    }

    .service-grid,
    .process-grid,
    .look-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding: 64px 0 54px;
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .look-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-card {
        min-height: 430px;
        padding: 20px;
    }

    .barber-pole {
        width: 58px;
        height: 250px;
        top: 26px;
        right: 24px;
    }

    .cut-card {
        left: 20px;
        bottom: 104px;
        width: calc(100% - 40px);
    }

    .appointment-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .services,
    .about,
    .process,
    .showcase,
    .testimonials,
    .faq,
    .contact {
        padding: 64px 0;
    }
}