/* ============================================
   Nadin Link Supervision – Website Stylesheet
   ============================================ */

/* ---------- Schriften (lokal eingebunden, kein Google) ---------- */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/manrope-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/manrope-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/manrope-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/manrope-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/manrope-700.woff2') format('woff2');
}

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

:root {
    /* Farben aus dem Flyer */
    --navy: #243d52;
    --navy-dark: #1a2d3e;
    --mint: #c5d6d3;
    --mint-light: #dde9e7;
    --petrol: #68918d;
    --petrol-light: #8aa8a2;
    --cream: #faf9f5;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-soft: #5a6470;
    --text-muted: #8a8f99;
    --border: #e8e8e3;

    /* Abstände */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Container */
    --max-width: 1200px;

    /* Schrift */
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* ---------- Navigation ---------- */
.nav {
    background-color: var(--cream);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background-color: rgba(250, 249, 245, 0.9);
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav__brand {
    display: flex;
    align-items: center;
    color: var(--navy);
    text-decoration: none;
}

.nav__brand img {
    height: 44px;
    width: auto;
    display: block;
}

.nav__brand:hover {
    opacity: 1;
}

.nav__brand:hover img {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.nav__menu {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    align-items: center;
}

.nav__link {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.nav__link:hover {
    opacity: 1;
    border-bottom-color: var(--petrol);
}

.nav__link--active {
    border-bottom-color: var(--navy);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--navy);
}

@media (max-width: 760px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--cream);
        padding: var(--space-sm) var(--space-md);
        border-bottom: 1px solid var(--border);
        gap: 0.5rem;
    }

    .nav__menu--open {
        display: flex;
    }

    .nav__link {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav__link:last-child {
        border-bottom: none;
    }
}

/* ---------- Hero (Startseite) ---------- */
.hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
}

.hero__image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.hero__image-wrap::before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    right: 60px;
    bottom: 60px;
    background-color: var(--mint);
    z-index: 1;
}

.hero__content {
    max-width: 460px;
}

.hero__logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: var(--space-md);
    animation: fadeUp 0.8s ease-out backwards;
    animation-delay: 0.05s;
}

