/* =====================================================
   HOCHENTHANNER GmbH – Hauptstylesheet
   Fonts: Oswald (Display) + Source Sans 3 (Body)
   Mobile First · BEM-Konventionen · CSS-Variablen
   ===================================================== */

/* ─── Variablen ─── */
:root {
    --navy:        #0A1628;
    --navy-mid:    #0E1B2E;
    --navy-light:  #142338;
    --steel:       #1A3050;
    --steel-light: #2A4A6A;
    --red:         #C8262A;
    --red-dark:    #A01F22;
    --red-light:   #E03035;
    --white:       #F5F5F2;
    --grey-light:  #E8E8E4;
    --grey-mid:    #8A9BAB;
    --grey-muted:  #4A5A6A;

    --font-display: 'Oswald', sans-serif;
    --font-body:    'Source Sans 3', sans-serif;

    --radius:    6px;
    --radius-lg: 12px;
    --shadow:    0 4px 24px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.28);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ─── Typografie-Skala ─── */
.section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-label--light { color: var(--red-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title--light { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn--primary:hover {
    background: var(--red-light);
    border-color: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 38, 42, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ─── Scroll-Reveal-Animationen ─── */
.reveal,
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    padding: 0.65rem 0;
}

/* Nur Flex-Layout – Breite/Abstände kommen von .container */
.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.nav__logo-sub {
    font-size: 0.65rem;
    color: var(--grey-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
}

.nav__links.open { display: flex; }

.nav__link {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-light);
    letter-spacing: 0.06em;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
}

.nav__link:hover { color: var(--white); }

.nav__cta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--red);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.04em;
    transition: background var(--transition);
}

.nav__cta:hover { background: var(--red-light); }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://www.hochenthanner.at/pix/gal_NEU/DSC_3785.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay: links dunkel (Text), rechts heller – Verlauf horizontal */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 16, 30, 0.93) 0%,
        rgba(8, 16, 30, 0.82) 30%,
        rgba(8, 16, 30, 0.55) 55%,
        rgba(8, 16, 30, 0.20) 80%,
        rgba(8, 16, 30, 0.05) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.25rem 6rem;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-mid);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero__title-line {
    display: block;
}

.hero__title-accent {
    color: var(--red);
    position: relative;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-mid);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.72rem;
    color: var(--grey-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero__stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}


/* ─── About ─── */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    gap: 3rem;
}

.about__visual {
    position: relative;
}

.about__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Video-Vorschau mit Link zu YouTube */
.about__video-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.about__video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.about__video-link:hover img {
    transform: scale(1.03);
}

.about__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background var(--transition);
}

.about__video-link:hover .about__play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.about__play-circle {
    width: 72px;
    height: 72px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200,38,42,0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about__video-link:hover .about__play-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(200,38,42,0.65);
}

.about__play-circle svg {
    width: 28px;
    height: 28px;
    color: #fff;
    margin-left: 4px;
}

.about__badge-float {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.about__badge-float svg {
    color: #FFD700;
}

.about__lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy-mid);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.about__body {
    color: var(--grey-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about__pillars {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about__pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--navy);
}

.about__pillar-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--red);
    margin-top: 1px;
}

.about__pillar-icon svg {
    width: 100%;
    height: 100%;
}

/* ─── Services ─── */
.services {
    padding: 5rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 59px,
        rgba(255,255,255,0.03) 59px,
        rgba(255,255,255,0.03) 60px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 59px,
        rgba(255,255,255,0.03) 59px,
        rgba(255,255,255,0.03) 60px
    );
}

