/* =========================================================================
   we go marketing & development GmbH — Stylesheet
   Editorial · Refined · Print-inspired
   ========================================================================= */

:root {
    /* Palette */
    --bg: #f5f1ea;            /* warm sand paper */
    --bg-alt: #ece6db;        /* slightly deeper paper */
    --bg-card: #ffffff;
    --ink: #0d2a2b;           /* deep petrol — main text */
    --ink-soft: #2c4849;
    --ink-muted: #647677;
    --ink-faint: #8c9a9b;
    --line: #d6cfc1;          /* hairline */
    --line-soft: #e3ddd1;
    --accent: #c64f3d;        /* terracotta / coral */
    --accent-deep: #a73c2c;
    --accent-soft: #efd6cf;
    --green: #0d2a2b;
    --green-light: #1a4243;

    /* Typography */
    --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --f-body: 'Inter', system-ui, -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Easing */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --max: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --header-h: 78px;
}

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

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

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-weight: 400;
    font-feature-settings: "ss01", "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s var(--ease);
}

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

button {
    font: inherit;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--ink-faint); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }

/* =====  Layout helpers  ===== */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.section {
    padding: clamp(4rem, 9vw, 8rem) 0;
    position: relative;
}

.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: var(--bg); }

/* =====  Header / Top Bar  ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(245, 241, 234, 0.7);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
    background: rgba(245, 241, 234, 0.92);
    border-bottom-color: var(--line);
}

.site-header__inner {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
    font-family: var(--f-display);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
}
.brand__mark {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: .8rem;
    font-family: var(--f-mono);
    font-weight: 500;
    letter-spacing: 0;
    transform: translateY(2px);
}
.brand__name { font-style: italic; }
.brand__suffix {
    font-family: var(--f-body);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-muted);
    font-style: normal;
    font-weight: 500;
    margin-left: .15rem;
    transform: translateY(-2px);
    align-self: flex-start;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
.nav a {
    position: relative;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: .25rem 0;
    letter-spacing: -0.005em;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%; bottom: -2px;
    height: 1.5px;
    background: var(--accent);
    transition: right .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after,
.nav a.active::after { right: 0; }
.nav a.active { color: var(--ink); }

/* Hamburger */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    transition: background .25s var(--ease);
}
.menu-toggle:hover { background: rgba(13,42,43,.06); }
.menu-toggle span {
    display: block;
    position: absolute;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    transform: translateX(-50%);
    transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: calc(50% - 1px); }
.menu-toggle span:nth-child(3) { top: calc(100% - 17px); }
.menu-toggle.active span:nth-child(1) { top: calc(50% - 1px); transform: translateX(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: calc(50% - 1px); transform: translateX(-50%) rotate(-45deg); }

/* =====  Buttons  ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .95rem 1.6rem;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .01em;
    border-radius: 999px;
    transition: transform .35s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}
.btn--primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 1px 0 rgba(13,42,43,0), 0 12px 28px -12px rgba(13,42,43,.45);
}
.btn--primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(198,79,61,.55);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--bg);
}
.btn--light {
    background: var(--bg);
    color: var(--ink);
}
.btn--light:hover {
    background: var(--accent);
    color: var(--bg);
}
.btn .arrow {
    width: 16px; height: 16px;
    transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Plain text link */
.tlink {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.tlink:hover { gap: .85rem; border-color: var(--accent); color: var(--accent); }

/* =====  Type basics  ===== */
h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--f-mono);
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--ink-muted);
    margin-bottom: 1.4rem;
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 1.25rem;
    max-width: 22ch;
}
.section-title em {
    font-style: italic;
    color: var(--accent);
}
.section-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    color: var(--ink-soft);
    max-width: 60ch;
    line-height: 1.65;
}

