/* HoodCuts Barbershop — Website-Styles */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Farben am Logo: metallisches Champagner-Gold, Tiefschwarz, Barber-Pole */
    --np-page: #101010;
    --np-page-2: #1a1a1a;
    --np-black: #000000;
    --np-gold: #c5b391;
    --np-gold-mid: #e8dcc4;
    --np-gold-deep: #8a795d;
    --np-gold-hover: #d8ccb0;
    --np-barber-red: #b22222;
    --np-barber-blue: #0047ab;
    --np-cta-text: #0a0a0a;
    --np-white: #f7f7f5;
    --np-muted: rgba(247, 247, 245, 0.62);
    --np-sheet: 1140px;
    --np-body: "DM Sans", system-ui, sans-serif;
    --np-heading: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
    --np-mono: "IBM Plex Mono", ui-monospace, monospace;
    --np-ease-anim: cubic-bezier(0.22, 1, 0.36, 1);
    --np-radius-pill: 4px;
    --np-radius-card: 6px;
    --np-shadow-cta: 0 4px 0 var(--np-black), 0 10px 28px rgba(0, 0, 0, 0.5);
    --np-shadow-cta-hover: 0 7px 0 var(--np-black), 0 16px 36px rgba(0, 0, 0, 0.55);
    --np-gold-surface: linear-gradient(165deg, var(--np-gold-mid) 0%, var(--np-gold) 42%, var(--np-gold-deep) 100%);
    --np-gold-surface-hover: linear-gradient(165deg, #f0e8d8 0%, var(--np-gold-hover) 45%, var(--np-gold) 100%);
    --np-glow-gold: rgba(232, 220, 196, 0.35);
    --np-border-gold: rgba(197, 179, 145, 0.5);
    --np-watermark-opacity: 0.055;
    --np-watermark-size: clamp(240px, 48vmin, 540px);
    --np-bg-icon-opacity: 0.1;
    --np-bg-icon-size: clamp(48px, 7.25vmin, 92px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.5rem;
    scroll-padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-x: clip;
}

@media (min-width: 769px) {
    html {
        scroll-padding-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body.np-loader-active {
    overflow: hidden;
}

body.hoodcuts-site {
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: var(--np-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--np-white);
    background-color: var(--np-page);
    background-image: radial-gradient(ellipse 92% 58% at 50% -12%, rgba(255, 255, 255, 0.045), transparent 55%);
    -webkit-font-smoothing: antialiased;
    position: relative;
    isolation: isolate;
}

@media (max-width: 768px) {
    body.hoodcuts-site {
        padding-bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
    }
}

body.hoodcuts-site::before {
    content: "";
    position: fixed;
    left: 50%;
    top: 46%;
    z-index: 1;
    width: var(--np-watermark-size);
    height: var(--np-watermark-size);
    max-width: min(92vw, 640px);
    max-height: min(70vh, 640px);
    transform: translate(-50%, -50%);
    background: url("../assets/hoodcuts_logo.png") no-repeat center center;
    background-size: contain;
    opacity: var(--np-watermark-opacity);
    pointer-events: none;
}

body.hoodcuts-site > main,
body.hoodcuts-site > footer {
    position: relative;
    z-index: 2;
}

body.hoodcuts-site > .np-bg-icons {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.np-bg-icon {
    position: absolute;
    width: var(--np-bg-icon-size);
    height: var(--np-bg-icon-size);
    color: var(--np-gold-mid);
    opacity: var(--np-bg-icon-opacity);
    transform: rotate(var(--np-rot, 0deg));
}

.np-bg-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-bg-icon:nth-child(1) {
    top: 11%;
    left: 4%;
    --np-rot: -17deg;
}

.np-bg-icon:nth-child(2) {
    top: 18%;
    right: 6%;
    --np-rot: 23deg;
}

.np-bg-icon:nth-child(3) {
    top: 46%;
    left: 2%;
    --np-rot: -9deg;
    width: calc(var(--np-bg-icon-size) * 0.92);
    height: calc(var(--np-bg-icon-size) * 0.92);
}

.np-bg-icon:nth-child(4) {
    top: 52%;
    right: 5%;
    --np-rot: 14deg;
}

.np-bg-icon:nth-child(5) {
    bottom: 26%;
    left: 10%;
    --np-rot: -21deg;
}

.np-bg-icon:nth-child(6) {
    bottom: 16%;
    right: 11%;
    --np-rot: 18deg;
}

.np-bg-icon:nth-child(7) {
    top: 32%;
    left: 44%;
    --np-rot: -12deg;
    width: calc(var(--np-bg-icon-size) * 0.85);
    height: calc(var(--np-bg-icon-size) * 0.85);
}

.np-bg-icon:nth-child(8) {
    bottom: 38%;
    left: 36%;
    --np-rot: 11deg;
}

@media (max-width: 720px) {
    .np-bg-icon:nth-child(3),
    .np-bg-icon:nth-child(7),
    .np-bg-icon:nth-child(8) {
        display: none;
    }

    :root {
        --np-bg-icon-opacity: 0.08;
    }
}

@media (prefers-reduced-motion: reduce) {
    .np-bg-icon {
        opacity: calc(var(--np-bg-icon-opacity) * 0.85);
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.np-sheet {
    max-width: var(--np-sheet);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 769px) {
    .np-sheet {
        padding-right: max(1.5rem, 3.85rem);
    }
}

/* —— Intro-Loader —— */
.np-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-block: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-bottom, 0px));
    padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
    background: radial-gradient(ellipse 80% 60% at 50% 42%, rgba(197, 179, 145, 0.08), transparent 55%), var(--np-page);
    transition: opacity 0.58s var(--np-ease-anim), visibility 0.58s;
}

.np-loader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.np-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(360px, 100%);
    max-width: 100%;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
}

.np-loader-bar-stage {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 clamp(18px, 5vw, 24px);
    box-sizing: border-box;
}

.np-loader-logo {
    display: block;
    width: min(192px, 54vw);
    height: auto;
    margin: 0 0 1.65rem;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}

.np-loader-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px 8px;
    border-radius: 999px;
    overflow: visible;
    flex: 0 1 auto;
    background: linear-gradient(165deg, #242220 0%, #0c0c0c 55%, #1a1816 100%);
    border: 1px solid rgba(197, 179, 145, 0.42);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.7),
        0 6px 22px rgba(0, 0, 0, 0.48),
        0 0 28px rgba(197, 179, 145, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.np-loader-progress {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    align-self: center;
    width: 0%;
    min-width: 0;
    height: 12px;
    min-height: 12px;
    transition: width 0.42s var(--np-ease-anim);
}

.np-loader-fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 999px 0 0 999px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
    background-color: #121110;
    background-image: linear-gradient(
            112deg,
            transparent 0%,
            rgba(138, 121, 93, 0.12) 38%,
            rgba(232, 220, 196, 0.38) 49.5%,
            rgba(197, 179, 145, 0.28) 50.5%,
            rgba(138, 121, 93, 0.1) 62%,
            transparent 100%
        ),
        linear-gradient(178deg, #2c2825 0%, #121110 38%, #1a1816 100%);
    background-size: 185% 100%, 100% 100%;
    background-position: 92% 0, 0 0;
    background-repeat: no-repeat, no-repeat;
    box-shadow:
        inset 0 1px 0 rgba(232, 220, 196, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.45);
    animation: npLoaderBarSheen 2.25s ease-in-out infinite, npLoaderCutShear 0.78s ease-in-out infinite;
    will-change: clip-path, background-position;
}

.np-loader-fill::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(22px, 40%);
    background: linear-gradient(
        100deg,
        transparent 12%,
        rgba(197, 179, 145, 0.06) 44%,
        rgba(232, 220, 196, 0.35) 50%,
        rgba(197, 179, 145, 0.08) 56%,
        transparent 88%
    );
    pointer-events: none;
    mix-blend-mode: overlay;
    animation: npLoaderBladeGlint 1.45s ease-in-out infinite;
}

.np-loader-shears {
    position: absolute;
    z-index: 6;
    left: 100%;
    right: auto;
    top: 50%;
    width: 38px;
    height: 24px;
    margin: 0;
    padding: 0;
    transform: translate(-8px, -50%);
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
    transition: opacity 0.35s var(--np-ease-anim);
}

.np-loader-shears-svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-4deg);
    transform-origin: 22% 50%;
}

