/* =========================================================================
   summerside GmbH — Stylesheet
   Design-Konzept: Sommerlich-hell. Off-White, Marineblau, Sand, Adria-Akzent.
   Typografie: Cormorant Garamond (Display, Serife) + Inter (Body)
   ========================================================================= */

/* =========================================================================
   1. CUSTOM PROPERTIES (Design Tokens)
   ========================================================================= */
:root {
    /* Hintergründe */
    --bg: #fbfaf6;            /* Off-White, ein Hauch warm */
    --bg-soft: #f4efe6;       /* Sandton, sekundär */
    --bg-deep: #ecf2f5;       /* Hellblau-grau, tertiär */
    --bg-card: #ffffff;

    /* Schrift- und Linienfarben */
    --ink: #14304a;           /* Marineblau, Haupttext */
    --ink-soft: #2e4a64;
    --ink-muted: #6b7e92;
    --ink-faint: #a3b1bf;

    /* Akzent */
    --accent: #2b7aa8;        /* Adria-Blau, leuchtend aber nicht grell */
    --accent-deep: #1d5d83;
    --accent-soft: #d4e7f1;
    --sand: #c9a877;          /* sekundärer Akzent, sandig-warm */
    --sand-soft: #ead9b8;

    /* Linien */
    --line: rgba(20, 48, 74, 0.13);
    --line-strong: rgba(20, 48, 74, 0.28);

    /* Layout */
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --content-max: 1240px;
    --header-h: 78px;

    /* Schriften */
    --f-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --f-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
}


/* =========================================================================
   2. RESET & BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--ink);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }

::selection { background: var(--accent); color: var(--bg); }
::-moz-selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; border: 2px solid var(--bg-soft); }


/* =========================================================================
   3. HEADER & NAVIGATION
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 250, 246, 0.0);
    transition: background 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}
.site-header.is-scrolled {
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 1.4rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: var(--header-h);
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: .55rem;
    font-family: var(--f-display);
    color: var(--ink);
}
.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1;
    transform: translateY(4px);
}
.brand__name {
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.brand__suffix {
    font-family: var(--f-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ink-muted);
    margin-left: .1rem;
    transform: translateY(-2px);
}

/* Nav */
.nav {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}
.nav a {
    font-size: .92rem;
    color: var(--ink-soft);
    position: relative;
    padding: .35rem 0;
    transition: color 200ms;
    letter-spacing: .005em;
}
.nav a:hover { color: var(--accent-deep); }
.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 280ms ease;
}
.nav a:hover::after { width: 100%; }

/* Hamburger */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    z-index: 110;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    margin: 5px auto;
    transition: all 280ms cubic-bezier(.4,.2,.2,1);
    border-radius: 1px;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =========================================================================
   4. BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .95rem 1.7rem;
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .01em;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: all 240ms cubic-bezier(.4,.2,.2,1);
    cursor: pointer;
    line-height: 1;
}
.btn--primary {
    background: var(--ink);
    color: var(--bg);
}
.btn--primary:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(20, 48, 74, 0.4);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn--ghost:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
}
.btn .arrow {
    width: 16px;
    height: 16px;
    transition: transform 240ms;
}
.btn:hover .arrow { transform: translateX(3px); }


/* =========================================================================
   5. LAYOUT & UTILITIES
   ========================================================================= */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section {
    padding: clamp(4rem, 9vw, 7rem) 0;
}
.section--alt {
    background: var(--bg-soft);
}
.section--deep {
    background: var(--bg-deep);
}

/* Eyebrow / labels */
.eyebrow {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.section-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.018em;
    max-width: 22ch;
}
.section-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.section-lede {
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    max-width: 56ch;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms cubic-bezier(.16,.84,.3,1), transform 700ms cubic-bezier(.16,.84,.3,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================================
   6. HERO
   ========================================================================= */
.hero {
    position: relative;
    padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(4rem, 8vw, 6rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 0%, var(--accent-soft) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, var(--bg-soft) 100%);
}
.hero__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}
.hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--ink-muted);
}
.hero__top strong { color: var(--ink); font-weight: 500; }