/* =====  Reveal animations  ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
    padding-bottom: clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}
.hero__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
    position: relative;
}
.hero__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}
.hero__meta {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--ink-muted);
    line-height: 1.8;
}
.hero__meta strong {
    color: var(--ink);
    font-weight: 500;
}
.hero__edition {
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--ink-faint);
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero__headline {
    font-family: var(--f-display);
    font-size: clamp(3rem, 9vw, 7.2rem);
    line-height: .98;
    letter-spacing: -0.035em;
    font-weight: 400;
    color: var(--ink);
    max-width: 14ch;
}
.hero__headline em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}
.hero__headline .underline {
    background-image: linear-gradient(transparent 88%, var(--accent-soft) 88%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 .05em;
}

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

.hero__lead {
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 52ch;
}
.hero__lead strong { color: var(--ink); font-weight: 500; }

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

/* Hero side: vertical fields list */
.hero__fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}
.hero__field {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.hero__field-label {
    font-family: var(--f-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--ink-muted);
}
.hero__field-value {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hero__field-value em { font-style: italic; color: var(--accent); }

/* Hero decorative SVG strip */
.hero__art {
    position: absolute;
    right: calc(var(--gutter) * -.5);
    top: calc(var(--header-h) + 1rem);
    width: clamp(140px, 18vw, 240px);
    height: clamp(140px, 18vw, 240px);
    pointer-events: none;
    opacity: .85;
    z-index: 0;
}
.hero__inner > * { position: relative; z-index: 1; }

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

/* =========================================================================
   PILLARS / Was wir tun (Index)
   ========================================================================= */
.pillars__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    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: 0;
    border-top: 1px solid var(--line);
}
.pillar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1rem, 3vw, 2.5rem);
    padding: clamp(1.6rem, 3vw, 2.4rem) 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.pillar:hover {
    background: linear-gradient(90deg, transparent, rgba(198,79,61,.04), transparent);
    padding-left: clamp(.5rem, 1.5vw, 1rem);
}
.pillar__num {
    font-family: var(--f-mono);
    font-size: .8rem;
    color: var(--ink-faint);
    letter-spacing: .1em;
    padding-top: .35rem;
    min-width: 3ch;
}
.pillar__body { min-width: 0; }
.pillar__title {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: .65rem;
}
.pillar__title em { font-style: italic; color: var(--accent); }
.pillar__desc {
    color: var(--ink-soft);
    font-size: 1rem;
    max-width: 60ch;
    line-height: 1.6;
}
.pillar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .65rem;
    margin-top: .85rem;
}
.pillar__tag {
    font-family: var(--f-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-muted);
    padding: .3rem .65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.pillar__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    flex-shrink: 0;
}
.pillar:hover .pillar__icon {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.pillar__icon svg { width: 22px; height: 22px; }

/* =========================================================================
   APPROACH (Index page)
   ========================================================================= */
.approach__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 800px) {
    .approach__list { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.approach__item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-radius: 4px;
    position: relative;
    transition: transform .4s var(--ease), border-color .35s var(--ease);
}
.approach__item:hover {
    transform: translateY(-4px);
    border-color: var(--ink);
}
.approach__num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 3.6rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 1rem;
}
.approach__item h3 {
    font-size: 1.5rem;
    margin-bottom: .8rem;
    font-weight: 400;
}
.approach__item p {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.65;
}

/* =========================================================================
   FOCUS BLOCK (Industry focus)
   ========================================================================= */
.focus__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-card);
    margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 800px) {
    .focus__grid { grid-template-columns: repeat(3, 1fr); }
}
.focus__cell {
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
}
.focus__cell:last-child { border-bottom: 0; }
@media (min-width: 800px) {
    .focus__cell { border-bottom: 0; border-right: 1px solid var(--line); }
    .focus__cell:last-child { border-right: 0; }
}
.focus__cell:hover { background: var(--bg-alt); }
.focus__cell-num {
    font-family: var(--f-mono);
    font-size: .72rem;
    color: var(--ink-faint);
    letter-spacing: .15em;
    margin-bottom: 1rem;
}
.focus__cell h3 {
    font-size: 1.7rem;
    margin-bottom: .8rem;
    font-weight: 400;
}
.focus__cell h3 em { font-style: italic; color: var(--accent); }
.focus__cell p {
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.65;
}