.np-loader-shears-blade {
    transform-origin: 0 0;
}

.np-loader-shears-blade--a {
    animation: npShearsBladeA 0.52s cubic-bezier(0.42, 0, 0.28, 1) infinite;
}

.np-loader-shears-blade--b {
    animation: npShearsBladeB 0.52s cubic-bezier(0.42, 0, 0.28, 1) infinite;
}

.np-loader-gloss {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 8px;
    right: 8px;
    height: 5px;
    border-radius: 999px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 38%,
        transparent 72%
    );
    mix-blend-mode: soft-light;
    opacity: 0.85;
}

.np-loader-progress.np-loader-fill--full .np-loader-fill {
    border-radius: 999px;
    clip-path: none;
    animation: npLoaderBarSheen 2.25s ease-in-out infinite;
    will-change: auto;
}

.np-loader-progress.np-loader-fill--full .np-loader-fill::after {
    opacity: 0;
    animation: none;
}

.np-loader-progress.np-loader-fill--full .np-loader-shears {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .np-loader-fill {
        animation: none;
        clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
        will-change: auto;
        background-image: linear-gradient(
                118deg,
                rgba(197, 179, 145, 0.07) 0%,
                transparent 52%
            ),
            linear-gradient(178deg, #2c2825 0%, #121110 38%, #1a1816 100%);
        background-size: 100% 100%, 100% 100%;
        background-position: 0 0, 0 0;
    }

    .np-loader-progress.np-loader-fill--full .np-loader-fill {
        animation: none;
    }

    .np-loader-fill::after {
        animation: none;
        opacity: 0.35;
    }

    .np-loader-gloss {
        opacity: 0.45;
    }

    .np-loader-shears-blade--a,
    .np-loader-shears-blade--b {
        animation: none;
    }

    .np-loader-shears-blade--a {
        transform: rotate(-11deg);
    }

    .np-loader-shears-blade--b {
        transform: rotate(11deg);
    }
}

@keyframes npShearsBladeA {
    0%,
    100% {
        transform: rotate(-15deg);
    }

    42% {
        transform: rotate(-5.5deg);
    }
}

@keyframes npShearsBladeB {
    0%,
    100% {
        transform: rotate(15deg);
    }

    42% {
        transform: rotate(5.5deg);
    }
}

@keyframes npLoaderBarSheen {
    0% {
        background-position: 88% 0, 0 0;
    }

    100% {
        background-position: -88% 0, 0 0;
    }
}

@keyframes npLoaderCutShear {
    0%,
    100% {
        clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    }
}

@keyframes npLoaderBladeGlint {
    0%,
    58%,
    100% {
        opacity: 0.2;
        transform: translateX(2px);
    }

    28% {
        opacity: 1;
        transform: translateX(-3px);
    }
}

/* —— Sektions-Schiene —— */
.np-section-rail {
    position: fixed;
    z-index: 44;
    top: 50%;
    right: 0.35rem;
    width: max-content;
    max-width: min(48vw, 14rem);
    transform: translateY(-50%);
    pointer-events: none;
}

.np-rail {
    pointer-events: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 1.55rem 1.15rem;
}

.np-rail-axis {
    position: absolute;
    top: 2.35rem;
    bottom: 2.35rem;
    right: calc(1.15rem + 8px - 1.5px);
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        rgba(232, 220, 196, 0.05) 0%,
        rgba(255, 255, 255, 0.18) 48%,
        rgba(232, 220, 196, 0.05) 100%
    );
    pointer-events: none;
}