.hero__headline {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 7.5vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--ink);
    max-width: 18ch;
    font-weight: 400;
    margin-bottom: 0;
}
.hero__headline em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.hero__headline .underline {
    background-image: linear-gradient(transparent 70%, var(--sand-soft) 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 .12em;
}

.hero__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.hero__lead {
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 50ch;
}
.hero__lead strong { color: var(--ink); font-weight: 500; }

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero__figure {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    background: var(--bg-deep);
    box-shadow:
        0 1px 0 rgba(20, 48, 74, 0.06),
        0 30px 60px -32px rgba(20, 48, 74, 0.35);
    margin: 0;
}
.hero__figure img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: saturate(0.96) brightness(1.02);
    transition: transform 800ms cubic-bezier(.16,.84,.3,1);
}
.hero__figure:hover img { transform: scale(1.04); }
.hero__figure-caption {
    position: absolute;
    right: .85rem;
    bottom: .65rem;
    font-family: var(--f-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(251, 250, 246, 0.95);
    background: rgba(20, 48, 74, 0.4);
    padding: .3rem .6rem;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.hero__meta-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.hero__meta-label {
    font-family: var(--f-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-muted);
}
.hero__meta-value {
    font-family: var(--f-display);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.015em;
}
.hero__meta-value em {
    font-style: italic;
    color: var(--accent);
}

@media (min-width: 900px) {
    .hero__body {
        grid-template-columns: 1.35fr 1fr;
        gap: 4rem;
    }
}


/* =========================================================================
   7. PILLARS / Was wir tun
   ========================================================================= */
.pillars__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    align-items: end;
}
@media (min-width: 800px) {
    .pillars__head {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 700px) {
    .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
    .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
    background: var(--bg-card);
    padding: 2.2rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--line);
    transition: transform 320ms cubic-bezier(.16,.84,.3,1), box-shadow 320ms ease, border-color 320ms;
    position: relative;
    overflow: hidden;
}
.pillar:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 22px 40px -22px rgba(20, 48, 74, 0.22);
}
.pillar__icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    color: var(--accent-deep);
    transition: background 320ms;
}
.pillar:hover .pillar__icon {
    background: var(--accent);
    color: var(--bg);
}
.pillar__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
}
.pillar__num {
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-faint);
    margin-bottom: .6rem;
}
.pillar h3 {
    font-family: var(--f-display);
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: .9rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.pillar h3 em { font-style: italic; color: var(--accent); }
.pillar p {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================================
   8. APPROACH (numbered)
   ========================================================================= */
.approach {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.approach__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem 2.5rem;
    padding: 2.2rem 0;
    border-top: 1px solid var(--line);
}
.approach__step:last-child { border-bottom: 1px solid var(--line); }
.approach__num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    min-width: 4ch;
}
.approach__step h3 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    color: var(--ink);
    margin-bottom: .7rem;
    line-height: 1.2;
}
.approach__step p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 60ch;
}

@media (min-width: 800px) {
    .approach__step {
        grid-template-columns: 6rem 1fr;
        padding: 2.6rem 0;
    }
}


/* =========================================================================
   9. STATEMENT (large quote-like band)
   ========================================================================= */
.statement {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(4.5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}
.statement::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(43, 122, 168, 0.4) 0%, transparent 70%);
    pointer-events: none;
}
.statement__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}
.statement__text {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 2rem;
}
.statement__text em {
    font-style: italic;
    color: var(--sand);
}
.statement__cite {
    font-family: var(--f-mono);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(251, 250, 246, 0.6);
    margin: 0;
}


/* =========================================================================
   10. CTA SECTION
   ========================================================================= */