/* =========================================================================
   STATEMENT BLOCK (Big quote-like)
   ========================================================================= */
.statement {
    padding: clamp(4rem, 9vw, 8rem) 0;
    background: var(--ink);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.statement::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: var(--f-display);
    font-size: 25rem;
    line-height: 1;
    color: rgba(245,241,234,.05);
    font-weight: 400;
    pointer-events: none;
}
.statement__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
}
.statement__text {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--bg);
}
.statement__text em { font-style: italic; color: var(--accent-soft); }
.statement__cite {
    margin-top: 2rem;
    font-family: var(--f-mono);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(245,241,234,.55);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.statement__cite::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--accent);
}

/* =========================================================================
   CTA banner
   ========================================================================= */
.cta-band {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-band__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 800px) {
    .cta-band__inner { grid-template-columns: 1fr auto; }
}
.cta-band h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.1;
    max-width: 22ch;
    font-weight: 400;
}
.cta-band h2 em { font-style: italic; color: var(--accent); }

/* =========================================================================
   PAGE HEADER (sub-pages)
   ========================================================================= */
.page-head {
    padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
    padding-bottom: clamp(2rem, 5vw, 4rem);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}
.page-head__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.crumbs {
    font-family: var(--f-mono);
    font-size: .72rem;
    color: var(--ink-muted);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
}
.crumbs a { color: var(--ink); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.crumbs a:hover { border-bottom-color: var(--accent); }
.crumbs span.sep { color: var(--ink-faint); }
.page-head h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: .98;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 16ch;
    margin-bottom: 1.25rem;
}
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head__lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-soft);
    max-width: 60ch;
    line-height: 1.6;
}

/* =========================================================================
   ABOUT page specific
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1.1fr 1fr; }
}
.about-prose p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
}
.about-prose p:first-of-type::first-letter {
    font-family: var(--f-display);
    font-size: 4.2rem;
    line-height: .85;
    float: left;
    padding: .4rem .55rem 0 0;
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
}
.about-prose strong { color: var(--ink); font-weight: 600; }

.about-aside {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--bg-card);
    padding: clamp(1.6rem, 3vw, 2.2rem);
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.about-aside h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
.about-aside dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .85rem 1.2rem;
    margin: 0;
}
.about-aside dt {
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--ink-muted);
    align-self: center;
}
.about-aside dd {
    font-size: .95rem;
    color: var(--ink);
    margin: 0;
}

.values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 800px) {
    .values { grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line); }
    .values > * { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 0; }
}
.value {
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
}
@media (min-width: 800px) {
    .value { border-bottom: 0; }
}
.value:hover { background: var(--bg-alt); }
.value__num {
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--accent);
    letter-spacing: .15em;
    margin-bottom: .85rem;
}
.value h3 {
    font-size: 1.55rem;
    font-weight: 400;
    margin-bottom: .65rem;
}
.value h3 em { font-style: italic; color: var(--accent); }
.value p {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.65;
}

/* About visual: SVG art block instead of stock photo */
.about-visual {
    aspect-ratio: 4/5;
    background: var(--ink);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual svg { width: 100%; height: 100%; display: block; }

/* =========================================================================
   SERVICES (leistungen.html)
   ========================================================================= */
.svc-toc {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--line);
}
.svc-toc__list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem .9rem;
    list-style: none;
    margin-top: 1.25rem;
}
.svc-toc__list a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--ink);
    background: var(--bg-card);
    transition: all .25s var(--ease);
}
.svc-toc__list a:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.svc-toc__list .num {
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--ink-faint);
}
.svc-toc__list a:hover .num { color: var(--accent-soft); }