.np-rail-stop {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.25s ease;
}

.np-rail-stop:hover,
.np-rail-stop:focus-visible {
    color: rgba(255, 255, 255, 0.95);
}

.np-rail-stop:focus-visible {
    outline: none;
}

.np-rail-stop:focus-visible .np-rail-dot {
    box-shadow: 0 0 0 4px rgba(232, 220, 196, 0.45);
}

.np-rail-cap {
    font-family: var(--np-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s var(--np-ease-anim), transform 0.3s var(--np-ease-anim), color 0.2s ease;
}

.np-rail-stop:hover .np-rail-cap,
.np-rail-stop:focus-visible .np-rail-cap,
.np-rail-stop.is-active .np-rail-cap {
    opacity: 1;
    transform: translateX(0);
    color: var(--np-gold-mid);
}

.np-rail-dot {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(232, 220, 196, 0.42);
    background: var(--np-page);
    box-sizing: border-box;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--np-ease-anim), box-shadow 0.25s ease;
}

.np-rail-stop:hover .np-rail-dot,
.np-rail-stop:focus-visible .np-rail-dot {
    border-color: var(--np-gold-mid);
    transform: scale(1.12);
}

.np-rail-stop.is-active .np-rail-dot {
    background: var(--np-gold-surface);
    border-color: var(--np-black);
    box-shadow: 0 0 0 4px rgba(232, 220, 196, 0.22);
    transform: scale(1.02);
}

