/* ============================================================
       DTF AG — Design-System (dunkel-immersiv, Gold-Akzent)
       29 DESIGN_CARRIER + I824: φ-Spacing 1.618, Typo-Hierarchie 4+,
       narrativer Scroll, Tiefe/Material, WCAG-AA-Kontrast
       ============================================================ */
    :root {
      --bg: #0a0a0c;
      --bg-2: #0e0e12;
      --surface: #141418;
      --surface-2: #1a1a20;
      --line: rgba(207, 163, 73, .16);
      --line-soft: rgba(255, 255, 255, .07);
      --gold: #cda349;
      --gold-bright: #f1dda6;
      --gold-deep: #9a7b32;
      --ink: #f4f1ea;
      --muted: #a7a299;
      --muted-2: #6f6b63;
      --ivory: #f3eee4;
      --ivory-ink: #1a1712;
      --ivory-muted: #5c554a;
      --radius: 16px;
      --radius-lg: 22px;
      --container: 1180px;
      --pad-y: clamp(4.5rem, 9vw, 8.5rem);
      --ease: cubic-bezier(.22, .61, .36, 1);
      --serif: "Playfair Display", Georgia, "Times New Roman", serif;
      --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 400;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    img, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
    p { margin: 0 0 1rem; }
    ::selection { background: var(--gold); color: #0a0a0c; }

    .container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: .55rem;
      font-family: var(--sans); font-size: .74rem; font-weight: 600;
      letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
    }
    .eyebrow::before { content: ""; width: 1.7rem; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
    .section { padding-block: var(--pad-y); position: relative; }
    .section-lead { max-width: 60ch; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); }

    /* ---------- Buttons ---------- */
    .btn {
      --bg-btn: transparent;
      display: inline-flex; align-items: center; gap: .6rem;
      font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
      padding: .92rem 1.6rem; border-radius: 999px; cursor: pointer;
      border: 1px solid var(--line); color: var(--ink); background: var(--bg-btn);
      transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    }
    .btn:hover { transform: translateY(-2px); border-color: var(--gold); }
    .btn .arr { transition: transform .25s var(--ease); }
    .btn:hover .arr { transform: translateX(3px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
      color: #15110a; border-color: transparent;
      box-shadow: 0 12px 30px -10px rgba(205, 163, 73, .55);
    }
    .btn-primary:hover { box-shadow: 0 18px 40px -10px rgba(205, 163, 73, .7); }
    .btn-ghost-light { border-color: rgba(26,23,18,.2); color: var(--ivory-ink); }
    .btn-ghost-light:hover { border-color: var(--gold-deep); }

    /* ---------- Header ---------- */
    .site-header {
      position: sticky; top: 0; z-index: 60;
      background: rgba(9, 9, 12, .72);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--line-soft);
      transition: background .3s var(--ease), border-color .3s var(--ease);
    }
    .site-header.scrolled { background: rgba(9, 9, 12, .94); border-bottom-color: var(--line); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
    .brand { display: flex; align-items: center; gap: .7rem; }
    .brand img { height: 40px; width: auto; filter: drop-shadow(0 2px 10px rgba(205,163,73,.3)); }
    .nav { display: flex; align-items: center; gap: .35rem; }
    .nav > a, .nav .has-sub > .nav-top {
      display: inline-flex; align-items: center; gap: .35rem;
      font-family: var(--sans); font-size: .92rem; font-weight: 500; color: var(--ink);
      padding: .55rem .85rem; border-radius: 999px; cursor: pointer; background: none; border: none;
      transition: color .2s var(--ease), background .2s var(--ease);
    }
    .nav > a:hover, .nav .has-sub:hover > .nav-top, .nav > a.active { color: var(--gold-bright); }
    .nav > a.active { background: rgba(207,163,73,.1); }
    .nav .caret { font-size: .65em; opacity: .7; transition: transform .2s var(--ease); }
    .has-sub { position: relative; }
    .has-sub:hover .caret, .has-sub:focus-within .caret { transform: rotate(180deg); }
    .submenu {
      position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%) translateY(8px);
      min-width: 248px; background: rgba(16,16,20,.98); border: 1px solid var(--line);
      border-radius: 14px; padding: .5rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,.8);
      opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease);
    }
    .has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .submenu a { display: flex; flex-direction: column; gap: .1rem; padding: .6rem .8rem; border-radius: 9px; transition: background .18s var(--ease); }
    .submenu a:hover { background: rgba(207,163,73,.12); }
    .submenu a strong { font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--ink); }
    .submenu a span { font-size: .78rem; color: var(--muted); }
    .header-cta { display: flex; align-items: center; gap: .8rem; }
    .lang-pill { font-size: .76rem; font-weight: 600; letter-spacing: .12em; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 999px; padding: .35rem .7rem; }
    .burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
    .burger span { width: 24px; height: 2px; background: var(--gold-bright); transition: transform .3s var(--ease), opacity .3s var(--ease); }

    /* ---------- Hero ---------- */
    .hero { position: relative; min-height: clamp(640px, 92vh, 940px); display: flex; align-items: center; overflow: hidden; }
    .hero-video { position: absolute; inset: 0; z-index: 0; }
    .hero-video video, .hero-video .poster { width: 100%; height: 100%; object-fit: cover; }
    .hero-video::after {
      content: ""; position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(8,8,11,.62) 0%, rgba(8,8,11,.38) 40%, rgba(8,8,11,.86) 100%),
        radial-gradient(120% 80% at 18% 30%, rgba(8,8,11,.2), rgba(8,8,11,.85) 78%);
    }
    .hero-inner { position: relative; z-index: 2; padding-block: 7rem 5rem; max-width: 760px; }
    .hero-lockup { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
    .hero-lockup img { height: 58px; width: auto; filter: drop-shadow(0 4px 18px rgba(205,163,73,.4)); }
    .hero h1 {
      font-size: clamp(2.9rem, 7vw, 6rem); line-height: 1.02; margin: 1.4rem 0 1.4rem;
      letter-spacing: -.02em;
    }
    .hero h1 .accent { color: var(--gold-bright); font-style: italic; }
    .hero-claim { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.65rem); color: var(--gold-bright); margin: .2rem 0 1.3rem; }
    .hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: #e7e2d8; max-width: 60ch; margin-bottom: 2.3rem; font-weight: 300; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
    .scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
    .scroll-cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s var(--ease) infinite; }
    @keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

    /* ---------- Stats band ---------- */
    .stats-band { border-block: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: clamp(2.2rem, 4vw, 3.4rem); }
    .stat { text-align: center; position: relative; }
    .stat + .stat::before { content: ""; position: absolute; left: -.75rem; top: 12%; height: 76%; width: 1px; background: var(--line-soft); }
    .stat strong { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--gold-bright); line-height: 1; }
    .stat span { display: block; margin-top: .7rem; font-size: .86rem; color: var(--muted); letter-spacing: .01em; }

    /* ---------- Über uns ---------- */
    .about-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
    .about-grid h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); margin: 1.1rem 0 1.4rem; }
    .about-grid p { color: var(--muted); }
    .value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .value-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem; transition: border-color .25s var(--ease), transform .25s var(--ease); }
    .value-card:hover { border-color: var(--line); transform: translateY(-3px); }
    .value-card strong { display: block; font-family: var(--sans); font-weight: 600; color: var(--gold-bright); margin-bottom: .4rem; }
    .value-card span { font-size: .9rem; color: var(--muted); }
    .about-aside { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); position: sticky; top: 96px; }
    .about-aside .crest { width: 92px; height: auto; margin-bottom: 1.3rem; filter: drop-shadow(0 6px 20px rgba(205,163,73,.35)); }
    .about-aside h3 { font-size: 1.5rem; margin-bottom: .9rem; }
    .about-aside p { color: var(--muted); font-size: .96rem; }

    /* ---------- LIGHT section (Dienstleistungen) ---------- */
    .light { background: var(--ivory); color: var(--ivory-ink); }
    .light .eyebrow { color: var(--gold-deep); }
    .light .eyebrow::before { background: linear-gradient(90deg, var(--gold-deep), transparent); }
    .light .section-lead { color: var(--ivory-muted); }
    .light h2 { color: var(--ivory-ink); }
    .light-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.8rem; }
    .light-head h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin-top: .8rem; }
    .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    .service-card {
      background: #fff; border: 1px solid rgba(26,23,18,.08); border-radius: 16px; overflow: hidden;
      display: flex; flex-direction: column; box-shadow: 0 14px 30px -22px rgba(26,23,18,.5);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -24px rgba(26,23,18,.55); }
    .service-card img { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
    .service-card .sc-body { padding: 1.15rem 1.25rem 1.4rem; }
    .service-card h3 { font-size: 1.28rem; color: var(--ivory-ink); margin-bottom: .45rem; }
    .service-card p { font-size: .9rem; color: var(--ivory-muted); margin: 0; }
    .light-note { margin-top: 2.6rem; color: var(--ivory-muted); font-size: .95rem; max-width: 70ch; }
    .light-note a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid; }
    .cluster-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
    .cluster-chips span { font-size: .82rem; font-weight: 600; color: var(--ivory-ink); border: 1px solid rgba(26,23,18,.16); border-radius: 999px; padding: .5rem 1.1rem; background: #fff; }
    .cluster-chips span b { color: var(--gold-deep); font-weight: 700; }
    .service-card .cluster { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; display: block; margin-bottom: .4rem; }

    /* ---------- So arbeiten wir (Ablauf) ---------- */
    .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.4rem; }
    .process-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.9rem 1.7rem; transition: border-color .25s var(--ease), transform .25s var(--ease); }
    .process-card:hover { border-color: var(--line); transform: translateY(-4px); }
    .process-card .pnum { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; display: block; margin-bottom: .7rem; }
    .process-card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
    .process-card p { font-size: .92rem; color: var(--muted); margin: 0; }
    .phase-band { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
    .phase-band .ph-eyebrow { margin-bottom: .6rem; }
    .phase-band h3 { font-size: 1.45rem; margin-bottom: 1.6rem; }
    .phase-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
    .phase { display: flex; flex-direction: column; gap: .35rem; padding-left: 1rem; border-left: 2px solid var(--gold-deep); }
    .phase span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
    .phase strong { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
    .phase p { font-size: .84rem; color: var(--muted); margin: 0; }
    @media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; } .phase-row { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 760px) { .phase-row { grid-template-columns: 1fr; } }

    /* ---------- Märkte ---------- */
    .markets-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.6rem; }
    .markets-head h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin-top: .8rem; }
    .market-film { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 21/8; box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); margin-bottom: 2rem; }
    .market-film video, .market-film .poster { width: 100%; height: 100%; object-fit: cover; }
    .market-film figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.2rem, 3vw, 2.2rem); background: linear-gradient(to top, rgba(8,8,11,.9), rgba(8,8,11,.1) 75%, transparent); }
    .market-film figcaption strong { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: var(--gold-bright); margin-bottom: .3rem; }
    .market-film figcaption span { color: #d8d3c8; font-size: .98rem; }
    .market-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
    .market-card {
      background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.4rem 1.3rem 1.5rem;
      display: flex; flex-direction: column; gap: .55rem; transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
    }
    .market-card:hover { transform: translateY(-5px); border-color: var(--gold); background: var(--surface-2); }
    .market-card .code { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
    .market-card h3 { font-size: 1.18rem; }
    .market-card p { font-size: .85rem; color: var(--muted); margin: 0; }
    .market-card .go { margin-top: auto; font-size: .82rem; font-weight: 600; color: var(--gold-bright); display: inline-flex; align-items: center; gap: .4rem; }

    /* ---------- Markt Deep-Dives ---------- */
    .deepdives { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
    .wayfinder { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; position: sticky; top: 74px; z-index: 30; background: rgba(9,9,12,.85); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: .8rem 0; }
    .wayfinder a { font-size: .85rem; font-weight: 500; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 999px; padding: .45rem .95rem; transition: color .2s, border-color .2s, background .2s; }
    .wayfinder a:hover { color: var(--gold-bright); border-color: var(--gold); }
    .wayfinder .wf-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); align-self: center; margin-right: .4rem; }
    .country { scroll-margin-top: 150px; padding-block: clamp(2.5rem, 5vw, 4.2rem); border-top: 1px solid var(--line-soft); }
    .country-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
    .country.reverse .country-grid { direction: rtl; }
    .country.reverse .country-grid > * { direction: ltr; }
    .country-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; box-shadow: 0 28px 60px -30px rgba(0,0,0,.7); }
    .country-media img { width: 100%; height: 100%; object-fit: cover; }
    .country-media .media-tag { position: absolute; left: 0; bottom: 0; padding: 1.4rem; background: linear-gradient(to top, rgba(8,8,11,.92), transparent); }
    .country-media .media-tag h3 { font-size: 1.5rem; color: var(--gold-bright); margin-top: .3rem; }
    .country-copy .code-badge { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #15110a; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); border-radius: 8px; padding: .15rem .6rem; display: inline-block; margin-bottom: 1rem; letter-spacing: .05em; }
    .proof-pill { display: inline-block; margin: 0 0 1rem .55rem; font-size: .71rem; font-weight: 600; letter-spacing: .03em; padding: .22rem .72rem; border-radius: 999px; border: 1px solid var(--line-soft); color: var(--muted); vertical-align: middle; }
    .proof-pill.ok { color: var(--gold-bright); border-color: var(--line); background: rgba(207,163,73,.09); }
    .country-copy h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
    .country-copy .lead { color: #ded9cf; font-size: 1.08rem; margin-bottom: 1.2rem; }
    .country-copy p { color: var(--muted); font-size: .96rem; }
    .country-points { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.6rem 0; }
    .country-point { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1rem 1.1rem; }
    .country-point span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
    .country-point h4 { font-family: var(--sans); font-weight: 600; font-size: .98rem; margin: .35rem 0 .35rem; color: var(--ink); }
    .country-point p { font-size: .84rem; margin: 0; }

    /* ---------- Beweise / Team ---------- */
    .proof-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
    .case-grid { display: grid; gap: 1rem; }
    .case-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.5rem 1.6rem; transition: border-color .25s var(--ease); }
    .case-card:hover { border-color: var(--line); }
    .case-card .code { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.1rem; }
    .case-card h3 { font-size: 1.25rem; margin: .3rem 0 .6rem; }
    .case-card > p { color: var(--muted); font-size: .92rem; }
    .case-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0 0; }
    .case-card dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
    .case-card dd { margin: 0; font-size: .86rem; color: var(--muted); }
    .proof-note { margin-top: 1.4rem; font-size: .86rem; color: var(--muted-2); font-style: italic; }
    .team-card { display: flex; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.2rem; margin-bottom: 1rem; }
    .team-photo { width: 58px; height: 58px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; color: #15110a; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); }
    .team-card h3 { font-size: 1.08rem; margin-bottom: .25rem; }
    .team-card p { font-size: .84rem; color: var(--muted); margin: 0; }

    /* ---------- Partner ---------- */
    .partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.4rem; }
    .partner-card { border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.3rem); }
    .partner-card h3 { font-size: 1.4rem; margin-bottom: .9rem; }
    .partner-card p { color: var(--muted); font-size: .95rem; }
    .partner-card.dark { background: var(--surface); border: 1px solid var(--line-soft); }
    .partner-card.gold { background: linear-gradient(150deg, rgba(207,163,73,.16), rgba(207,163,73,.04)); border: 1px solid var(--line); }
    .partner-card.gold h3 { color: var(--gold-bright); }

    /* ---------- Standorte ---------- */
    .loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
    .loc-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.3rem 1.4rem; transition: border-color .25s var(--ease), transform .25s var(--ease); }
    .loc-card:hover { border-color: var(--line); transform: translateY(-3px); }
    .loc-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--gold-bright); margin-bottom: .5rem; }
    .loc-card p { font-size: .88rem; color: var(--muted); margin: 0; }
    .loc-card.alweba { border-color: var(--line); background: linear-gradient(150deg, rgba(207,163,73,.1), transparent); }
    .alweba-mark { height: 30px; width: auto; margin-bottom: .7rem; opacity: .95; }

    /* ---------- Kontakt ---------- */
    .contact { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line-soft); }
    .contact-grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
    .contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); }
    .contact-form h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.6rem; }
    .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .field { display: flex; flex-direction: column; gap: .4rem; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-size: .8rem; color: var(--muted); font-weight: 500; }
    .field input, .field textarea {
      background: var(--bg); border: 1px solid var(--line-soft); border-radius: 10px; padding: .85rem 1rem;
      color: var(--ink); font-family: var(--sans); font-size: .95rem; transition: border-color .2s var(--ease);
    }
    .field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
    .field textarea { min-height: 120px; resize: vertical; }
    .consent { display: flex; gap: .6rem; align-items: flex-start; margin: 1.2rem 0; font-size: .82rem; color: var(--muted); }
    .consent input { margin-top: .25rem; accent-color: var(--gold); }
    .contact-side h3 { font-size: 1.4rem; margin-bottom: 1rem; }
    .contact-side .ci-strong { font-family: var(--sans); font-weight: 700; color: var(--gold-bright); display: block; margin-bottom: .5rem; }
    .contact-side p { color: var(--muted); font-size: .95rem; }
    .contact-side a { color: var(--gold-bright); border-bottom: 1px solid rgba(241,221,166,.3); }
    .contact-seal { width: 80px; margin-top: 1.6rem; opacity: .9; }

    /* ---------- FAQ ---------- */
    .faq-list { display: grid; gap: .8rem; max-width: 900px; margin-top: 2.4rem; }
    .faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 0 1.5rem; transition: border-color .2s var(--ease); }
    .faq-item[open] { border-color: var(--line); }
    .faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 0; font-family: var(--serif); font-size: 1.14rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; transition: transform .2s var(--ease); }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item p { color: var(--muted); font-size: .94rem; padding-bottom: 1.35rem; margin: 0; }
    /* ---------- Footer Impressum ---------- */
    .footer-imprint { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
    .footer-imprint h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
    .footer-imprint p { color: var(--muted); font-size: .86rem; max-width: 86ch; margin: 0 0 .4rem; }
    .footer-imprint em { color: var(--gold-bright); font-style: normal; }

    /* ---------- Footer ---------- */
    .site-footer { background: #08080a; border-top: 1px solid var(--line-soft); padding-block: clamp(2.6rem, 5vw, 4rem) 2rem; }
    .footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
    .footer-brand img { height: 44px; margin-bottom: 1rem; }
    .footer-brand p { color: var(--muted); font-size: .9rem; max-width: 36ch; }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 2.4rem; }
    .footer-col h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
    .footer-col a { display: block; color: var(--muted); font-size: .9rem; padding: .25rem 0; transition: color .2s var(--ease); }
    .footer-col a:hover { color: var(--gold-bright); }
    .footer-legal { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted-2); font-size: .82rem; }
    .footer-legal a { color: var(--muted-2); }
    .footer-legal a:hover { color: var(--gold); }

    /* ---------- Floating actions ---------- */
    .floating { position: fixed; right: 1.2rem; bottom: 1.4rem; z-index: 50; display: flex; flex-direction: column; gap: .6rem; }
    .floating a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(20,20,24,.92); border: 1px solid var(--line); color: var(--gold-bright); font-size: 1.1rem; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: transform .2s var(--ease), border-color .2s var(--ease); }
    .floating a:hover { transform: translateY(-3px); border-color: var(--gold); }


    /* ---------- Reveal on scroll ---------- */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }

    /* ---------- Responsive ---------- */
    @media (max-width: 980px) {
      .about-grid, .proof-grid, .contact-grid, .country-grid, .partner-grid { grid-template-columns: 1fr; }
      .about-aside { position: static; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .market-grid { grid-template-columns: repeat(2, 1fr); }
      .loc-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
      .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
      .country.reverse .country-grid { direction: ltr; }
    }
    @media (max-width: 760px) {
      .nav, .header-cta .lang-pill { display: none; }
      .burger { display: flex; }
      .nav.open {
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        position: absolute; top: 74px; left: 0; right: 0; background: rgba(10,10,13,.99);
        border-bottom: 1px solid var(--line); padding: .8rem 1.3rem 1.4rem;
      }
      .nav.open > a, .nav.open .has-sub > .nav-top { padding: .9rem .4rem; border-bottom: 1px solid var(--line-soft); justify-content: space-between; width: 100%; }
      .nav.open .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: rgba(207,163,73,.05); margin: 0 0 .5rem; }
      .nav.open .has-sub:hover .submenu { transform: none; }
      .value-list, .country-points, .case-card dl, .field-grid { grid-template-columns: 1fr; }
      .service-grid, .market-grid, .loc-grid { grid-template-columns: 1fr; }
      .wayfinder { top: 74px; overflow-x: auto; flex-wrap: nowrap; }
      .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .hero-video video, .market-film video { display: none; }
      .hero-video, .market-film { background: #0c0c0e url("assets/dtf-appendix-poster.jpg") center / cover no-repeat; }
      .reveal { opacity: 1; transform: none; }
      .scroll-cue::after { animation: none; }
    }

/* ============ Multi-Page Ergaenzungen ============ */
.page-hero { position: relative; padding: clamp(7rem,12vw,10rem) 0 clamp(2.6rem,5vw,4rem); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(120% 100% at 82% 0%, rgba(207,163,73,.12), transparent 58%), linear-gradient(180deg, var(--bg-2), var(--bg)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumb { font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-2); margin-bottom:1rem; }
.page-hero .crumb a { color:var(--muted); } .page-hero .crumb a:hover { color:var(--gold-bright); }
.page-hero h1 { font-size: clamp(2.4rem,5vw,4.1rem); margin:.5rem 0 1.1rem; }
.page-hero h1 .accent { color:var(--gold-bright); font-style:italic; }
.page-hero .ph-sub { max-width:62ch; color:#e7e2d8; font-size:clamp(1.02rem,1.4vw,1.22rem); font-weight:300; }
.cta-band { background: linear-gradient(150deg, rgba(207,163,73,.14), rgba(207,163,73,.03)); border-block:1px solid var(--line); }
.cta-inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.8rem; padding-block: clamp(2.6rem,5vw,4rem); }
.cta-inner .cta-copy { max-width:30ch; }
.cta-inner h2 { font-size:clamp(1.8rem,3.4vw,2.8rem); }
.cta-inner p { color:var(--muted); margin:.7rem 0 0; }
.home-section-link { display:inline-flex; align-items:center; gap:.5rem; margin-top:1.6rem; font-weight:600; color:var(--gold-bright); }
.home-section-link:hover { gap:.8rem; }

/* ---------- Dezenter View-Toggle (Multi-Page <-> One-Pager, fuer Manuel) ---------- */
.view-toggle { position: fixed; left: 1rem; bottom: 1rem; z-index: 70; font-size: .72rem; color: var(--muted-2); border: 1px solid var(--line-soft); border-radius: 999px; padding: .42rem .85rem; background: rgba(12,12,14,.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: .5; text-decoration: none; transition: opacity .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.view-toggle:hover { opacity: 1; color: var(--gold-bright); border-color: var(--line); }