.hero__title {
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero__title span {
    display: block;
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

@media (max-width: 860px) {
    .hero {
        padding: var(--space-lg) 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero__image-wrap {
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

.btn--primary:hover {
    background-color: var(--navy-dark);
    opacity: 1;
    transform: translateY(-1px);
}

.btn--outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background-color: var(--navy);
    color: var(--white);
    opacity: 1;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--space-xl) 0;
}

.section--mint {
    background-color: var(--mint-light);
}

.section--navy {
    background-color: var(--navy);
    color: var(--white);
}

.section--navy h2,
.section--navy h3 {
    color: var(--white);
}

.section__header {
    max-width: 720px;
    margin-bottom: var(--space-lg);
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: var(--space-sm);
}

.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

.section__intro {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ---------- Page Header (innere Seiten) ---------- */
.page-header {
    padding: var(--space-xl) 0 var(--space-xl);
    background-color: var(--mint-light);
    border-bottom: 1px solid var(--border);
}

.page-header__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.page-header__intro {
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 640px;
    line-height: 1.6;
}

/* ---------- Leistungen ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service {
    background-color: var(--white);
    padding: var(--space-md);
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(36, 61, 82, 0.08);
}

.service__title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.service__sub {
    font-size: 0.9rem;
    color: var(--petrol);
    font-weight: 500;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.service__text {
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.97rem;
    margin-bottom: 0.85rem;
}

.service__text:last-child {
    margin-bottom: 0;
}

/* ---------- Leistungen ausführlich (leistungen.html) ---------- */
.services-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 720px;
    margin: 0 auto;
}

.service-detail {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: var(--space-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(36, 61, 82, 0.06);
}

.service-detail__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.service-detail__sub {
    font-size: 0.95rem;
    color: var(--petrol);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.service-detail__text {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.service-detail__text:last-child {
    margin-bottom: 0;
}

/* ---------- Topics List (Themen & Anlässe) ---------- */
.topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    max-width: 1000px;
}

.topic {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 1.1rem 1.25rem;
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 61, 82, 0.06);
}

.topic__marker {
    width: 6px;
    height: 6px;
    background-color: var(--petrol);
    flex-shrink: 0;
    position: relative;
    top: 0.4rem;
}

/* ---------- Bild-Banner (zwischen Sektionen) ---------- */
.image-banner {
    padding: var(--space-md) 0 var(--space-xl);
}

.image-banner__figure {
    margin: 0;
    position: relative;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.image-banner__figure::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--mint);
    border-radius: 50%;
    z-index: 0;
}

.image-banner__figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 40px rgba(36, 61, 82, 0.08);
}

/* Modifikator: Bild passt sich an die Textkasten-Breite (760px) an */
.image-banner--compact .image-banner__figure {
    max-width: 760px;
}

.image-banner--compact .image-banner__figure::before {
    display: none;
}

@media (max-width: 600px) {
    .image-banner__figure::before {
        width: 60px;
        height: 60px;
        left: -10px;
    }
}

/* ---------- Kontakt ---------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact--single {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
}

.contact__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(36, 61, 82, 0.08);
}

@media (max-width: 760px) {
    .contact {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.contact__info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: var(--space-sm);
}

.contact__list {
    list-style: none;
}

.contact__list li {
    display: flex;
    gap: var(--space-sm);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

.contact__list li:last-child {
    border-bottom: none;
}

.contact__label {
    min-width: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact__value {
    font-size: 1.05rem;
    color: var(--text);
}

.contact__value a {
    color: var(--navy);
    border-bottom: 1px solid var(--petrol);
    padding-bottom: 1px;
}

/* ---------- CTA Block ---------- */
.cta {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background-color: var(--navy);
    color: var(--white);
    border-radius: 4px;
}

.cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.cta p {
    color: var(--mint);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--primary {
    background-color: var(--cream);
    color: var(--navy);
}

.cta .btn--primary:hover {
    background-color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--navy-dark);
    color: var(--mint);
    padding: var(--space-lg) 0 var(--space-md);
    font-size: 0.95rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.footer__brand {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer__address {
    color: var(--mint);
    line-height: 1.7;
    font-style: normal;
}

.footer__address a {
    color: var(--mint);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: var(--mint);
}

.footer__legal {
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer__legal a {
    color: var(--text-muted);
    margin-left: var(--space-sm);
}

.footer__legal a:first-child {
    margin-left: 0;
}

/* ---------- Impressum / Datenschutz ---------- */
.legal {
    max-width: 760px;
}

.legal h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin: var(--space-md) 0 var(--space-sm);
    font-weight: 600;
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: var(--space-md) 0 0.5rem;
    font-weight: 600;
}

.legal p {
    margin-bottom: var(--space-sm);
    color: var(--text-soft);
    line-height: 1.7;
}

.legal .placeholder {
    background-color: #fff8e6;
    border-left: 3px solid #d4a943;
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--text);
    font-size: 0.95rem;
    border-radius: 2px;
}

.legal .placeholder strong {
    color: #8c6b1f;
}

/* ---------- Mitgliedschaft (Kontaktseite) ---------- */
.membership {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    align-items: center;
}

.membership__text {
    max-width: 640px;
}

.membership__logo img {
    width: 200px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.membership__logo a:hover img {
    transform: translateY(-2px);
    opacity: 1;
}

@media (max-width: 760px) {
    .membership {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .membership__logo img {
        width: 160px;
    }
}

/* ---------- DGSv Logo im Footer ---------- */
.footer__cert {
    margin-top: 1.25rem;
}

.footer__cert img {
    width: 90px;
    height: auto;
    display: block;
    border-radius: 2px;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.footer__cert a:hover img {
    opacity: 1;
}

/* ---------- Über mich Seite ---------- */
.page-header__quote {
    margin: var(--space-md) 0 0;
    border: none;
    padding: 0;
}

.page-header__quote p {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--navy);
    font-style: italic;
    margin-bottom: var(--space-sm);
    max-width: 820px;
}

.page-header__quote cite {
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about-text {
    max-width: 720px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about__quote blockquote {
    border-left: 2px solid var(--petrol);
    padding-left: var(--space-md);
    margin: 0;
}

.about__quote blockquote p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

.about__quote cite {
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.about__text p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.about__motto {
    font-style: italic;
    color: var(--navy);
    font-size: 1.15rem !important;
    font-weight: 600;
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--border);
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: var(--space-lg) auto 0;
    background: rgba(213, 219, 221, 0.3);
    border-radius: 3px;
}

.about-image {
    width: 100%;
    background: var(--bg-light);
    padding: var(--space-lg) var(--space-lg);
    margin: 0;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(36, 61, 82, 0.08);
}

/* Modifikator: Bild auf die Breite des Textes begrenzen */
.about-image--text-width img {
    max-width: 720px;
}

@media (max-width: 860px) {
    .about {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .about__quote blockquote p {
        font-size: 1.2rem;
    }
}

/* ---------- Prinzipien / Arbeitsweise ---------- */
.principles {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.principle {
    display: flex;
    gap: 1.25rem;
    align-items: baseline;
    padding: 1.25rem var(--space-md);
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.principle:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(36, 61, 82, 0.06);
}

.principle__marker {
    width: 10px;
    height: 10px;
    background-color: var(--petrol);
    flex-shrink: 0;
    position: relative;
    top: 0.4rem;
}

.principle strong {
    color: var(--navy);
    font-weight: 600;
}

/* ---------- Qualifikation ---------- */
.qualification {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

@media (max-width: 760px) {
    .qualification {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.qualification__title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: var(--space-md);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.qualification__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualification__list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
    line-height: 1.5;
}

.qualification__list li:last-child {
    border-bottom: none;
}

.qualification__year {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 500;
}

.qualification__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-weight: 400;
    margin-top: -0.5rem;
}

.qualification__group-header {
    margin-top: var(--space-md);
    grid-template-columns: 1fr;
    border-bottom: none;
    padding-bottom: 0.25rem;
}

.qualification__group-header .qualification__year {
    color: var(--petrol);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.qualification__list em {
    font-style: italic;
    color: var(--text-soft);
}

@media (max-width: 500px) {
    .qualification__list li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* ---------- Markenclaim (zwischen Hero und Leistungen) ---------- */
.claim {
    background-color: var(--navy);
    padding: var(--space-lg) 0;
}

.claim__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
    align-items: center;
}

.claim__word {
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    position: relative;
    padding: 0 var(--space-sm);
}

.claim__word:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: var(--mint);
    opacity: 0.35;
}

@media (max-width: 760px) {
    .claim__inner {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    .claim__word:not(:last-child)::after {
        display: none;
    }
}

/* ---------- Teaser (Startseite, Über-mich-Vorschau) ---------- */
.teaser {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.teaser__quote blockquote {
    border-left: 2px solid var(--petrol);
    padding-left: var(--space-md);
    margin: 0;
}

.teaser__quote blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.teaser__quote cite {
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.teaser__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(36, 61, 82, 0.08);
}

@media (max-width: 760px) {
    .teaser {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .teaser__quote blockquote p {
        font-size: 1.1rem;
    }
}

/* ---------- Kontaktformular ---------- */
.form {
    background-color: var(--white);
    padding: var(--space-md);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
}

.form__label .required {
    color: var(--petrol);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background-color: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--navy);
    background-color: var(--white);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form__checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.5;
    cursor: pointer;
}

.form__checkbox input {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--navy);
    cursor: pointer;
}

/* Honeypot – für Menschen unsichtbar, für Bots Falle */
.form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form__notice {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form__notice--success {
    background-color: #e8f0e3;
    border-left: 3px solid var(--petrol);
    color: #3a4a2c;
}

.form__notice--error {
    background-color: #fbeaea;
    border-left: 3px solid #b03a3a;
    color: #6e1f1f;
}

/* ---------- Utilities ---------- */
.text-center {
    text-align: center;
}

.mt-md {
    margin-top: var(--space-md);
}

/* ---------- Animationen ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title,
.hero__subtitle,
.hero .btn,
.hero__image-wrap {
    animation: fadeUp 0.8s ease-out backwards;
}

.hero__title { animation-delay: 0.1s; }
.hero__subtitle { animation-delay: 0.25s; }
.hero .btn { animation-delay: 0.4s; }
.hero__image-wrap { animation-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