.np-rail-stop--book .np-rail-dot {
    border-color: rgba(197, 179, 145, 0.65);
}

@media (hover: none) and (pointer: coarse) and (min-width: 769px) {
    .np-rail-cap {
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.55);
    }

    .np-rail-stop.is-active .np-rail-cap {
        color: var(--np-gold-mid);
    }
}

@media (max-width: 768px) {
    .np-section-rail {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        transform: none;
        box-sizing: border-box;
        padding: 0 max(0.6rem, env(safe-area-inset-left, 0px)) calc(0.55rem + env(safe-area-inset-bottom, 0px)) max(0.6rem, env(safe-area-inset-right, 0px));
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        pointer-events: none;
    }

    .np-rail {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        justify-items: stretch;
        align-items: stretch;
        width: 100%;
        max-width: min(19rem, 100%);
        margin: 0 auto;
        gap: 0;
        column-gap: 0.06rem;
        padding: 0.5rem 0.42rem 0.52rem;
        border-radius: 999px;
        pointer-events: auto;
        background: linear-gradient(180deg, rgba(22, 22, 22, 0.88) 0%, rgba(10, 10, 10, 0.94) 100%);
        border: 1px solid rgba(197, 179, 145, 0.24);
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(16px) saturate(1.12);
        -webkit-backdrop-filter: blur(16px) saturate(1.12);
    }

    .np-rail-axis {
        display: none;
    }

    .np-rail-stop {
        flex: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
        min-width: 0;
        min-height: 3.05rem;
        padding: 0.28rem 0.06rem;
        border-radius: 0.55rem;
        transition: background 0.22s ease;
        text-align: center;
    }

    .np-rail-stop.is-active {
        background: rgba(232, 220, 196, 0.08);
    }

    .np-rail-cap {
        opacity: 1;
        transform: none;
        font-size: 0.5625rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-align: center;
        line-height: 1.18;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        margin: 0;
        color: rgba(255, 255, 255, 0.58);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .np-rail-stop.is-active .np-rail-cap {
        color: var(--np-gold-mid);
    }

    .np-rail-dot {
        width: 12px;
        height: 12px;
        order: -1;
    }

    .np-rail-stop.is-active .np-rail-dot {
        transform: scale(1.08);
    }

    .np-rail-stop--book .np-rail-dot {
        border-color: rgba(197, 179, 145, 0.78);
        box-shadow: 0 0 0 1px rgba(197, 179, 145, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .np-rail-stop,
    .np-rail-cap,
    .np-rail-dot {
        transition: none !important;
    }
}

/* —— Buttons —— */
.np-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.85rem;
    font-family: var(--np-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--np-cta-text) !important;
    background: var(--np-gold-surface);
    border: 3px solid var(--np-black);
    cursor: pointer;
    border-radius: var(--np-radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), var(--np-shadow-cta);
    transition: transform 0.2s var(--np-ease-anim), box-shadow 0.2s var(--np-ease-anim), background 0.2s, filter 0.2s;
}

.np-btn-cta:hover {
    background: var(--np-gold-surface-hover);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--np-shadow-cta-hover);
    filter: brightness(1.02);
}

.np-btn-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 0 var(--np-black), 0 8px 20px rgba(0, 0, 0, 0.45);
}