.cta {
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    background: var(--bg-soft);
}
.cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.cta h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.018em;
}
.cta h2 em { font-style: italic; color: var(--accent); }
.cta p {
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================================
   11. FOOTER
   ========================================================================= */
.footer {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(251, 250, 246, 0.12);
}
@media (min-width: 700px) {
    .footer-top { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.footer-brand .brand { color: var(--bg); }
.footer-brand .brand__suffix { color: rgba(251, 250, 246, 0.5); }
.footer-brand .brand__mark { background: var(--sand); color: var(--ink); }
.footer-brand p {
    margin-top: 1.2rem;
    color: rgba(251, 250, 246, 0.65);
    font-size: .92rem;
    line-height: 1.65;
    max-width: 36ch;
}
.footer-col h4 {
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--sand);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a {
    font-size: .94rem;
    color: rgba(251, 250, 246, 0.78);
    transition: color 200ms;
}
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(251, 250, 246, 0.5);
}
.footer-bottom .right { text-align: right; }


/* =========================================================================
   12. SUB-PAGE HEAD
   ========================================================================= */
.page-head {
    padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse at 90% 0%, var(--accent-soft) 0%, transparent 55%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.page-head__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.crumbs {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 .7rem; color: var(--ink-faint); }
.page-head h1 {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 1.2rem;
    max-width: 18ch;
}
.page-head h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-head__lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0;
}


/* =========================================================================
   13. ABOUT page specifics
   ========================================================================= */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 900px) {
    .about-intro { grid-template-columns: 1.4fr 1fr; gap: 5rem; }
}
.about-intro__prose p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 1.4rem;
    max-width: 60ch;
}
.about-intro__prose p:first-of-type::first-letter {
    float: left;
    font-family: var(--f-display);
    font-size: 4.5rem;
    line-height: .85;
    margin: .35rem .55rem -.2rem 0;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
.about-intro__prose p strong { color: var(--ink); font-weight: 500; }

.about-aside {
    background: var(--bg-card);
    padding: 2rem 1.8rem;
    border-radius: 6px;
    border: 1px solid var(--line);
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.about-aside h3 {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--accent);
    margin-bottom: 1.4rem;
    font-weight: 500;
}
.about-aside dl {
    margin: 0;
    display: grid;
    gap: .9rem;
}
.about-aside dt {
    font-family: var(--f-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--ink-muted);
    margin-bottom: .15rem;
}
.about-aside dd {
    margin: 0 0 .5rem;
    font-size: .98rem;
    line-height: 1.5;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-bottom: .9rem;
}
.about-aside dd:last-of-type { border-bottom: 0; }


/* Values grid */
.values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 700px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value {
    border-top: 2px solid var(--accent);
    padding-top: 1.5rem;
}
.value__num {
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-faint);
    margin-bottom: .8rem;
}
.value h3 {
    font-family: var(--f-display);
    font-size: 1.55rem;
    color: var(--ink);
    margin-bottom: .8rem;
    line-height: 1.2;
}
.value h3 em { font-style: italic; color: var(--accent); }
.value p {
    color: var(--ink-soft);
    font-size: .97rem;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================================
   14. SERVICES page (Leistungen)
   ========================================================================= */
.svc-toc {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: 2rem;
    background: var(--bg-soft);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}
.svc-toc__title {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
}
.svc-toc ol {
    counter-reset: toc;
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem;
}
@media (min-width: 700px) { .svc-toc ol { grid-template-columns: repeat(2, 1fr); } }
.svc-toc li {
    counter-increment: toc;
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.svc-toc li::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--accent);
    letter-spacing: .15em;
    flex-shrink: 0;
    width: 2ch;
}
.svc-toc a {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--ink);
    transition: color 200ms;
}
.svc-toc a:hover { color: var(--accent); }

.svc-block {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--line);
}
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 800px) {
    .svc-block__inner {
        grid-template-columns: 9rem 1fr;
        gap: 3rem;
    }
}
.svc-block__num {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--accent);
    padding-top: .6rem;
}
.svc-block h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    color: var(--ink);
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
}
.svc-block h2 em { font-style: italic; color: var(--accent); }
.svc-block__intro {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.6rem;
    max-width: 65ch;
}
.svc-block__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
@media (min-width: 700px) { .svc-block__list { grid-template-columns: repeat(2, 1fr); } }
.svc-item {
    padding: 1.2rem 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: border-color 240ms, transform 240ms;
}
.svc-item:hover {
    border-color: var(--accent);
    transform: translateX(3px);
}
.svc-item h4 {
    font-family: var(--f-display);
    font-size: 1.18rem;
    color: var(--ink);
    margin-bottom: .35rem;
    font-weight: 500;
    line-height: 1.25;
}
.svc-item p {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.55;
    margin: 0;
}