.services .container { position: relative; z-index: 1; }

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.svc-card {
    position: relative;
    background: var(--navy-light);
    border: 1px solid var(--steel);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.svc-card:hover {
    border-color: var(--steel-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-card__num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.svc-card__icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin-bottom: 1.25rem;
}

.svc-card__icon svg {
    width: 100%;
    height: 100%;
}

.svc-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.svc-card__text {
    font-size: 0.92rem;
    color: var(--grey-mid);
    line-height: 1.7;
}

/* ─── Reviews ─── */
.reviews {
    padding: 5rem 0;
    background: var(--grey-light);
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reviews__stars-big {
    font-size: 1.4rem;
    color: #F5A623;
    letter-spacing: 0.1em;
}

.reviews__meta {
    display: flex;
    flex-direction: column;
}

.reviews__meta strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.reviews__meta span {
    font-size: 0.8rem;
    color: var(--grey-muted);
    letter-spacing: 0.06em;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.review-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.review-card__quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--red);
    opacity: 0.15;
    line-height: 0.6;
    pointer-events: none;
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--navy-mid);
    padding-top: 1.5rem;
    flex-grow: 1;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.review-card__info {
    flex-grow: 1;
}

.review-card__info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.review-card__stars {
    font-size: 0.8rem;
    color: #F5A623;
    letter-spacing: 0.05em;
    margin-top: 1px;
}

.review-card__google {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ─── Kontakt ─── */
.contact {
    padding: 5rem 0;
    background: var(--navy-mid);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.contact__grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.contact__left,
.contact__panel,
.contact__map {
    min-width: 0;
}

/* Info-Panel */
.contact__panel {
    background: var(--navy-light);
    border: 1px solid var(--steel);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

/* Panel-Label (kompakter Abschnittstitel) */
.contact__panel-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-muted);
    margin-bottom: 1rem;
}

/* Öffnungszeiten */
.hours__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 1rem;
}

.hours__day {
    font-size: 0.9rem;
    color: var(--grey-mid);
}

.hours__time {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    text-align: right;
    line-height: 1.45;
}

.hours__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.4rem 0.85rem;
    background: rgba(200, 38, 42, 0.1);
    border: 1px solid rgba(200, 38, 42, 0.25);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--red-light);
}

.hours__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--red-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Kontaktdetails */
.contact__items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    flex-shrink: 0;
}

.contact__item-icon svg {
    width: 16px;
    height: 16px;
}

.contact__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-muted);
    margin-bottom: 0.15rem;
}

.contact__item p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.45;
}

.contact__item a {
    color: var(--white);
    transition: color var(--transition);
}

.contact__item a:hover { color: var(--red-light); }

.contact__fax {
    font-size: 0.8rem !important;
    color: var(--grey-muted) !important;
    margin-top: 1px;
}

/* Karte */
.contact__map {
    display: flex;
    align-items: stretch;
}

.contact__map-link {
    position: relative;
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--steel);
}

.contact__map-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    min-height: 260px;
}

.contact__map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.contact__map-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--red-light);
}

.contact__map-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact__map-link:hover img {
    transform: scale(1.03);
    filter: brightness(0.75);
}

.contact__map-link:hover .contact__map-overlay {
    opacity: 1;
}

/* ─── Footer ─── */
.footer {
    background: var(--navy);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid var(--steel);
}

.footer__grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer__tagline {
    font-size: 0.78rem;
    color: var(--grey-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--grey-muted);
    line-height: 1.7;
}

.footer__nav,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__nav strong,
.footer__contact strong {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 0.25rem;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer__nav a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
    color: var(--grey-muted);
}

.footer__bottom a {
    color: var(--red-light);
}

.footer__bottom a:hover { color: var(--white); }

/* ─── Video ─── */
.video-section {
    padding: 5rem 0;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 59px,
        rgba(255,255,255,0.02) 59px,
        rgba(255,255,255,0.02) 60px
    );
}

.video-section .container { position: relative; z-index: 1; }

.video__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--steel);
}

.video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── Tablet ab 640px ─── */
@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* ─── Desktop ab 900px ─── */
@media (min-width: 900px) {
    .nav__toggle { display: none; }

    .nav__links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        backdrop-filter: none;
        padding: 0;
        align-items: center;
        justify-content: flex-end;
        gap: 2rem;
        flex: 1; /* füllt den Platz zwischen Logo und rechtem Rand */
    }

    .nav__link {
        border-bottom: none;
        padding: 0.45rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .nav__cta {
        margin-top: 0;
        font-size: 0.875rem;
        padding: 0.55rem 1.25rem;
        white-space: nowrap;
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5rem;
    }

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

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

    .contact__grid {
        grid-template-columns: 1fr 1.6fr 1fr;
        align-items: stretch;
        gap: 2rem;
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    /* max-width entfernt – Text bleibt linksbündig im Container */
    .hero__content {
        padding: 10rem 2rem 8rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about,
    .video-section,
    .services,
    .reviews,
    .contact {
        padding: 7rem 0;
    }
}

/* ─── Große Desktops ─── */
@media (min-width: 1200px) {
    .hero__content {
        max-width: 1200px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ─── Fokus-Stile für Barrierefreiheit ─── */
:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ─── Reduzierte Bewegung ─── */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-up,
    .hero__badge-dot,
    .hero__scroll-line {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}