.np-btn-hero {
    margin-top: 1.85rem;
    padding: 1.15rem 2.85rem;
    font-size: 1.35rem;
    letter-spacing: 0.14em;
}

.np-btn-cta--outline {
    background: transparent;
    border: 3px solid var(--np-white);
    color: var(--np-white) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.45), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.np-btn-cta--outline:hover {
    background: var(--np-white);
    color: var(--np-cta-text) !important;
    border-color: var(--np-white);
}

/* —— Hero (u-section-1) —— */
.np-hero {
    position: relative;
    --np-spot-x: 50%;
    --np-spot-y: 38%;
    overflow: hidden;
    background-image: linear-gradient(185deg, rgba(6, 8, 12, 0.88) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(10, 10, 10, 0.9) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)),
        url("https://assets.nicepagecdn.com/d2cc3eaa/6401142/images/male-hairdresser-shaking-hands-with-client-barber-hop7.jpg");
    background-size: cover;
    background-position: 50% 40%;
    text-align: center;
}

.np-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle 46vmin at var(--np-spot-x) var(--np-spot-y),
        rgba(232, 220, 196, 0.14) 0%,
        rgba(197, 179, 145, 0.05) 32%,
        transparent 62%
    );
    mix-blend-mode: screen;
    opacity: 0.92;
    transition: opacity 0.5s ease;
}

@media (min-width: 901px) {
    .np-hero {
        background-attachment: fixed;
    }
}

.np-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 741px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 3.5rem;
}

.np-hero-kicker {
    font-family: var(--np-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--np-cta-text);
    background: var(--np-gold-surface);
    margin: 0 0 1rem;
    padding: 0.55rem 1.15rem;
    border: 2px solid var(--np-gold-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 5px 5px 0 rgba(0, 0, 0, 0.45);
}

.np-hero-title {
    font-family: var(--np-heading);
    font-size: clamp(3.25rem, 11vw, 7.25rem);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.96;
    max-width: 22ch;
    margin: 0 auto;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.55), 0 8px 40px rgba(0, 0, 0, 0.65);
    letter-spacing: 0.03em;
}

.np-hero-line {
    display: inline-block;
}

.np-hero-line--gold {
    position: relative;
    color: var(--np-gold-mid);
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.5), 0 0 36px var(--np-glow-gold), 0 8px 32px rgba(0, 0, 0, 0.65);
}

.np-hero-line--gold::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: -12%;
    bottom: -18%;
    background: linear-gradient(
        102deg,
        transparent 36%,
        rgba(255, 255, 255, 0.22) 48.5%,
        rgba(255, 255, 255, 0.08) 52%,
        transparent 64%
    );
    pointer-events: none;
    mix-blend-mode: soft-light;
    animation: npHeroGoldShimmer 4.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .np-hero::after {
        opacity: 0.55;
        background: radial-gradient(
            circle 50vmin at 50% 38%,
            rgba(232, 220, 196, 0.08) 0%,
            transparent 65%
        );
    }

    .np-hero-line--gold::after {
        animation: none;
        opacity: 0;
    }
}

