/* ============================================================
   Pelkmann Group – pelkmann.css (kombiniert)
   Enthält: Pelkmann Group + PELQUANTIS
   Einbindung: Child-Theme functions.php (bereits konfiguriert)
   Google Fonts: Inter + Cormorant Garamond (via functions.php)
   ============================================================ */

/* ── PELKMANN GROUP ── */
:root {
    color-scheme: light only;
    --deep:       #0D1520;
    --navy:       #1B2A4A;
    --orange:     #D4601A;
    --olive:      #4A5A3A;
    --gold:       #C9A84C;
    --off-white:  #F7F6F2;
    --grey:       #6B7280;
    --grey-light: #E5E4DF;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: #F7F6F2;
    color: #0D1520;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    background: rgba(13,21,32,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
  }

  /* Group P logo SVG inline */
    .nav-logo-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.9;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
  }

  .nav-logo-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: #F7F6F2;
  }

  .nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A84C;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(247,246,242,0.45);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #F7F6F2; }

  .nav-contact {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #C9A84C;
    border: 1px solid rgba(201,168,76,0.35);
    padding: 0.55rem 1.2rem;
    transition: background 0.2s, color 0.2s;
  }

  .nav-contact:hover {
    background: rgba(201,168,76,0.1);
    color: #E8D5A3;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: #0D1520;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 6rem;
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid texture */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }

  /* Animated gold accent — the signature */
  .hero-accent {
    position: absolute;
    top: 0;
    right: 18%;
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, transparent, #C9A84C 30%, rgba(201,168,76,0.3) 70%, transparent);
    animation: accentDrop 2s ease forwards 0.5s;
  }

  @keyframes accentDrop {
    to { height: 65vh; }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    color: #F7F6F2;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 1s;
  }

  .hero-headline em {
    font-style: italic;
    color: #C9A84C;
  }

  .hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.3s;
  }

  .hero-tagline {
    font-size: 0.95rem;
    color: rgba(247,246,242,0.45);
    font-weight: 300;
    line-height: 1.7;
    max-width: 420px;
  }

  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .hero-scroll span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.5);
    writing-mode: vertical-rl;
  }

  .hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite 2s;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── PHILOSOPHY ── */
  .philosophy {
    background: #F7F6F2;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .phil-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .phil-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: #0D1520;
    margin-bottom: 2rem;
  }

  .phil-text {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.85;
    font-weight: 300;
  }

  .phil-values {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .phil-value {
    padding: 1.8rem 0;
    border-bottom: 1px solid #E5E4DF;
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
  }

  .phil-value:first-child { border-top: 1px solid #E5E4DF; }

  .phil-value-glyph {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #C9A84C;
    line-height: 1.2;
  }

  .phil-value h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #0D1520;
    margin-bottom: 0.35rem;
  }

  .phil-value p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── ENTITIES / TRIPTYCH ── */
  .entities-header {
    background: #F7F6F2;
    padding: 0 4rem 3rem;
  }

  .entities-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.8rem;
    font-weight: 500;
  }

  .entities-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #0D1520;
  }

  /* Triptych */
  .triptych {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 580px;
  }

  .entity-panel {
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: flex 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    min-height: 580px;
  }

  /* PELQUANTIS */
  .entity-panel.pelquantis {
    background: #243560;
  }

  .entity-panel.pelquantis::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.2), transparent 60%);
    pointer-events: none;
  }

  /* PELTRION */
  .entity-panel.peltrion {
    background: #3D2210;
    border-left: 1px solid rgba(212,96,26,0.3);
    border-right: 1px solid rgba(212,96,26,0.3);
  }

  .entity-panel.peltrion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(212,96,26,0.25), transparent 60%);
    pointer-events: none;
  }

  /* PELTERRAI */
  .entity-panel.pelterrai {
    background: #253020;
  }

  .entity-panel.pelterrai::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.1), transparent 60%);
    pointer-events: none;
  }

  /* Status badge */
  .entity-status {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
  }

  .entity-status.active {
    color: rgba(201,168,76,0.9);
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.07);
  }

  .entity-status.soon {
    color: rgba(247,246,242,0.25);
    border: 1px solid rgba(247,246,242,0.1);
    background: rgba(247,246,242,0.04);
  }

  /* Panel icon area */
      .entity-icon {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
  }

  /* Content */
      .entity-content {
    position: relative;
    z-index: 1;
    margin-top: 7rem;
  }

  .entity-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #F7F6F2;
    margin-bottom: 0.4rem;
  }

  .entity-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .pelquantis .entity-tagline { color: rgba(201,168,76,0.7); }
  .peltrion  .entity-tagline  { color: rgba(212,96,26,0.6); }
  .pelterrai .entity-tagline  { color: rgba(201,168,76,0.6); }

  .entity-description {
    font-size: 0.88rem;
    color: rgba(247,246,242,0.5);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 320px;
  }

  .entity-divider {
    width: 32px;
    height: 1px;
    margin-bottom: 1.5rem;
  }

  .pelquantis .entity-divider { background: rgba(201,168,76,0.5); }
  .peltrion   .entity-divider { background: rgba(212,96,26,0.4); }
  .pelterrai  .entity-divider { background: rgba(201,168,76,0.4); }

  /* Sub-project (PELTERRAI → FeWo) */
  .entity-project {
    background: rgba(247,246,242,0.05);
    border: 1px solid rgba(201,168,76,0.18);
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
  }

  .entity-project-label {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }

  .entity-project-name {
    font-size: 0.88rem;
    color: rgba(247,246,242,0.75);
    font-weight: 400;
    margin-bottom: 0.2rem;
  }

  .entity-project-desc {
    font-size: 0.78rem;
    color: rgba(247,246,242,0.35);
    font-weight: 300;
  }

  /* CTA links */
  .entity-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s;
  }

  .entity-link::after { content: '→'; }
  .entity-link:hover { gap: 0.8rem; }

  .pelquantis .entity-link { color: rgba(201,168,76,0.8); }
  .pelterrai  .entity-link { color: rgba(201,168,76,0.7); }

  .entity-link-disabled {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(247,246,242,0.2);
    cursor: default;
  }

  /* Vertical brand label */
  .entity-vertical-label {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.12;
    color: #F7F6F2;
  }

  /* ── LEADERSHIP ── */
  .leadership {
    background: #0D1520;
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .leadership-image-wrap {
    position: relative;
    overflow: hidden;
    height: 460px;
  }

  .leadership-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(13,21,32,0.5));
    pointer-events: none;
  }

  .leadership-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: grayscale(15%);
  }

  .leadership-content {}

  .leadership-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .leadership-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #F7F6F2;
    line-height: 1.15;
    margin-bottom: 1.8rem;
  }

  .leadership-text {
    font-size: 0.92rem;
    color: rgba(247,246,242,0.5);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .leadership-name-block {
    padding-top: 2rem;
    border-top: 1px solid rgba(247,246,242,0.1);
  }

  .leadership-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #F7F6F2;
    margin-bottom: 0.3rem;
  }

  .leadership-role {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
  }

  /* ── CONTACT ── */
  .contact {
    background: #F7F6F2;
    padding: 8rem 4rem;
    text-align: center;
  }

  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .contact-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #0D1520;
    margin: 0 auto 1.5rem;
    max-width: 700px;
  }

  .contact-headline em {
    font-style: italic;
    color: #C9A84C;
  }

  .contact-text {
    font-size: 0.95rem;
    color: #6B7280;
    max-width: 440px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
  }

  .contact-btn {
    display: inline-block;
    background: #0D1520;
    color: #F7F6F2;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s;
  }

  .contact-btn:hover { background: #1B2A4A; }

  /* ── FOOTER ── */
  footer {
    background: #0D1520;
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
  }

  .footer-left {}

  .footer-brand-name {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(247,246,242,0.6);
  }

  .footer-domain {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(201,168,76,0.45);
    margin-top: 0.2rem;
  }

  .footer-center {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
  }

  .footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .footer-right {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
  }

  .footer-right a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-right a:hover { color: rgba(247,246,242,0.5); }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }

    .hero { padding: 0 1.5rem 4rem; }
    .philosophy { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .entities-header { padding: 0 1.5rem 2rem; }
    .triptych { grid-template-columns: 1fr; min-height: auto; }
    .entity-panel { min-height: 360px; }
    .leadership { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .leadership-image-wrap { height: 320px; }
    .contact { padding: 5rem 1.5rem; }
    footer { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 1.5rem; text-align: center; }
    .footer-right { justify-content: center; }
    .footer-center { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-accent { animation: none; height: 65vh; }
    .hero-eyebrow, .hero-headline, .hero-foot { animation: none; opacity: 1; }
    .reveal { opacity: 1; transform: none; }
  }

/* ── PELQUANTIS ── */
:root {
    color-scheme: light only;
    --navy: #1B2A4A !important;
    --navy-deep: #0D1520 !important;
    --gold: #C9A84C !important;
    --gold-light: #E8D5A3 !important;
    --off-white: #F7F6F2 !important;
    --grey: #6B7280 !important;
    --grey-light: #E5E4DF !important;
    --white: #FFFFFF !important;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif !important;
    background: #F7F6F2 !important;
    color: #1B2A4A !important;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(247,246,242,0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #E5E4DF !important;
  }

  .nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-brand-name {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: #1B2A4A !important;
  }

  .nav-brand-sub {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #C9A84C !important;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #6B7280 !important;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: #1B2A4A !important; }

  .nav-cta {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #F7F6F2 !important;
    background: #1B2A4A !important;
    padding: 0.6rem 1.4rem;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: #0D1520 !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    background: #F7F6F2 !important;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem 6rem 4rem;
    position: relative;
  }

  /* Signature element: animated vertical line */
  .hero-left::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, #C9A84C, transparent) !important;
    animation: lineGrow 1.8s ease forwards 0.3s;
  }

  @keyframes lineGrow {
    to { height: 40vh; }
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 1.5rem;
    font-weight: 500 !important;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300 !important;
    line-height: 1.05;
    color: #1B2A4A !important;
    margin-bottom: 2rem;
  }

  .hero-headline em {
    font-style: italic !important;
    color: #C9A84C !important;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: #6B7280 !important;
    max-width: 420px;
    margin-bottom: 3rem;
    font-weight: 300 !important;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    display: inline-block;
    background: #1B2A4A !important;
    color: #F7F6F2 !important;
    text-decoration: none;
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500 !important;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: #0D1520 !important; }

  .btn-ghost {
    display: inline-block;
    color: #1B2A4A !important;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500 !important;
    border-bottom: 1px solid #C9A84C !important;
    padding-bottom: 2px;
  }

  .hero-right {
    background: #1B2A4A !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.15), transparent 60%) !important;
  }

  .hero-manifesto {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .hero-manifesto-quote {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300 !important;
    font-style: italic !important;
    color: #F7F6F2 !important;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .hero-manifesto-quote span {
    color: #C9A84C !important;
  }

  .hero-manifesto-attr {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.4) !important;
  }

  /* ── SECTION BASE ── */
  section {
    padding: 7rem 4rem;
  }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C !important;
    margin-bottom: 1rem;
    font-weight: 500 !important;
  }

  .section-headline {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300 !important;
    line-height: 1.15;
    color: #1B2A4A !important;
    margin-bottom: 1.5rem;
  }

  .section-lead {
    font-size: 1rem;
    color: #6B7280 !important;
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300 !important;
  }

  /* ── POSITIONING ── */
  .positioning {
    background: #1B2A4A !important;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
  }

  .positioning .section-label { color: rgba(201,168,76,0.8) !important; }
  .positioning .section-headline { color: #F7F6F2 !important; }
  .positioning .section-lead { color: rgba(247,246,242,0.6) !important; }

  .positioning-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pillar {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(247,246,242,0.08) !important;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .pillar:first-child { border-top: 1px solid rgba(247,246,242,0.08) !important; }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem;
    font-weight: 300 !important;
    color: #C9A84C !important;
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
  }

  .pillar-content h4 {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F7F6F2 !important;
    margin-bottom: 0.4rem;
    font-weight: 500 !important;
  }

  .pillar-content p {
    font-size: 0.9rem;
    color: rgba(247,246,242,0.55) !important;
    line-height: 1.65;
    font-weight: 300 !important;
  }

  /* ── LEISTUNGEN ── */
  .leistungen {
    background: #F7F6F2 !important;
  }

  .leistungen-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
  }

  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #E5E4DF !important;
  }

  .leistung-card {
    background: #F7F6F2 !important;
    padding: 2.5rem;
    transition: background 0.2s;
    cursor: default;
  }

  .leistung-card:hover {
    background: #FFFFFF !important;
  }

  .leistung-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .leistung-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid #C9A84C !important;
    transform: rotate(45deg);
  }

  .leistung-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: #C9A84C !important;
    transform: rotate(45deg);
    opacity: 0.3;
  }

  .leistung-card h3 {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B2A4A !important;
    margin-bottom: 0.8rem;
    font-weight: 600 !important;
  }

  .leistung-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C9A84C !important;
    border: 1px solid #C9A84C !important;
    padding: 0.2rem 0.5rem;
    margin-bottom: 1rem;
  }

  .leistung-card p {
    font-size: 0.88rem;
    color: #6B7280 !important;
    line-height: 1.7;
    font-weight: 300 !important;
  }

  .leistung-items {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .leistung-items span {
    font-size: 0.82rem;
    color: #6B7280 !important;
    padding-left: 0.8rem;
    position: relative;
    font-weight: 300 !important;
  }

  .leistung-items span::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #C9A84C !important;
  }

  /* ── MODELL ── */
  .modell {
    background: #0D1520 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .modell .section-headline { color: #F7F6F2 !important; }
  .modell .section-lead { color: rgba(247,246,242,0.55) !important; }

  .modell-visual {
    position: relative;
    height: 380px;
  }

  .hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #1B2A4A !important;
    border: 2px solid #C9A84C !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .hub-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C !important;
    text-align: center;
    font-weight: 600 !important;
  }

  .spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    width: 130px;
    height: 1px;
    background: linear-gradient(to right, #C9A84C, rgba(201,168,76,0.1)) !important;
  }

  .spoke-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(27,42,74,0.6) !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .spoke-node span {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.7) !important;
    font-weight: 400 !important;
    line-height: 1.3;
  }

  /* ── ZIELGRUPPEN ── */
  .zielgruppen {
    background: #F7F6F2 !important;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .zg-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .zg-card {
    background: #FFFFFF !important;
    padding: 2rem;
    border-left: 3px solid transparent !important;
    transition: border-color 0.2s;
  }

  .zg-card:hover {
    border-left-color: #C9A84C !important;
  }

  .zg-card h4 {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1B2A4A !important;
    margin-bottom: 0.5rem;
    font-weight: 600 !important;
  }

  .zg-card p {
    font-size: 0.88rem;
    color: #6B7280 !important;
    line-height: 1.65;
    font-weight: 300 !important;
  }

  /* ── ÜBER ── */
  .ueber {
    background: #1B2A4A !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .ueber-content .section-headline { color: #F7F6F2 !important; }
  .ueber-content .section-lead { color: rgba(247,246,242,0.6) !important; }

  .ueber-name {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(247,246,242,0.12) !important;
  }

  .ueber-name-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.8rem;
    font-weight: 300 !important;
    color: #F7F6F2 !important;
    margin-bottom: 0.3rem;
  }

  .ueber-name-role {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C !important;
  }

  .ueber-image-wrap {
    position: relative;
    overflow: hidden;
    height: 480px;
  }

  .ueber-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,21,32,0.35), transparent 60%) !important;
  }

  .ueber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* ── KONTAKT ── */
  .kontakt {
    background: #F7F6F2 !important;
    text-align: center;
    padding: 8rem 4rem;
  }

  .kontakt .section-headline {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    max-width: 700px;
    margin: 0 auto 1.5rem;
  }

  .kontakt .section-lead {
    margin: 0 auto 3rem;
    max-width: 480px;
    text-align: center;
  }

  .kontakt-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    background: #0D1520 !important;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-brand {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.3) !important;
  }

  .footer-brand strong {
    color: rgba(247,246,242,0.7) !important;
  }

  .footer-group {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.5) !important;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247,246,242,0.25) !important;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(247,246,242,0.6) !important; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 5rem 1.5rem 3rem; }
    .hero-right { min-height: 300px; padding: 3rem 1.5rem; }

    section { padding: 4rem 1.5rem; }

    .positioning,
    .leistungen-header,
    .zielgruppen,
    .ueber,
    .modell { grid-template-columns: 1fr; gap: 2.5rem; }

    .leistungen-grid { grid-template-columns: 1fr; }

    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* Scroll fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; }
    .hero-left::before { animation: none; height: 40vh; }
  }