/* =========================================================================
   15. CONTACT page
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.contact-info dl {
    display: grid;
    gap: 1.4rem;
    margin: 0;
}
.contact-info dt {
    font-family: var(--f-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--accent);
    margin-bottom: .25rem;
}
.contact-info dd {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
}
.contact-info dd a { color: var(--ink); border-bottom: 1px solid var(--line-strong); transition: color 200ms, border-color 200ms; }
.contact-info dd a:hover { color: var(--accent); border-color: var(--accent); }

/* Contact form */
.form {
    background: var(--bg-card);
    padding: clamp(1.8rem, 3vw, 2.5rem);
    border-radius: 6px;
    border: 1px solid var(--line);
}
.form__row {
    margin-bottom: 1.3rem;
}
.form__row--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
}
@media (min-width: 600px) {
    .form__row--split { grid-template-columns: 1fr 1fr; }
}
.form label {
    display: block;
    font-family: var(--f-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--ink-muted);
    margin-bottom: .5rem;
}
.form input,
.form textarea {
    width: 100%;
    padding: .85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 200ms, background 200ms;
}
.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card);
}
.form textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--f-body);
}
.form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form__submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.form__status {
    font-size: .9rem;
    color: var(--ink-muted);
    min-height: 1.4rem;
}
.form__status.is-success { color: var(--accent-deep); }
.form__status.is-error { color: #b3303d; }
.form__legal {
    font-size: .82rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin-top: 1.5rem;
}
.form__legal a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }


/* Map */
.map-wrap {
    margin-top: clamp(3rem, 6vw, 5rem);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.2) contrast(0.96);
}


/* =========================================================================
   16. LEGAL pages (Impressum / Datenschutz)
   ========================================================================= */
.legal {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.legal h2 {
    font-family: var(--f-display);
    font-size: 1.55rem;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
    font-weight: 500;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal address {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1rem;
    font-style: normal;
}
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); transition: border-color 200ms; }
.legal a:hover { border-color: var(--accent); }
.legal ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.7;
}
.legal ul li { margin-bottom: .5rem; }
.legal strong { color: var(--ink); }
.legal em { color: var(--ink-muted); }


/* =========================================================================
   17. 404 page
   ========================================================================= */
.notfound {
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, var(--accent-soft) 0%, transparent 60%),
        var(--bg);
}
.notfound__inner {
    max-width: 600px;
    padding: 0 var(--gutter);
}
.notfound__num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(7rem, 22vw, 14rem);
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    font-weight: 400;
}
.notfound h1 {
    font-family: var(--f-display);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
}
.notfound p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}


/* =========================================================================
   18. ATMOSPHERIC IMAGE BANDS
   ========================================================================= */
.band-figure {
    margin: clamp(2.5rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: var(--bg-deep);
    border-radius: 6px;
}
.band-figure--narrow { aspect-ratio: 21 / 7; }
.band-figure img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 78%; display: block;
    filter: saturate(0.96);
}
.band-figure figcaption {
    position: absolute;
    right: var(--gutter);
    bottom: .85rem;
    font-family: var(--f-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(251, 250, 246, 0.95);
    padding: .35rem .65rem;
    background: rgba(20, 48, 74, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 2px;
    pointer-events: none;
}
@media (max-width: 700px) {
    .band-figure { aspect-ratio: 16 / 10; }
    .band-figure--narrow { aspect-ratio: 16 / 11; }
}


/* =========================================================================
   19. MOBILE NAVIGATION OVERLAY
   ========================================================================= */
@media (max-width: 880px) {
    .menu-toggle { display: block; }

    .nav {
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        padding: calc(var(--header-h) + 2rem) var(--gutter) var(--gutter);
        transform: translateX(100%);
        transition: transform 380ms cubic-bezier(.4,.2,.2,1);
        overflow-y: auto;
    }
    .nav.is-open {
        transform: translateX(0);
    }
    .nav a {
        font-family: var(--f-display);
        font-size: 2rem;
        padding: .8rem 0;
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    .nav a::after { display: none; }

    body.menu-open { overflow: hidden; }
}


/* =========================================================================
   20. PRINT
   ========================================================================= */
@media print {
    .site-header, .footer, .menu-toggle, .form, .map-wrap { display: none !important; }
    body { background: white; color: black; }
    a { text-decoration: underline; color: inherit; }
    .hero, .page-head { background: white; }
}