.svc-block {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
@media (min-width: 900px) {
    .svc-block__inner { grid-template-columns: 130px 1fr; gap: 3rem; }
}
.svc-block__num {
    font-family: var(--f-mono);
    font-size: .8rem;
    letter-spacing: .15em;
    color: var(--ink-faint);
    text-transform: uppercase;
    padding-top: .35rem;
    border-top: 1px solid var(--ink);
    width: fit-content;
}
.svc-block h2 {
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    font-weight: 400;
    max-width: 18ch;
}
.svc-block h2 em { font-style: italic; color: var(--accent); }
.svc-block__intro {
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 60ch;
    margin-bottom: 1.5rem;
}
.svc-list {
    list-style: none;
    margin: 1.25rem 0;
    border-top: 1px solid var(--line);
}
.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.55;
}
.svc-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: .5rem;
}

/* Industry focus chips on leistungen */
.svc-industries {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .65rem;
    margin: 1.5rem 0;
}
.svc-industry {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink);
    padding: .4rem .85rem;
    background: var(--accent-soft);
    border-radius: 999px;
}

/* =========================================================================
   CONTACT page
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}
@media (min-width: 950px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 400;
    max-width: 18ch;
}
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info > p {
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 50ch;
}
.contact-rows {
    border-top: 1px solid var(--line);
}
.contact-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.contact-row dt {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--ink-muted);
    padding-top: .25rem;
}
.contact-row dd {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.55;
    margin: 0;
}
.contact-row dd a {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
    transition: border-color .25s var(--ease), color .25s var(--ease);
}
.contact-row dd a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* Form */
.form {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin-bottom: .5rem;
    font-weight: 400;
}
.form h2 em { font-style: italic; color: var(--accent); }
.form > p {
    color: var(--ink-muted);
    font-size: .92rem;
    margin-bottom: 1.75rem;
}
.form-row {
    margin-bottom: 1.25rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}
