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

    :root {
      --ink:    #111820;
      --mid:    #4A5568;
      --lt:     #8A96A3;
      --green:  #3DD68C;
      --teal:   #14C7B8;
      --border: #E4E9E6;
      --bg:     #FFFFFF;
      --bg2:    #F7F7F7;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--ink);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }

    /* ══ HERO AREA ══ */
    .hero-area-bg {
      background: linear-gradient(180deg, #F5F3EE 0%, #F9F8F5 50%, #FDFCFB 80%, #FFFFFF 100%);
    }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(253,251,248,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #EAE8E2;
      height: 58px;
    }
    .nav-in {
      max-width: 1280px; margin: 0 auto; padding: 0 2rem;
      height: 100%; display: flex; align-items: center; gap: 2rem;
    }
    .nav-logo {
      display: flex; align-items: center; gap: .5rem;
      font-size: 1rem; font-weight: 700; color: var(--ink);
      margin-right: 1rem;
    }
    .nav-logo-icon {
      width: 26px; height: 26px; border-radius: 50%;
      background: #1B2333;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-logo-icon svg { width: 14px; height: 14px; }
    .nav-links {
      display: flex; align-items: center; gap: 1.5rem; list-style: none;
      flex: 1; margin: 0; padding: 0;
    }
    .nav-links li { list-style: none; }
    .nav-links li a {
      font-size: .83rem; color: var(--mid); font-weight: 500;
    }
    .nav-links li a:hover { color: var(--ink); }
    .nav-links a {
      font-size: .83rem; color: var(--mid); font-weight: 500;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      background: #1B2333; color: #fff;
      padding: .45rem 1.1rem; border-radius: 6px;
      font-size: .83rem; font-weight: 600; white-space: nowrap;
      transition: background .15s;
    }
    .nav-cta:hover { background: #2a3448; }

    /* ══ HERO ══ */
    .hero {
      padding: 130px 2rem 80px;
      max-width: 900px; margin: 0 auto;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: .72rem; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: var(--lt);
      margin-bottom: 1.75rem;
    }
    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.8rem, 4.2vw, 3.75rem);
      line-height: 1.08; color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .hero p {
      font-size: 1.1rem; color: var(--mid);
      line-height: 1.75; margin-bottom: 2.5rem;
    }
    .btn-green {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--green); color: #0a2a18;
      padding: .8rem 1.8rem; border-radius: 8px;
      font-size: .95rem; font-weight: 700;
      box-shadow: 0 4px 24px rgba(61,214,140,.35);
      transition: background .15s;
    }
    .btn-green:hover { background: #33c47e; }

    /* ══ SHARED SECTION LAYOUT ══ */
    .sec {
      padding: 90px 0;
      overflow: hidden;
    }
    /* Text links, Visual rechts: 60 / 40 */
    .sec-grid {
      display: grid; grid-template-columns: 60% 40%;
      align-items: center;
    }
    /* Visual links, Text rechts: 40 / 60 */
    .sec-grid--vis-left {
      grid-template-columns: 40% 60%;
    }
    .sec-grid.flip { direction: rtl; }
    .sec-grid.flip > * { direction: ltr; }
    /* Text-Spalten-Padding nach Messungen der Vorlage */
    .sec-text--outer-left {
      padding-left: 20vw;
      padding-right: 7vw;
    }
    .sec-text--outer-right {
      padding-left: 7vw;
      padding-right: 24vw;
    }

    .sec-text h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      line-height: 1.1; color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .sec-text p {
      font-size: 1rem; color: var(--mid);
      line-height: 1.8; margin-bottom: 1rem;
    }
    .sec-text ul {
      list-style: none; margin-top: .5rem; margin-bottom: 1rem;
    }
    .sec-text ul li {
      font-size: 1rem; color: var(--mid);
      padding: .35rem 0; padding-left: 1.4rem;
      position: relative;
    }
    .sec-text ul li::before {
      content: "✓";
      position: absolute; left: 0;
      color: var(--green); font-weight: 700; font-size: .9rem;
    }
    .text-link { color: #2563EB; text-decoration: underline; }
    .teal-link { color: var(--teal); font-weight: 600; }

    /* big heading variant (sections 3 + 5) */
    .sec-text.xl h2 {
      font-size: clamp(2.5rem, 5.5vw, 4.6rem);
      line-height: 1.05;
    }

    /* ══ VISUAL: STATAMIC CONTROL PANEL ══ */
    .cp-wrap {
      border-radius: 10px; overflow: hidden;
      box-shadow: 0 24px 72px rgba(0,0,0,.14), 0 4px 20px rgba(0,0,0,.07);
      border: 1px solid #D8DEE4;
      background: #1B2333;
      position: relative;
    }
    .cp-titlebar {
      background: #232E3F; padding: 10px 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .cp-dot { width: 10px; height: 10px; border-radius: 50%; }
    .cp-dot-r { background: #FF5F57; }
    .cp-dot-y { background: #FFBD2E; }
    .cp-dot-g { background: #28CA41; }
    .cp-body { display: flex; min-height: 340px; }
    .cp-sidebar {
      width: 150px; background: #1B2333; flex-shrink: 0;
      padding: 8px 0;
    }
    .cp-nav-item {
      padding: 7px 14px; font-size: .68rem;
      color: rgba(255,255,255,.45); cursor: default;
      display: flex; align-items: center; gap: 7px;
    }
    .cp-nav-item.active { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
    .cp-nav-item.head { color: rgba(255,255,255,.25); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; padding-top: 12px; }
    .cp-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
    .cp-main { flex: 1; background: #F8F8F8; }
    .cp-main-head {
      background: #fff; border-bottom: 1px solid #E5E7EA;
      padding: 12px 16px;
    }
    .cp-breadcrumb { font-size: .65rem; color: #888; margin-bottom: 4px; }
    .cp-title { font-size: .85rem; font-weight: 700; color: #1B2333; }
    .cp-form { padding: 14px 16px; }
    .cp-field { margin-bottom: 12px; }
    .cp-label { font-size: .62rem; font-weight: 700; color: #555; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; }
    .cp-input {
      width: 100%; background: #fff; border: 1px solid #D5D9DC;
      border-radius: 4px; padding: 6px 10px;
      font-size: .75rem; color: #1B2333;
    }
    .cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
    .cp-stars { color: #F59E0B; font-size: .8rem; letter-spacing: .05em; }
    .cp-select {
      display: flex; align-items: center; justify-content: space-between;
      background: #fff; border: 1px solid #D5D9DC;
      border-radius: 4px; padding: 5px 10px;
      font-size: .72rem; color: #1B2333;
    }
    .cp-select::after { content: '▾'; color: #AAA; font-size: .6rem; }
    .cp-toolbar {
      display: flex; gap: 3px; margin-bottom: 8px;
      background: #fff; border: 1px solid #D5D9DC;
      border-radius: 4px 4px 0 0; padding: 5px 8px;
      flex-wrap: wrap; align-items: center;
    }
    .cp-tbtn {
      width: 22px; height: 22px; border-radius: 3px;
      background: #F0F0F0; display: flex; align-items: center;
      justify-content: center; font-size: .62rem; font-weight: 700; color: #555;
    }
    .cp-tbtn.active { background: #1B2333; color: #fff; }
    .cp-tsep { width: 1px; height: 16px; background: #DDD; margin: 0 2px; }
    .cp-editor {
      background: #fff; border: 1px solid #D5D9DC; border-top: none;
      border-radius: 0 0 4px 4px; padding: 10px;
      font-size: .7rem; color: #333; line-height: 1.65;
    }
    .cp-editor a { color: #2563EB; text-decoration: underline; }

    /* ══ VISUAL: ASSET BROWSER (tilted) ══ */
    .asset-scene {
      position: relative; height: 420px; width: 100%;
    }
    .asset-teal {
      position: absolute; right: -40px; bottom: -20px;
      width: 280px; height: 260px;
      background: linear-gradient(160deg, var(--teal) 0%, #0a8f85 100%);
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
      border-radius: 0 0 10px 0;
    }
    .asset-browser {
      position: absolute; top: 10px; left: -10px;
      width: 440px;
      background: #fff; border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,.2);
      border: 1px solid #DDE3E0;
      transform: rotate(-6deg);
      transform-origin: center center;
      overflow: hidden;
    }
    .ab-toolbar {
      background: #F5F5F5; padding: 8px 12px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid #E5E5E5;
    }
    .ab-btn {
      font-size: .65rem; color: #555; padding: 3px 8px;
      background: #fff; border: 1px solid #DDD; border-radius: 4px;
      display: flex; align-items: center; gap: 4px;
    }
    .ab-views { margin-left: auto; display: flex; gap: 4px; }
    .ab-view { width: 22px; height: 22px; background: #E8E8E8; border-radius: 3px; display:flex;align-items:center;justify-content:center;font-size:.7rem; }
    .ab-view.active { background: #1B2333; color:#fff; }
    .ab-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; padding: 8px;
    }
    .ab-thumb {
      aspect-ratio: 4/3; border-radius: 4px; overflow: hidden;
      position: relative; margin: 4px;
    }
    .ab-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
    .ab-name {
      font-size: .55rem; color: #666; padding: 3px 4px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    /* thumbnail colors matching Statamic's photos */
    .ab1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
    .ab2 { background: linear-gradient(135deg, #4a4e69 0%, #9a8c98 50%, #c9ada7 100%); }
    .ab3 { background: linear-gradient(135deg, #f72585 0%, #7209b7 50%, #3a0ca3 100%); }
    .ab4 { background: linear-gradient(135deg, #06d6a0 0%, #118ab2 50%, #073b4c 100%); }
    .ab5 { background: linear-gradient(135deg, #1d1d2e 0%, #2b2d42 100%); }
    .ab6 { background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #ff9ff3 100%); }

    /* ══ VISUAL: BARD EDITOR ══ */
    .bard-wrap {
      position: relative;
    }
    .bard {
      border-radius: 10px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.12);
      border: 1px solid #DDE3E0;
      background: #fff;
      position: relative;
    }
    .bard-toolbar {
      background: #fff; border-bottom: 1px solid #E5E5E5;
      padding: 7px 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    }
    .bard-btn {
      padding: 3px 6px; border-radius: 3px; background: #F0F0F0;
      font-size: .68rem; font-weight: 700; color: #555; min-width: 24px;
      display: flex; align-items: center; justify-content: center;
    }
    .bard-sep { width: 1px; height: 16px; background: #DDD; margin: 0 2px; }
    .bard-body { padding: 20px 24px; min-height: 260px; position: relative; }
    .bard-article-title {
      font-size: .9rem; font-weight: 700; color: #111; margin-bottom: 10px; line-height: 1.4;
    }
    .bard-p { font-size: .72rem; color: #444; line-height: 1.7; margin-bottom: 8px; }
    .bard-p a { color: #2563EB; text-decoration: underline; }
    .bard-add-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 50%;
      border: 1.5px solid #DDD; background: #fff;
      font-size: .9rem; color: #888; cursor: default;
      margin: 8px 0;
    }
    /* floating dropdown */
    .bard-dropdown {
      position: absolute; right: 20px; top: 60px;
      background: #fff; border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,.15);
      border: 1px solid #E5E5E5;
      min-width: 160px; overflow: hidden;
      z-index: 5;
    }
    .bard-dd-item {
      padding: 8px 14px; font-size: .72rem; color: #333;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid #F5F5F5;
    }
    .bard-dd-item:last-child { border-bottom: none; }
    .bard-dd-item:first-child { background: #F7F7F7; }
    .bard-dd-icon {
      width: 18px; height: 18px; background: #E5E7EB;
      border-radius: 3px; flex-shrink: 0;
    }

    /* ══ VISUAL: AWARD BADGE ══ */
    .award-scene {
      display: flex; align-items: center; justify-content: center;
      padding: 2rem 0;
    }
    .award {
      width: 280px; height: 280px; border-radius: 50%;
      background: linear-gradient(145deg, #4c1d95 0%, #5b21b6 40%, #7c3aed 70%, #6d28d9 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 20px 60px rgba(109,40,217,.3), 0 0 0 6px rgba(109,40,217,.12);
      position: relative; overflow: hidden;
    }
    .award::before {
      content: '';
      position: absolute; inset: 10px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
    }
    .award::after {
      content: '';
      position: absolute; inset: 16px;
      border-radius: 50%;
      border: 1px dashed rgba(255,255,255,.08);
    }
    .award-inner { text-align: center; position: relative; z-index: 1; }
    .award-top {
      font-size: .55rem; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      margin-bottom: .3rem;
    }
    .award-trophy { font-size: 2rem; margin-bottom: .3rem; }
    .award-main {
      font-size: .6rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.5);
      margin-bottom: .2rem;
    }
    .award-name {
      font-size: .7rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.85);
      margin-bottom: .3rem;
    }
    .award-years {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem; color: #fff; letter-spacing: .05em;
    }

    /* ══ VISUAL: TERMINAL (stacked) ══ */
    .term-scene { position: relative; }
    .term-back {
      position: absolute; top: 20px; right: -20px;
      width: calc(100% - 20px); height: calc(100% - 20px);
      border-radius: 10px; overflow: hidden;
      background: #1e3a5c;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
    }
    .term-back-bar {
      background: rgba(0,0,0,.2); padding: 9px 14px;
      display: flex; align-items: center; gap: 6px;
    }
    .term-back-body { padding: 16px; }
    .term-back-line { height: 10px; background: rgba(255,255,255,.12); border-radius: 3px; margin-bottom: 8px; }
    .term-back-line.s { width: 60%; }
    .term-front {
      position: relative; z-index: 2;
      border-radius: 10px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }
    .term-bar {
      background: #2D2D2D; padding: 9px 14px;
      display: flex; align-items: center; gap: 6px;
    }
    .term-body {
      background: #1B1B1B; padding: 20px 22px;
      font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
      font-size: .73rem; line-height: 1.65; min-height: 240px;
    }
    .t-line { display: flex; align-items: baseline; gap: .3rem; flex-wrap: wrap; }
    .t-dir { color: #4ADE80; }
    .t-branch { color: #A78BFA; }
    .t-x { color: #F87171; }
    .t-cmd { color: #E5E7EB; }
    .t-check { color: #4ADE80; }
    .t-path { color: #60A5FA; padding-left: .5rem; }
    .t-blank { height: .5rem; }
    .t-success { color: #34D399; font-weight: 600; margin-top: .5rem; }

    /* ══ TESTIMONIAL ══ */
    .testimonial {
      padding: 80px 0;
      background: linear-gradient(120deg, #fff7f5 0%, #fffbf9 45%, #f9fff9 100%);
      position: relative;
    }
    .testimonial::before,
    .testimonial::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 80px;
      pointer-events: none;
      z-index: 1;
    }
    .testimonial::before {
      top: 0;
      background: linear-gradient(to bottom, #ffffff, transparent);
    }
    .testimonial::after {
      bottom: 0;
      background: linear-gradient(to top, #ffffff, transparent);
    }
    .test-in {
      max-width: 1200px; margin: 0 auto; padding: 0 3rem;
      display: grid; grid-template-columns: 260px 1fr;
      gap: 100px; align-items: center;
    }
    .test-photo-wrap { position: relative; }
    .test-photo {
      width: 260px; height: 320px; border-radius: 12px;
      background: linear-gradient(175deg, #D1D5DB 0%, #9CA3AF 40%, #374151 100%);
      overflow: hidden; position: relative;
      box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }
    .test-figure {
      position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 180px; height: 260px;
      background: linear-gradient(180deg, #B0B8C4 0%, #6B7280 30%, #1F2937 100%);
      border-radius: 50% 50% 0 0;
      display: flex; align-items: flex-start; justify-content: center;
      padding-top: 24px;
    }
    .test-head {
      width: 72px; height: 72px; border-radius: 50%;
      background: #CDD2D8;
      box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }
    .test-body { }
    .test-credit {
      font-size: .82rem; color: var(--lt);
      margin-bottom: 1rem;
    }
    .test-credit strong { color: var(--ink); font-weight: 600; }
    .test-quote {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      font-style: italic; line-height: 1.5;
      color: var(--ink); margin-bottom: 2rem;
    }
    .test-quote::before {
      content: '\201C';
      font-size: 2.5rem; line-height: 0; vertical-align: -.65rem;
      color: var(--ink); margin-right: .05em; font-style: normal; opacity: .5;
    }
    .test-logo {
      display: flex; align-items: center; gap: .6rem;
    }
    .test-logo-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: #15171A;
      display: flex; align-items: center; justify-content: center;
    }
    .test-logo-icon svg { width: 16px; height: 16px; }
    .test-logo-name {
      font-size: 1rem; font-weight: 700; color: var(--ink);
    }

    /* ══ VETERANS ══ */
    .vets { padding: 120px 0; }
    .vets-in {
      max-width: 1200px; margin: 0 auto; padding: 0 3rem;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .vets-photo {
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.14);
      height: 400px;
      background: linear-gradient(160deg, #0f1117 0%, #1a1f35 40%, #2d3561 70%, #1e3a5f 100%);
      display: flex; align-items: flex-end; justify-content: flex-start;
      position: relative;
    }
    .vets-photo-overlay {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 40%, rgba(59,130,246,.25) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 70%, rgba(139,92,246,.2) 0%, transparent 50%);
    }
    .vets-photo-person {
      position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 220px; height: 320px;
      background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.4) 100%);
      display: flex; align-items: flex-start; justify-content: center;
      padding-top: 30px;
    }
    .vets-silhouette {
      width: 120px; height: 160px;
      background: linear-gradient(180deg, #D1D5DB 0%, #9CA3AF 30%, #374151 100%);
      border-radius: 50% 50% 0 0;
      display: flex; align-items: flex-start; justify-content: center;
      padding-top: 10px;
    }
    .vets-head { width: 50px; height: 50px; border-radius: 50%; background: #E5E7EB; }
    .vets-text h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem;
    }
    .vets-text p {
      font-size: 1rem; color: var(--mid);
      line-height: 1.8; margin-bottom: 1rem;
    }
    .vets-text p strong { color: var(--ink); }

    /* ══ FOOTER ══ */
    footer {
      background: #0F1923; padding: 60px 0 32px;
    }
    .footer-in {
      max-width: 1200px; margin: 0 auto; padding: 0 3rem;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .f-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem; color: #fff; margin-bottom: .75rem;
    }
    .f-sub { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.6; }
    .f-col-title {
      font-size: .7rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.3);
      margin-bottom: .75rem;
    }
    .f-col ul { list-style: none; }
    .f-col ul li { margin-bottom: .4rem; }
    .f-col ul a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .15s; }
    .f-col ul a:hover { color: rgba(255,255,255,.85); }
    .f-bottom {
      max-width: 1200px; margin: 0 auto; padding: 24px 3rem 0;
      display: flex; justify-content: space-between;
    }
    .f-copy { font-size: .78rem; color: rgba(255,255,255,.2); }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .15s; }
    .footer-links a:hover { color: rgba(255,255,255,.8); }
    @media (max-width: 480px) {
      .f-bottom { flex-direction: column; gap: .75rem; align-items: flex-start; }
    }
    @media (max-width: 768px) {
      .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
      .hero p { font-size: 1rem; }
      .test-in { padding: 0 1.25rem; }
      .sec-text--outer-left, .sec-text--outer-right {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }
      .sec-text h2 { font-size: clamp(2rem, 5.5vw, 2.6rem); }
      .sec-text.xl h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
      .cp-body { flex-direction: column; }
      .cp-sidebar { width: 100%; display: flex; flex-wrap: wrap; padding: 4px; }
      .cp-nav-item { padding: 4px 8px; font-size: .6rem; }
      .footer-in { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .asset-browser { width: 280px; }
      .asset-scene { height: 280px; }
      .test-in { grid-template-columns: 1fr; }
      .test-photo { width: 200px; height: 240px; margin: 0 auto; }
    }

    /* ══ SEKTION VISUAL ══ */
    .sec-visual {
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .sec-visual-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,.12);
    }

    /* ══ REFERENZEN ══ */
    .ref-sec { background: var(--bg2); }
    .ref-header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 0 2rem;
    }
    .ref-header h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      color: var(--ink);
    }
    .ref-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      align-items: stretch;
    }
    .ref-card {
      background: var(--bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
      transition: transform .2s, box-shadow .2s;
      display: flex;
      flex-direction: column;
    }
    .ref-card:first-child {
      grid-row: span 2;
    }
    .ref-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.13);
    }
    .ref-card-img {
      overflow: hidden;
      aspect-ratio: 16/10;
    }
    .ref-card:first-child .ref-card-img {
      aspect-ratio: unset;
      flex: 1;
      min-height: 280px;
    }
    .ref-img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .ref-card-body { padding: 1.5rem; }
    .ref-cat {
      font-size: .72rem; font-weight: 600;
      color: var(--green); text-transform: uppercase; letter-spacing: .08em;
    }
    .ref-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.25rem; color: var(--ink);
      margin: .4rem 0 .5rem;
    }
    .ref-text { font-size: .9rem; color: var(--mid); line-height: 1.6; }

    /* ══ KONTAKT ══ */
    .kontakt-sec {
      padding: 100px 0;
      background: var(--ink);
    }
    .kontakt-in {
      max-width: 1100px; margin: 0 auto; padding: 0 3rem;
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 80px; align-items: start;
    }
    .kontakt-text h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      color: #fff; margin-bottom: 1rem;
    }
    .kontakt-text p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; }
    .kontakt-mail a { color: var(--green); font-weight: 500; }
    .kontakt-mail { margin-top: 1.5rem; }
    .kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .kf-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .kf-field { display: flex; flex-direction: column; gap: .4rem; }
    .kf-field label { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .04em; }
    .kf-field input,
    .kf-field textarea {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      padding: .75rem 1rem;
      color: #fff; font-family: inherit; font-size: .95rem;
      outline: none; transition: border-color .2s;
    }
    .kf-field input::placeholder,
    .kf-field textarea::placeholder { color: rgba(255,255,255,.25); }
    .kf-field input:focus,
    .kf-field textarea:focus { border-color: var(--green); }
    .kf-field textarea { resize: vertical; min-height: 130px; }
    .kf-footer { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
    .kf-status { font-size: .875rem; }
    .kf-ok  { color: var(--green); }
    .kf-err { color: #f87171; }

    .legal-page { padding: 130px 2rem 90px; }
    .legal-inner { max-width: 720px; margin: 0 auto; }
    .legal-back {
      display: inline-block; margin-bottom: 2rem;
      font-size: .85rem; color: var(--mid); font-weight: 500;
    }
    .legal-back:hover { color: var(--ink); }
    .legal-inner h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--ink); margin-bottom: 2rem;
    }
    .legal-inner h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.3rem; color: var(--ink);
      margin: 2rem 0 .75rem;
    }
    .legal-inner p, .legal-inner li { font-size: .95rem; color: var(--mid); line-height: 1.75; }
    .legal-inner ul { margin: .5rem 0 1rem 1.25rem; }
    .legal-inner a { color: var(--teal); text-decoration: underline; }
    @media (max-width: 768px) {
      .legal-page { padding: 110px 1.25rem 70px; }
      .kf-row { grid-template-columns: 1fr; }
    }

    .anchor { position: relative; display: block; height: 0; }
    .anchor#leistungen, .anchor#ueber-mich, .anchor#referenzen {
      scroll-margin-top: 58px;
    }
    .vets-text ul { list-style: none; margin-top: .5rem; margin-bottom: 1rem; }
    .vets-text ul li {
      font-size: 1rem; color: var(--mid);
      padding: .35rem 0 .35rem 1.4rem; position: relative;
    }
    .vets-text ul li::before {
      content: "✓"; position: absolute; left: 0;
      color: var(--green); font-weight: 700; font-size: .9rem;
    }

    /* ══ UTILITY KLASSEN ══ */
    .preise {
      color: var(--green);
      font-weight: 700;
    }
    .kleingedrucktes {
      font-size: .75rem;
      color: var(--lt);
      line-height: 1.5;
    }

    @media (max-width: 480px) {
      .wrap, .test-in, .vets-in { padding: 0 1rem; }
      .sec-text--outer-left, .sec-text--outer-right {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .hero { padding: 100px 1rem 50px; }
      .footer-in { grid-template-columns: 1fr; }
      .ab-grid { grid-template-columns: repeat(2, 1fr); }
      .ref-grid { padding: 0 1rem; }
    }
  

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .ref-grid { grid-template-columns: 1fr; padding: 0 2rem; }
      .kontakt-in { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 2rem; }
      .sec-grid, .sec-grid--vis-left, .sec-grid.flip,
      .test-in, .vets-in, .footer-in {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 48px;
      }
      .sec-grid.flip > * { direction: ltr; }
      .sec-grid--vis-left .sec-text { order: 1; }
      .sec-grid--vis-left .sec-visual { order: 2; }
      .nav-links { display: none; }
      .sec { padding: 70px 0; }
      .hero { padding: 110px 1.5rem 60px; }
      .sec-text.xl h2 { font-size: clamp(2.2rem, 6vw, 3.2rem); }
      .asset-scene { height: 320px; }
      .asset-browser { width: 340px; }
      .term-back { top: 14px; right: -12px; }
      .vets-photo { display: none; }
      .sec-text--outer-left, .sec-text--outer-right {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

