/* --- Hero --- */
.hero {
    min-height: calc(100vh - var(--header-height) - 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--navy);
    background-image:
        var(--pinstripe),
        radial-gradient(ellipse 70% 55% at 50% 45%, rgba(251, 243, 226, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 90% 60% at 50% 110%, rgba(179, 32, 42, 0.35) 0%, transparent 70%);
}

/* Barber poles framing the hero */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 22px;
    background: var(--barber-stripe);
    background-size: 67.88px 67.88px;
    animation: hero-pole 4s linear infinite;
    opacity: 0.9;
    box-shadow: inset -6px 0 10px rgba(0, 0, 0, 0.35), inset 6px 0 10px rgba(255, 255, 255, 0.15);
}

.hero::before { left: 0; }
.hero::after  { right: 0; }

@keyframes hero-pole {
    from { background-position: 0 0; }
    to   { background-position: 0 67.88px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 3.5rem 3rem;
    border: 2px solid rgba(217, 174, 85, 0.55);
    outline: 1px solid rgba(217, 174, 85, 0.3);
    outline-offset: 8px;
}

.hero-eyebrow {
    color: var(--gold-light);
    font-family: var(--font-sign);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '\2605';
    color: var(--red-light);
    margin: 0 0.9rem;
    letter-spacing: 0;
}

.hero-title {
    font-size: clamp(3.75rem, 11vw, 7.5rem);
    color: var(--cream);
    line-height: 0.95;
    margin-bottom: 1.25rem;
    text-shadow: 4px 4px 0 var(--red), 8px 8px 0 rgba(0, 0, 0, 0.25);
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--gold-light);
    line-height: 1.3;
    margin-bottom: 2.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline-gold {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.hero .btn-outline-gold:hover {
    background: var(--gold-light);
    color: var(--navy-deep);
}

@media (max-width: 600px) {
    .hero::before,
    .hero::after {
        width: 10px;
    }

    .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        margin: 0 0.5rem;
    }
}

/* --- Intro section --- */
.section-intro {
    padding: 6rem 0;
    background: var(--paper);
}

.section-intro p {
    max-width: 600px;
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.intro-cta {
    margin-top: 2.5rem;
}

/* --- What is Barbershop section --- */
.section-what-is {
    padding: 6rem 0;
    background: var(--paper-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.what-is-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.what-is-parts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    counter-reset: voice;
}

.voice-card {
    padding: 1.35rem 1.75rem 1.35rem 4.5rem;
    position: relative;
    counter-increment: voice;
}

.voice-card::before {
    content: counter(voice);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: var(--red);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-label {
    color: var(--navy);
    font-family: var(--font-sign);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.voice-card p:last-child {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- We Perform At section --- */
.section-perform {
    padding: 6rem 0;
    background: var(--paper);
}

.perform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.perform-card {
    padding: 2.25rem 2.25rem 2rem;
    border-top: 4px solid var(--red);
    transition: transform 0.2s, border-color 0.2s;
}

.perform-card:nth-child(even) {
    border-top-color: var(--navy);
}

.perform-card:hover {
    transform: translateY(-3px);
}

.perform-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.perform-card p:last-child {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* --- CTA banner --- */
.section-cta {
    padding: 7rem 2rem;
    background-color: var(--red);
    background-image:
        var(--pinstripe),
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-top: 8px solid transparent;
    border-image: var(--barber-stripe) 8;
    text-align: center;
}

.cta-inner {
    max-width: 620px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
    color: var(--cream);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.cta-inner p {
    color: rgba(251, 243, 226, 0.85);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.section-cta .section-subheading {
    color: var(--cream);
}

.section-cta .section-subheading::after {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

.section-cta .btn-filled {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--red);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.section-cta .btn-filled:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream);
}

@media (max-width: 900px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .perform-grid {
        grid-template-columns: 1fr;
    }
}