.form label {
    display: block;
    font-family: var(--f-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--ink-muted);
    margin-bottom: .5rem;
}
.form input,
.form textarea,
.form select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: .6rem 0 .7rem;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color .25s var(--ease);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: 0;
    border-bottom-color: var(--ink);
}
.form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.55;
}
.form-check {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .87rem;
    color: var(--ink-soft);
    margin: 1.25rem 0;
    line-height: 1.5;
}
.form-check input[type="checkbox"] {
    width: auto;
    margin-top: .25rem;
    accent-color: var(--ink);
}
.form-check a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.form-check a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.form-submit {
    background: var(--ink);
    color: var(--bg);
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 0;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .25s var(--ease), transform .35s var(--ease);
    width: 100%;
}
.form-submit:hover:not(:disabled) {
    background: var(--accent);
    transform: translateY(-2px);
}
.form-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
}
.form-message {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 4px;
    font-size: .92rem;
    line-height: 1.55;
    display: none;
    border-left: 3px solid var(--ink);
}
.form-message.show { display: block; }
.form-message.success {
    background: #e7f1ed;
    color: #0a4731;
    border-left-color: #0a4731;
}
.form-message.error {
    background: #faeae6;
    color: #7a2818;
    border-left-color: var(--accent);
}

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

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    position: relative;
}
.footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(245,241,234,.12);
}
@media (min-width: 700px) {
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer-brand .brand {
    color: var(--bg);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.footer-brand .brand__mark {
    background: var(--bg);
    color: var(--ink);
}
.footer-brand .brand__suffix { color: rgba(245,241,234,.55); }
.footer-brand p {
    color: rgba(245,241,234,.7);
    font-size: .92rem;
    line-height: 1.6;
    max-width: 36ch;
}
.footer-col h4 {
    font-family: var(--f-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(245,241,234,.55);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
    color: rgba(245,241,234,.85);
    font-size: .92rem;
    transition: color .25s var(--ease);
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}
.footer-col a:hover { color: var(--accent-soft); border-bottom-color: var(--accent); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: .82rem;
    color: rgba(245,241,234,.55);
    font-family: var(--f-mono);
    letter-spacing: .05em;
}
.footer-bottom .right {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* =========================================================================
   LEGAL pages (Impressum / Datenschutz)
   ========================================================================= */
.legal {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.legal h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    line-height: 1.15;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 .75rem;
    font-weight: 500;
    font-family: var(--f-body);
    letter-spacing: -0.005em;
}
.legal p, .legal li {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal ul {
    margin: 0 0 1rem 1.5rem;
}
.legal a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
}
.legal a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.legal address {
    font-style: normal;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* =========================================================================
   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;
}
.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-size: clamp(1.75rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.15;
}
.notfound p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* =========================================================================
   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 .5s var(--ease);
        z-index: 90;
        overflow-y: auto;
    }
    .nav.active { transform: translateX(0); }

    .nav a {
        display: block;
        width: 100%;
        font-family: var(--f-display);
        font-size: 2.4rem;
        line-height: 1.4;
        color: var(--ink);
        padding: .5rem 0;
        border-bottom: 1px solid var(--line);
        font-weight: 400;
        letter-spacing: -0.02em;
    }
    .nav a:last-child { border-bottom: 0; }
    .nav a::after { display: none; }
    .nav a.active { color: var(--accent); font-style: italic; }

    body.menu-open { overflow: hidden; }

    .site-header.scrolled { background: rgba(245, 241, 234, 0.92); }
}

/* =========================================================================
   RESPONSIVE FINE-TUNING
   ========================================================================= */
@media (max-width: 768px) {
    .hero__top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero__edition { display: none; }
    .hero__fields { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .pillar {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    .pillar__icon { grid-column: 1; grid-row: 1; }
    .pillar__body { grid-column: 2; }
    .contact-row { grid-template-columns: 1fr; gap: .25rem; }
    .contact-row dt { padding-top: 0; }
    .about-aside { position: static; }
    .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .hero__fields { grid-template-columns: 1fr; }
    .btn { padding: .85rem 1.35rem; font-size: .85rem; }
    .pillar__icon { width: 46px; height: 46px; }
    .pillar__icon svg { width: 18px; height: 18px; }
}

/* =========================================================================
   IMAGE FIGURES — Hero photo & atmospheric bands
   ========================================================================= */

/* Hero figure — sits in the second column of .hero__body grid */
.hero__figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-alt);
    aspect-ratio: 4 / 5;
    box-shadow:
        0 1px 0 rgba(13, 42, 43, 0.06),
        0 24px 48px -28px rgba(13, 42, 43, 0.32);
}
.hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* subtle filter to keep the editorial mood */
    filter: saturate(0.92) contrast(1.02);
    transition: transform 700ms cubic-bezier(.16,.84,.3,1);
}
.hero__figure:hover img { transform: scale(1.03); }
.hero__figure-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .55rem .85rem;
    font-family: var(--f-mono);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(245, 241, 234, 0.92);
    background: linear-gradient(to top,
        rgba(13, 42, 43, 0.72) 0%,
        rgba(13, 42, 43, 0.0) 100%);
    text-align: right;
    pointer-events: none;
}

@media (max-width: 899px) {
    .hero__figure {
        aspect-ratio: 16 / 11;
        margin-top: 1.5rem;
    }
}

/* Atmospheric band figure (full-bleed photo strip between sections) */
.band-figure {
    margin: clamp(2rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    background: var(--bg-alt);
}
.band-figure--narrow { aspect-ratio: 21 / 7; }

.band-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
}
.band-figure figcaption {
    position: absolute;
    right: var(--gutter);
    bottom: .85rem;
    font-family: var(--f-mono);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(245, 241, 234, 0.92);
    padding: .35rem .65rem;
    background: rgba(13, 42, 43, 0.32);
    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; }
    .band-figure figcaption { font-size: .58rem; }
}

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