:root {
    /* Wollmarshöhe Farbwelt */
    --color-bg: #ffffff;
    --color-bg-alt: #e8efe0;          /* helles Salbeigrün, wie auf der Startseite */
    --color-bg-dark: #0e2944;          /* tiefes Marineblau, wie das Hero auf der Startseite */
    --color-text: #0e2944;             /* Marineblau für Texte */
    --color-text-soft: #3d5470;
    --color-text-muted: #8a96a4;
    --color-accent: #b3c4a0;            /* gedämpftes Salbeigrün */
    --color-accent-soft: #b9e5f8;       /* helles Eisblau für Headlines auf dunklem Grund */
    --color-accent-on-dark: #b9e5f8;    /* helles Eisblau auch für kleinere Texte auf Dunkelblau */
    --color-line: #d8e0d0;
    --color-white: #ffffff;

    --font-sans: 'neue-haas-unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'neue-haas-unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --max-width: 1200px;
    --content-width: 760px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans), sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}
h1, h2, h3, h4 {
    overflow-wrap: break-word;
    -webkit-hyphens: manual;
    hyphens: manual;
}

/* ---------- Inhalts-Wrapper: 2% Abstand ringsum, sodass nichts bis an den Browserrand stößt ---------- */
.frame {
    margin: 2vw;
    position: relative;
}
/* Alle Sektionen im Frame bekommen 2vw Abstand untereinander */
.frame > * + * {
    margin-top: 2vw;
}

/* ---------- Navigation ---------- */
.nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}
.nav-logo {
    height: 44px;
    width: auto;
    display: block;
}
.nav-link {
    color: var(--color-text-soft);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--color-text); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(
            45deg,
            rgba(2, 32, 91, 1) 0%,
            rgb(60, 189, 245) 5%,
            rgb(11, 78, 119) 30%,
            rgba(0, 6, 18, 1) 70%
    );
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    color: #fff;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    text-align: center;
    position: relative;
}
@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero { animation: none; }
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-on-dark);
    opacity: 0.7;
    margin-bottom: 5px;        /* eng zur H1 – Eyebrow gehört zur Headline */
    font-weight: 500;
}
.hero h1 {
    font-family: var(--font-display), sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-accent-soft);
    margin-bottom: 0;
    letter-spacing: -0.025em;
}
.hero-lead {
    font-family: var(--font-display), sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 24px auto 0;        /* mittlere Lücke zur H1 – neuer Sinnabschnitt */
}
.hero-meta {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-on-dark);
    opacity: 0.7;
    margin-top: 120px;          /* große Lücke – Meta ist eine andere Information */
}

/* ---------- Section base ---------- */
.section {
    padding: 100px 40px;
}
.section-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}
.section-wide {
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-intro {
    max-width: var(--content-width);
    margin-bottom: 60px;
}
.section-alt {
    background: var(--color-bg-alt);
}
.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-bg);
}

/* ---------- Großtypo-Sektion: Der Wollmarshöhe-Helden-Statement-Block ---------- */
.statement {
    background: var(--color-bg-alt);
    padding: 140px 40px;
    position: relative;
}
.statement-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.statement-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 18px;        /* eng zur Großtypo */
    font-weight: 500;
    opacity: 0.6;
}
.statement h2,
.statement .big-typo {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-accent);   /* gedämpftes Salbei – wie das "100%"-Zitat auf der Startseite */
    margin: 0;
}
.statement-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.6;
    margin-top: 48px;
}

/* Variante: Statement auf dunkelblauem Hintergrund */
.statement.on-dark {
    background: var(--color-bg-dark);
}
.statement.on-dark .statement-eyebrow,
.statement.on-dark .statement-meta {
    color: var(--color-accent-on-dark);
    opacity: 0.7;
}
.statement.on-dark h2,
.statement.on-dark .big-typo {
    color: var(--color-accent-soft);
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.5;
    margin-bottom: 18px;        /* eng zur H2 */
    font-weight: 500;
}
.section-dark .section-eyebrow {
    color: var(--color-accent-on-dark);
    opacity: 0.7;
}
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 48px;        /* mittlerer Sprung zur Folge */
    letter-spacing: -0.02em;
}
.section h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section p {
    margin-bottom: 22px;
    color: var(--color-text-soft);
}
.section-dark p {
    color: rgba(255,255,255,0.78);
}
.section .lead {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 56px;        /* großer Sprung – Lead beendet die Vorrede, jetzt kommt Body */
    letter-spacing: -0.01em;
}
.section-dark .lead { color: var(--color-bg); }

/* ---------- Quote / Pull ---------- */
.pullquote {
    border-left: 2px solid var(--color-accent);
    padding: 8px 0 8px 32px;
    margin: 48px 0;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
.section-dark .pullquote {
    color: #fff;
    border-left-color: var(--color-accent-on-dark);
}

/* ---------- Diamond Section ---------- */
.diamond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}
.section-image {
    width: 100%;
    height: auto;
    display: block;
}
.section-image-full {
    margin-top: 60px;
    width: 100%;
    height: auto;
    display: block;
}
.image-caption {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 14px;
    letter-spacing: 0.3px;
}