@keyframes npHeroGoldShimmer {
    0%,
    100% {
        transform: translateX(-22%) skewX(-10deg);
        opacity: 0.25;
    }

    48% {
        transform: translateX(24%) skewX(-10deg);
        opacity: 0.95;
    }
}

.np-hero-note {
    margin: 2.8rem auto 0;
    font-family: var(--np-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--np-muted);
}

.np-hero-note a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1199px) {
    .np-hero-inner {
        min-height: 528px;
    }
}

@media (max-width: 767px) {
    .np-hero-inner {
        min-height: 420px;
    }
}

/* —— Barbershop block (u-section-2) —— */
.np-barber {
    padding: 3.75rem 0 4rem;
}

.np-barber h2 {
    font-family: var(--np-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 auto 1.25rem;
}

.np-barber-lead {
    text-align: center;
    color: var(--np-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.np-barber-feature {
    display: block;
    width: 100%;
    max-width: 549px;
    height: auto;
    margin: 0 auto 2.5rem;
    object-fit: cover;
}

.np-pills {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 900px;
}

@media (min-width: 576px) {
    .np-pills {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .np-pills {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }
}

.np-pill {
    background: var(--np-gold-surface);
    color: var(--np-cta-text);
    text-align: center;
    padding: 1.85rem 1.25rem;
    border-radius: var(--np-radius-pill);
    border: 3px solid var(--np-black);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 8px 8px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.28s var(--np-ease-anim), box-shadow 0.28s;
}

.np-pill:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 rgba(0, 0, 0, 0.45);
}

.np-pill-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--np-cta-text);
}

.np-pill-icon svg {
    width: 56px;
    height: 56px;
}

.np-pill h3 {
    font-family: var(--np-heading);
    font-size: 1.35rem;
    font-weight: 400;
    margin: 1.85rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--np-cta-text);
}

.np-barber-credit {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--np-muted);
}

.np-barber-credit a {
    color: var(--np-gold-mid);
}

/* —— Katalog 8 Karten (u-section-3) —— */
.np-catalog {
    padding: 3.5rem 0 4.5rem;
}

.np-catalog h2 {
    font-family: var(--np-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 2.75rem;
}

.np-price-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .np-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .np-price-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.np-price-card {
    text-align: center;
    border-radius: var(--np-radius-card);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s var(--np-ease-anim), box-shadow 0.3s;
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.35);
}

.np-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 0 rgba(0, 0, 0, 0.4);
    border-color: var(--np-border-gold);
}

.np-price-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.96) saturate(1.05);
    transition: filter 0.35s ease, transform 0.45s var(--np-ease-anim);
}

.np-price-card:hover img {
    filter: brightness(1.03) saturate(1.1);
    transform: scale(1.04);
}

@media (min-width: 992px) {
    .np-price-card img {
        height: 309px;
    }
}

.np-price-card h3 {
    font-family: var(--np-heading);
    font-size: 1.35rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 2.9rem 0 0;
    padding: 0 0.75rem;
}

.np-price-card .np-price {
    font-family: var(--np-mono);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--np-gold-mid);
    margin: 1.15rem 0 1.35rem;
    padding: 0 0.75rem;
}

.np-catalog-credit {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--np-muted);
}

.np-catalog-credit a {
    color: var(--np-gold-mid);
    text-decoration: underline;
}

/* —— Benefits (u-section-4) —— */
.np-benefits {
    padding: 3.5rem 0 0;
}

.np-benefits h2 {
    font-family: var(--np-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 3.4rem;
}

.np-benefit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .np-benefit-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.np-benefit {
    min-height: 420px;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.85rem;
    position: relative;
}

.np-benefit--a {
    background-image: linear-gradient(185deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.72) 100%),
        url("https://assets.nicepagecdn.com/d2cc3eaa/6401142/images/cosmetic-male-beauty-products-wi.jpg");
}

.np-benefit--b {
    background-image: linear-gradient(185deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.72) 100%),
        url("https://assets.nicepagecdn.com/d2cc3eaa/6401142/images/tools-profession-hairdresser_23.jpg");
}

.np-benefit--c {
    background-image: linear-gradient(185deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.72) 100%),
        url("https://assets.nicepagecdn.com/d2cc3eaa/6401142/images/hipster-style-bearded-man_158595.jpg");
}

.np-benefit-line {
    width: min(276px, 70%);
    height: 4px;
    background: linear-gradient(90deg, var(--np-barber-red) 0%, var(--np-white) 36%, var(--np-barber-blue) 100%);
    margin: 0 0 1.25rem;
    box-shadow: 0 0 14px var(--np-glow-gold);
}

.np-benefit h3 {
    font-family: var(--np-heading);
    font-size: 1.65rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6), 0 6px 24px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.np-benefits-credit {
    text-align: center;
    font-style: italic;
    color: var(--np-muted);
    padding: 2rem 1.5rem 3rem;
    margin: 0;
}

.np-benefits-credit a {
    color: var(--np-gold-mid);
}

/* —— Kontakt —— */
.np-contact {
    padding: 3rem 0 4rem;
    background: var(--np-page);
}

.np-contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .np-contact-grid {
        grid-template-columns: 1fr 1fr 1.1fr;
    }
}

.np-contact h3 {
    font-family: var(--np-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.np-foot-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.np-contact-lead {
    text-align: center;
    color: var(--np-muted);
    font-size: 0.92rem;
    margin: 0 0 1.25rem;
}

.np-tagline-year {
    display: block;
    text-align: center;
    font-family: var(--np-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--np-gold-mid);
    margin-bottom: 1rem;
}

.np-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.np-hours td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--np-muted);
}

.np-hours td:first-child {
    font-weight: 700;
    color: var(--np-white);
    width: 48%;
}

.np-contact-mid {
    text-align: center;
}

.np-contact-mid p {
    color: var(--np-muted);
    line-height: 1.7;
}

.np-contact-mid a {
    color: var(--np-gold-mid);
    text-decoration: none;
}

.np-contact-mid a:hover {
    text-decoration: underline;
}

.np-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.np-social a {
    font-family: var(--np-mono);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--np-gold-mid);
}

.np-contact-form-wrap h3 {
    text-align: center;
}

.np-form {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 520px) {
    .np-form {
        grid-template-columns: 1fr 1fr;
    }

    .np-form .np-field-span,
    .np-form .np-legal,
    .np-form .np-form-submit {
        grid-column: 1 / -1;
    }

    .np-form .np-form-submit {
        justify-self: start;
    }
}

.np-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.np-field > span:first-child {
    font-family: var(--np-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--np-muted);
}

.np-form input,
.np-form textarea,
.np-form select {
    padding: 0.75rem 0.9rem;
    font-family: var(--np-body);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: var(--np-white);
    border-radius: 2px;
}

.np-form input:focus,
.np-form textarea:focus,
.np-form select:focus {
    outline: none;
    border-color: var(--np-gold-mid);
}

.np-legal {
    margin: 0;
    font-size: 0.75rem;
    color: var(--np-muted);
}

.np-legal a {
    color: var(--np-gold-mid);
}

.np-legal a:hover {
    color: var(--np-gold-hover);
}