/* ---------- Vollbreites Bild im cinematic Format (relativ zum Frame) ---------- */
.image-bleed {
    width: 100%;
    display: block;
    height: 60vh;
    max-height: 580px;
    min-height: 360px;
    overflow: hidden;
}
.image-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cinematic-Variante als Standalone-Sektion (zwischen Text-Sektionen) */
.image-strip {
    width: 100%;
    height: 60vh;
    max-height: 580px;
    min-height: 360px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Sections, die direkt einer .image-strip folgen, brauchen einen
   garantierten Mindestabstand zur Bildunterkante. Klassen-basiert,
   damit unabhängig von +-Selektoren oder Geschwister-Reihenfolge. */
.section-after-image {
    padding-top: 100px;
}

/* ---------- Bild-Hero Sektion mit Hintergrundbild und Text drüber ---------- */
.image-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}
.image-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,41,68,0.6) 0%, rgba(14,41,68,0.45) 50%, rgba(14,41,68,0.75) 100%);
    z-index: 1;
}
.image-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
}
.image-hero .section-eyebrow {
    color: var(--color-accent-on-dark);
    margin-bottom: 32px;
}
.image-hero h2 {
    color: var(--color-accent-soft);
    font-size: clamp(30px, 4.5vw, 60px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.diamond-visual {
    width: 100%;
}
.diamond-visual .section-image {
    border-radius: 2px;
}

/* ---------- Comparison ---------- */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 80px;
    position: relative;
}
.compare-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(14,41,68,0.12);
}
.compare-cell {
    padding: 0 60px 0 0;
}
.compare-cell + .compare-cell {
    padding: 0 0 0 60px;
}
.compare-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.5;
    margin-bottom: 24px;
    font-weight: 500;
}
.compare-cell h4 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    margin-bottom: 36px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
}
.compare-cell ul {
    list-style: none;
    padding: 0;
}
.compare-cell li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(14,41,68,0.1);
    color: var(--color-text);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
}
.compare-cell li:first-child { padding-top: 0; }
.compare-cell li:last-child { border-bottom: none; padding-bottom: 0; }

/* Linke Spalte: Akzent in Marineblau (positiv) */
.compare-cell:first-child h4 {
    color: var(--color-bg-dark);
}
/* Rechte Spalte: gedämpft (negativ) */
.compare-cell:last-child h4,
.compare-cell:last-child li {
    opacity: 0.55;
}

/* ---------- Skills Grid ---------- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.skill-card {
    padding: 36px 32px;
    background: var(--color-bg-alt);
    border: none;
    transition: all 0.3s ease;
}
.skill-card:hover {
    transform: translateY(-2px);
}
.skill-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 2px;
}
.skill-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}
.skill-card p {
    font-size: 15px;
    color: var(--color-text-soft);
    margin: 0;
    line-height: 1.6;
}

/* ---------- Conclusion ---------- */
.conclusion-statement {
    text-align: center;
    padding: 60px 0;
}
.conclusion-statement .big {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-bg);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* ---------- Footer / About ---------- */
.about-author {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    padding: 80px 0;
    border-top: 1px solid var(--color-line);
}
.author-meta h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 500;
}
.author-role {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}
.author-text p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer {
    background: #f5faff;
    color: var(--color-text);
    padding: 100px 40px 60px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(14,41,68,0.12);
}
.footer-brand {
    font-family: var(--font-display), sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.footer-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 24px;
}
.footer p { color: var(--color-text); opacity: 0.75; font-size: 15px; }
.footer h5 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
    color: var(--color-text);
    opacity: 0.75;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
}
.footer a:hover { opacity: 1; }
.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text);
    opacity: 0.5;
}
.footer-bottom a { color: var(--color-text); font-size: 13px; }

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
    .frame { margin: 1.5vw; }
    .frame > * + * { margin-top: 1.5vw; }
    .nav-inner { padding: 16px 24px; }
    .nav-link { font-size: 13px; }
    .hero { padding: 80px 24px 70px; min-height: 70vh; }
    .section { padding: 70px 24px; }
    .section-after-image { padding-top: 70px; }
    .statement { padding: 90px 24px; }
    .diamond-grid,
    .compare-grid,
    .skills-grid,
    .about-author,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .compare-grid { gap: 60px; }
    .compare-grid::before { display: none; }
    .compare-cell,
    .compare-cell + .compare-cell { padding: 0; }
    .pullquote { padding-left: 20px; margin: 32px 0; }
    .footer { padding: 60px 24px 30px; }
}

@media (max-width: 480px) {
    .frame { margin: 1vw; }
    .frame > * + * { margin-top: 1vw; }
    body { font-size: 16px; }
    .nav-logo { height: 32px; }
    .section-after-image { padding-top: 60px; }
}

/* ---------- Subtle reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}