.np-form-submit {
    padding: 0.95rem 2rem;
    font-family: var(--np-heading);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--np-gold-surface);
    color: var(--np-cta-text);
    border: 3px solid var(--np-black);
    cursor: pointer;
    border-radius: var(--np-radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 4px 0 var(--np-black);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.np-form-submit:hover {
    background: var(--np-gold-surface-hover);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 0 var(--np-black);
}

body.hoodcuts-site .req {
    color: var(--np-gold-mid);
}

.booking-hidden {
    display: none !important;
}

.visit-hint {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: var(--np-muted);
}

.np-route-row {
    margin: 1.25rem 0 0.65rem;
}

/* —— Scroll-Animationen: Zoom, Flip, Slide —— */

/* Hero: customAnimationIn mit Staffel (wie data-animation-duration / delay im Original) */
.np-hero-animate > .np-hero-kicker,
.np-hero-animate > .np-hero-title,
.np-hero-animate > .np-btn-hero,
.np-hero-animate > .np-hero-note {
    opacity: 0;
    transform: scale(0.3);
    animation: npHeroIn 1.5s var(--np-ease-anim) forwards;
}

.np-hero-animate > .np-hero-kicker {
    animation-delay: 0s;
}

.np-hero-animate > .np-hero-title {
    animation-delay: 0.15s;
}

.np-hero-animate > .np-btn-hero {
    animation-delay: 0.2s;
}

.np-hero-animate > .np-hero-note {
    animation-delay: 0.5s;
}

@keyframes npHeroIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .np-hero-animate > .np-hero-kicker,
    .np-hero-animate > .np-hero-title,
    .np-hero-animate > .np-btn-hero,
    .np-hero-animate > .np-hero-note {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Scroll-Animationen: data-np-a="…" */
[data-np-a] {
    opacity: 0;
    --np-adur: 1500ms;
    --np-adel: 0ms;
    transition:
        opacity var(--np-adur) var(--np-ease-anim),
        transform var(--np-adur) var(--np-ease-anim);
    transition-delay: var(--np-adel);
    will-change: opacity, transform;
}

[data-np-a].np-a--in {
    opacity: 1;
}

[data-np-a="zoom"] {
    transform: scale(0.3);
}

[data-np-a="zoom"].np-a--in {
    transform: scale(1);
}

[data-np-a="up"] {
    transform: translate3d(0, 50px, 0);
}

[data-np-a="up"].np-a--in {
    transform: translate3d(0, 0, 0);
}

[data-np-a="up-lg"] {
    transform: translate3d(0, 120px, 0);
}

[data-np-a="up-lg"].np-a--in {
    transform: translate3d(0, 0, 0);
}

[data-np-a="flip-x"] {
    transform: perspective(900px) rotateX(18deg) translate3d(0, 24px, 0);
    transform-origin: center top;
}

[data-np-a="flip-x"].np-a--in {
    transform: perspective(900px) rotateX(0) translate3d(0, 0, 0);
}

[data-np-a="pill"] {
    transform: translate3d(80px, 0, 0) rotate(8deg) scale(0.92);
}

[data-np-a="pill"].np-a--in {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

@media (max-width: 768px) {
    [data-np-a="pill"] {
        transform: translate3d(24px, 0, 0) rotate(8deg) scale(0.92);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-np-a] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .np-btn-cta:hover,
    .np-btn-cta:active {
        transform: none;
    }

    .np-pill:hover {
        transform: none;
    }

    .np-price-card:hover {
        transform: none;
    }

    .np-form-submit:hover {
        transform: none;
    }

    .np-price-card:hover img {
        transform: none;
    }
}

/* —— Footer —— */
.np-foot {
    background: var(--np-black);
    padding: 2rem 1.5rem 2.5rem;
    border-top: 4px solid var(--np-gold-deep);
    box-shadow: 0 -1px 0 var(--np-gold-mid);
}

.np-foot-line {
    max-width: var(--np-sheet);
    margin: 1.75rem auto 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.np-foot-copy {
    max-width: var(--np-sheet);
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--np-muted);
}

.np-foot-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.np-foot-legal a {
    font-family: var(--np-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--np-gold-mid);
    text-decoration: none;
}
