:root {
    --bg: #FFFFFF;
    --bg-alt: #F7F1F2;
    --bg-tint: #F2E8EA;
    --sage: #A04356;          /* mapped to brand red */
    --sage-deep: #7B1F30;     /* deep bordeaux from logo */
    --sage-soft: #F0DCDF;
    --moss: #2A3F6E;          /* deep navy from logo */
    --ink: #1A2540;
    --ink-2: #2D3A56;
    --muted: #6B6F7A;
    --muted-2: #9AA0AC;
    --line: #E6E1E2;
    --line-2: #D2CACC;
    --accent: #7B1F30;
    --accent-soft: #F0DCDF;
    --gold: #C9A24A;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; height: auto; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font-family: inherit; cursor: pointer; }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ── Topbar utility ──────────────────────────── */
  .util {
    background: var(--moss);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    padding: 8px 0;
  }
  .util-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
  .util .left, .util .right { display: flex; align-items: center; gap: 22px; }
  .util .pulse { display: inline-flex; align-items: center; gap: 8px; }
  .util .pulse::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #95C695;
    box-shadow: 0 0 0 0 rgba(149,198,149,0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(149,198,149,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(149,198,149,0); }
    100% { box-shadow: 0 0 0 0 rgba(149,198,149,0); }
  }
  .util a:hover { color: white; }

  /* ── Header ───────────────────────────────── */
  .header {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 18px 0;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand img { height: 52px; width: auto; }
  .brand-text {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-left: 1px solid var(--line);
    padding-left: 14px;
    line-height: 1.3;
  }
  .brand-text b {
    display: block;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 12px;
  }
  .nav-list {
    display: flex;
    gap: 4px;
    justify-content: center;
  }
  .nav-list a {
    display: block;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 999px;
    transition: background .18s, color .18s;
  }
  .nav-list a:hover { background: var(--bg-alt); color: var(--sage-deep); }
  .header-actions { display: flex; align-items: center; gap: 14px; }
  .header-phone {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  /* ── Mobile-Nav Umschalter (Hamburger) ─────── */
  .nav-toggle {
    display: none;            /* nur auf Mobil sichtbar, s. Media Query */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0 11px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: var(--bg);
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Buttons ──────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14.5px;
    transition: all .2s;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
  }
  .btn-primary { background: var(--moss); color: white; }
  .btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
  .btn-outline {
    border-color: var(--line-2);
    color: var(--ink);
    background: transparent;
  }
  .btn-outline:hover { background: var(--bg-alt); border-color: var(--ink); }
  .btn-ghost {
    color: var(--sage-deep);
    background: var(--sage-soft);
  }
  .btn-ghost:hover { background: var(--sage); color: white; }
  .btn .arrow { transition: transform .2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ── Hero ─────────────────────────────────── */
  .hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 600;
  }
  .hero-eyebrow .line { flex-shrink: 0; height: 1px; width: 36px; background: var(--sage); }
  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(56px, 6.4vw, 92px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    text-wrap: balance;
  }
  .hero h1 i {
    font-style: italic;
    color: var(--sage-deep);
    font-weight: 400;
  }
  .hero-lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
  .hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-trust .trust-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--sage-soft);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-trust .trust-text {
    font-size: 13px;
    line-height: 1.3;
  }
  .hero-trust .trust-text b {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
  }
  .hero-trust .trust-text small {
    color: var(--muted);
    font-size: 12px;
  }

  /* Hero visual: stacked elements with circular logo medallion */
  .hero-visual {
    position: relative;
    aspect-ratio: 5 / 5.6;
    width: 100%;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    border-radius: 280px 280px 24px 24px;
    overflow: hidden;
    background: var(--bg-alt);
  }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; }
  .hero-medallion {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: var(--moss);
    color: white;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 18px;
    animation: spin 30s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero-medallion svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
  }
  .hero-medallion .center {
    position: relative;
    z-index: 2;
    background: var(--gold);
    color: var(--moss);
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 500;
    animation: spin-back 30s linear infinite;
  }
  @keyframes spin-back { to { transform: rotate(-360deg); } }
  .hero-floating-card {
    position: absolute;
    top: 32px;
    right: -20px;
    background: white;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
    border: 1px solid var(--line);
    display: flex;
    gap: 14px;
    align-items: center;
    max-width: 240px;
  }
  .hero-floating-card .ico {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--sage-soft);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .hero-floating-card .text {
    font-size: 12.5px;
    line-height: 1.35;
    color: var(--ink);
  }
  .hero-floating-card .text b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; font-size: 13px; }

  /* ── KPI band ─────────────────────────────── */
  .kpi {
    background: var(--bg-tint);
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .kpi-item {
    padding: 0 28px;
    border-right: 1px solid var(--line-2);
  }
  .kpi-item:first-child { padding-left: 0; }
  .kpi-item:last-child { padding-right: 0; border-right: none; }
  .kpi-num {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.95;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
  .kpi-num small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.4em;
    color: var(--sage-deep);
    font-weight: 600;
    margin-left: 4px;
    letter-spacing: 0.05em;
    vertical-align: 4px;
  }
  .kpi-label {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
    max-width: 220px;
  }

  /* ── About / Werte ──────────────────────── */
  .werte {
    padding: 120px 0;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    margin-bottom: 72px;
    align-items: end;
  }
  .section-head .num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--sage-deep);
    margin-bottom: 16px;
    display: block;
  }
  .section-head .label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .section-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .section-head h2 i { color: var(--sage-deep); }
  .section-head .lede {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
  }

  .werte-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  .werte-card {
    grid-column: span 4;
    padding: 36px 32px 32px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
  }
  .werte-card:hover { background: white; border-color: var(--line-2); box-shadow: 0 18px 40px -28px rgba(0,0,0,0.15); }
  .werte-card .num-badge {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px dashed var(--sage);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
  }
  .werte-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 10px;
    color: var(--ink);
  }
  .werte-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-top: auto;
  }
  .werte-card.feature {
    grid-column: span 12;
    background: var(--moss);
    color: white;
    border-color: var(--moss);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    min-height: auto;
    padding: 48px 56px;
  }
  .werte-card.feature .feat-content { flex: 1; }
  .werte-card.feature h3 { color: white; font-size: 38px; }
  .werte-card.feature p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 540px;
    margin-top: 14px;
  }
  .werte-card.feature .num-badge { border-color: rgba(255,255,255,0.3); color: var(--gold); }
  .werte-card.feature .feat-vis {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--sage-deep);
    flex-shrink: 0;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .werte-card.feature .feat-vis img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
  }
  .werte-card.feature .feat-vis::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--moss) 100%);
  }

  /* ── Leistungen — card grid (from Entwurf 1) ──── */
  .leistungen {
    background: var(--bg-alt);
    padding: 120px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .leistung {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .24s, box-shadow .24s, border-color .24s;
  }
  .leistung:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px -24px rgba(20, 36, 64, 0.22);
    border-color: var(--line-2);
  }
  .leistung.full { grid-column: span 2; flex-direction: row; }
  .leistung.full .leistung-img { width: 42%; height: auto; flex-shrink: 0; }

  .leistung-img {
    background: var(--bg-tint);
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
  }
  .leistung.full .leistung-img { height: 320px; }
  .leistung-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .leistung-img .num {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--bg);
    color: var(--sage-deep);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
  }
  .leistung-img .tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 37, 64, 0.85);
    color: white;
    backdrop-filter: blur(6px);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
  }
  .leistung-body { padding: 32px 32px 34px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
  .leistung-body h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .leistung-body > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
  }
  .leistung-body ul {
    list-style: none;
    margin-top: auto;
    padding-top: 8px;
    display: grid;
    gap: 6px;
  }
  .leistung-body li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
  }
  .leistung-body li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sage-deep);
  }
  .leistung.navy .leistung-img .num { color: var(--moss); }
  .leistung.navy .leistung-body li::before { background: var(--moss); }

  .leistung.full .leistung-body {
    justify-content: center;
    padding: 40px 44px;
  }
  .leistung.full .leistung-body h3 { font-size: 36px; }
  .leistung.full .leistung-body ul {
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    margin-top: 6px;
  }

  /* ── Wohnen ─────────────────────────────── */
  .wohnen {
    padding: 130px 0;
    background: var(--bg);
  }
  .wohnen-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }
  .wohnen-content .label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 24px;
    font-weight: 600;
  }
  .wohnen-content h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .wohnen-content h2 i { color: var(--sage-deep); }
  .wohnen-content p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .wohnen-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    margin-bottom: 36px;
  }
  .wohnen-num-item {
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .wohnen-num-item .n {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.025em;
  }
  .wohnen-num-item .lbl {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 6px;
  }

  .wohnen-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
  }
  .wohnen-gallery .g {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    background: var(--bg-alt);
  }
  .wohnen-gallery .g.tall { grid-row: span 2; border-radius: 22px 22px 22px 200px; }
  .wohnen-gallery .g img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
  }
  .wohnen-gallery .g:hover img { transform: scale(1.04); }

  .wohnen-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ws-item {
    padding: 28px;
    background: var(--bg-tint);
    border-radius: 16px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .ws-item .ws-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--line);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }
  .ws-item h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
  }
  .ws-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }

  /* ── Karriere ─────────────────────────── */
  .karriere {
    padding: 130px 0;
    background: var(--moss);
    color: rgba(255,255,255,0.85);
  }
  .karriere .section-head h2 { color: white; }
  .karriere .section-head h2 i { color: var(--gold); }
  .karriere .section-head .label { color: rgba(255,255,255,0.55); }
  .karriere .section-head .num { color: var(--gold); }
  .karriere .section-head .lede { color: rgba(255,255,255,0.7); }

  .karriere-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .perks-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 32px;
    margin-bottom: 40px;
  }
  .perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14.5px;
    color: white;
  }
  .perk-item .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--moss);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
  }

  .karriere h3.intro {
    color: white;
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 380px;
    line-height: 1.2;
  }

  .roles {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .role-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    transition: all .2s;
    cursor: pointer;
  }
  .role-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
  .role-card:hover .role-arr { background: var(--gold); color: var(--moss); transform: translateX(0); }
  .role-card .role-info { display: flex; align-items: center; gap: 22px; }
  .role-card .role-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--gold);
    width: 28px;
  }
  .role-card .role-text h4 {
    color: white;
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .role-card .role-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
  }
  .role-arr {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: all .2s;
    flex-shrink: 0;
  }

  /* ── Kontakt ─────────────────────────── */
  .kontakt {
    padding: 130px 0 80px;
    background: var(--bg);
  }
  .kontakt-head {
    text-align: center;
    margin-bottom: 72px;
  }
  .kontakt-head .label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .kontakt-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  .kontakt-head h2 i { color: var(--sage-deep); }
  .kontakt-head p {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
  }

  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .info-cards { display: flex; flex-direction: column; gap: 14px; }
  .info-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .info-card .info-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--sage-soft);
    color: var(--sage-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .info-card .info-text { flex: 1; }
  .info-card .info-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .info-card .info-value {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
  }
  .info-card .info-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }

  .form-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 44px;
  }
  .form-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .form-card .sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .field { margin-bottom: 18px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--sage);
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .form-card button { width: 100%; justify-content: center; margin-top: 8px; }
  .form-card .legal {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
  }
  .form-card .legal a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }

  /* ── Footer ─────────────────────────── */
  footer.site {
    background: var(--moss);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
  }
  footer.site .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 28px;
  }
  footer.site h5 {
    color: white;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }
  footer.site .foot-brand img { height: 72px; background: white; padding: 12px 18px; border-radius: 14px; margin-bottom: 22px; }
  footer.site .foot-brand p { font-size: 13.5px; line-height: 1.6; max-width: 320px; }
  footer.site ul { display: flex; flex-direction: column; gap: 9px; }
  footer.site ul a { font-size: 14px; color: rgba(255,255,255,0.7); }
  footer.site ul a:hover { color: white; }
  footer.site .foot-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
  }

  /* ── Responsive ─────────────────────── */
  @media (max-width: 1080px) {
    /* Header wird zur Flex-Zeile: Logo links, Hamburger rechts.
       Navigation + Aktionen klappen darunter auf (nur bei .nav-open sichtbar). */
    .header-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0 16px;
    }
    .brand { margin-right: auto; }
    .nav-toggle { display: inline-flex; }
    .nav-list {
      flex-basis: 100%;
      display: none;
      flex-direction: column;
      gap: 2px;
      padding-top: 10px;
    }
    .nav-list a { padding: 13px 14px; font-size: 16px; border-radius: 12px; }
    .header-actions {
      flex-basis: 100%;
      display: none;
      flex-wrap: wrap;
      gap: 12px;
      padding: 6px 0 4px;
    }
    .header-actions .btn { flex: 1 1 auto; justify-content: center; }
    .header.nav-open .nav-list,
    .header.nav-open .header-actions { display: flex; }
    /* Telefonnummer ist bereits in der oberen Leiste – im Menü ausblenden */
    .header-actions .header-phone { display: none; }
    .brand img { height: 40px; }
    .brand-text { display: none; }
    .util .left, .util .right { gap: 14px; }
    .container { padding: 0 22px; }
    .hero-grid, .wohnen-grid, .kontakt-grid, .karriere-body, .section-head { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 4/4.6; max-width: 460px; margin: 0 auto; }
    .kpi-grid, .werte-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .werte-card { grid-column: span 1; }
    .werte-card.feature { grid-column: span 2; flex-direction: column; align-items: flex-start; padding: 36px; }
    .werte-card.feature .feat-vis { width: 140px; height: 140px; }
    .ls-row { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
    .ls-image { height: 180px; }
    .ls-arrow { display: none; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .leistung.full { grid-column: span 1; flex-direction: column; }
    .leistung.full .leistung-img { width: 100%; height: 240px; }
    .leistung.full .leistung-body { padding: 28px; }
    .leistung.full .leistung-body ul { grid-template-columns: 1fr; }
    .wohnen-numbers, .wohnen-services, .perks-list { grid-template-columns: 1fr 1fr; gap: 16px; }
    .wohnen-services { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    footer.site .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .form-card { padding: 28px; }
    .hero { padding: 48px 0 60px; }
    .hero-floating-card { right: 0; top: 16px; max-width: 200px; padding: 12px 16px; }
    .hero-medallion { width: 110px; height: 110px; bottom: -16px; left: -10px; }
    .hero-medallion .center { width: 42px; height: 42px; font-size: 20px; }
  }

  /* ── Smartphone (≤560px) ───────────────────── */
  @media (max-width: 560px) {
    .container { padding: 0 16px; }

    /* Grids auf eine Spalte */
    .kpi-grid, .werte-grid { grid-template-columns: 1fr; gap: 20px; }
    .werte-card { grid-column: span 1; min-height: 0; padding: 28px 24px; }
    .werte-card.feature { grid-column: span 1; padding: 28px 24px; gap: 24px; }
    .wohnen-numbers, .perks-list, .subhero-meta, .field-row { grid-template-columns: 1fr; gap: 16px; }
    footer.site .foot-grid { grid-template-columns: 1fr; gap: 28px; }

    /* KPI-Trennlinien von senkrecht auf waagerecht umstellen */
    .kpi-item { padding: 0 0 18px; border-right: none; border-bottom: 1px solid var(--line-2); }
    .kpi-item:last-child { border-bottom: none; padding-bottom: 0; }
    .kpi-label { max-width: none; }

    /* Headlines verkleinern, damit nichts überläuft */
    .hero h1 { font-size: clamp(40px, 11vw, 56px); }
    .subhero h1 { font-size: clamp(36px, 9vw, 52px); }
    .kontakt-head h2 { font-size: clamp(38px, 9.5vw, 56px); }

    /* Abschnitts-Abstände reduzieren */
    .werte, .leistungen, .wohnen, .karriere { padding: 72px 0; }
    .kontakt { padding: 72px 0 56px; }
    .hero { padding: 32px 0 44px; }
    .page-body { padding: 64px 0; }
    .related { padding: 64px 0 72px; }

    /* Schwebende Hero-Karte auf kleinen Screens ausblenden */
    .hero-floating-card { display: none; }

    /* Karten-/Formular-Innenabstände */
    .leistung-body { padding: 26px 24px 28px; }
    .form-card { padding: 22px; }
    .role-card { padding: 22px 20px; gap: 16px; }
    .info-card { padding: 22px 20px; }

    /* CTA-Buttons über volle Breite */
    .hero-actions .btn, .cta-banner .btn { flex: 1 1 auto; justify-content: center; }

    .util { font-size: 12px; }
  }

/* ── Subpage additions ─────────────────────── */
  .subhero {
    padding: 60px 0 64px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
  }
  .subhero .crumbs {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
  }
  .subhero .crumbs a:hover { color: var(--sage-deep); }
  .subhero .crumbs .sep { opacity: 0.4; }
  .subhero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(48px, 5.2vw, 80px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 18px;
    text-wrap: balance;
    max-width: 920px;
  }
  .subhero h1 i { color: var(--sage-deep); }
  .subhero .lede {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 660px;
  }
  .subhero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: end;
  }
  .subhero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    padding-bottom: 8px;
  }
  .subhero-meta .m-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .subhero-meta .m-value {
    font-family: 'Instrument Serif', serif;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.3;
  }
  .subhero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 600;
    margin-bottom: 22px;
  }
  .subhero-eyebrow .line { width: 36px; height: 1px; background: var(--sage); }

  .page-body { padding: 100px 0; }
  .page-body.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  .prose {
    max-width: 720px;
  }
  .prose h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    color: var(--ink);
  }
  .prose h2 i { color: var(--sage-deep); }
  .prose h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 14px;
    margin-top: 36px;
    color: var(--ink);
  }
  .prose p {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .prose ul.bullets {
    list-style: none;
    margin: 22px 0 28px;
    display: grid;
    gap: 10px;
  }
  .prose ul.bullets li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.55;
  }
  .prose ul.bullets li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 14px; height: 2px;
    background: var(--sage-deep);
  }
  .prose ul.bullets.cols { grid-template-columns: 1fr 1fr; gap: 10px 28px; }

  /* Service detail layout */
  .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .svc-image {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    background: var(--bg-tint);
    position: sticky;
    top: 110px;
  }
  .svc-image img { width: 100%; height: 100%; object-fit: cover; }
  .svc-image .badge {
    position: absolute;
    top: 22px; left: 22px;
    background: var(--bg);
    color: var(--sage-deep);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 500;
  }
  .svc-image .legal-tag {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(26, 37, 64, 0.85);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
  }

  /* Side panel for service pages */
  .svc-side {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    margin: 32px 0;
  }
  .svc-side .side-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .svc-side h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .svc-side p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 16px;
  }

  /* Related services nav */
  .related {
    background: var(--moss);
    color: white;
    padding: 90px 0 100px;
  }
  .related h3 {
    color: white;
    font-family: 'Instrument Serif', serif;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .related h3 i { color: var(--gold); }
  .related .related-sub { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; margin-bottom: 48px; }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    transition: all .2s;
  }
  .related-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateX(3px);
  }
  .related-card h4 {
    color: white;
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .related-card .r-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
  }
  .related-card .r-arr {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
  }
  .related-card:hover .r-arr { background: var(--gold); color: var(--moss); }

  /* Simple section heads for subpages */
  .sec-head { margin-bottom: 48px; }
  .sec-head .label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .sec-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 4.4vw, 62px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 760px;
  }
  .sec-head h2 i { color: var(--sage-deep); }
  .sec-head .lede {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 580px;
    margin-top: 16px;
  }

  /* Big CTA banner */
  .cta-banner {
    background: var(--moss);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .cta-banner h2 {
    color: white;
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .cta-banner h2 i { color: var(--gold); }
  .cta-banner p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 540px; margin: 0 auto 32px; }
  .cta-banner .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .cta-banner .btn-primary:hover { background: white; border-color: white; }
  .cta-banner .btn-outline { color: white; border-color: rgba(255,255,255,0.4); }
  .cta-banner .btn-outline:hover { background: white; color: var(--ink); }

  /* Map placeholder */
  .map-box {
    aspect-ratio: 16/9;
    background: var(--bg-tint);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
  }
  .map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* Nav active state */
  .nav-list a.active {
    background: var(--bg-tint);
    color: var(--sage-deep);
  }

  @media (max-width: 1080px) {
    .subhero-grid { grid-template-columns: 1fr; gap: 32px; }
    .svc-grid { grid-template-columns: 1fr; gap: 36px; }
    .svc-image { position: relative; top: 0; aspect-ratio: 4/3; }
    .related-grid { grid-template-columns: 1fr; }
    .prose ul.bullets.cols { grid-template-columns: 1fr; }
    .subhero-meta { grid-template-columns: 1fr 1fr; }
  }

  /* ============================================================
     Produktiv-Ergänzungen: Consent-Banner, Klick-Karte,
     Formular-Einwilligung, Hinweise (DSGVO)
     ============================================================ */

  /* --- Cookie / Consent-Banner --- */
  .consent {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 9999;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(26,37,64,0.18);
    padding: 24px 26px;
    display: none;
  }
  .consent.is-open { display: block; }
  .consent h4 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .consent p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 16px;
  }
  .consent p a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
  .consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .consent-actions .btn { flex: 1 1 auto; justify-content: center; font-size: 14px; padding: 12px 18px; }
  .consent-actions .btn-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-2);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    padding: 12px 18px;
  }
  .consent-actions .btn-ghost:hover { border-color: var(--ink); background: var(--bg-alt); }

  /* --- Klick-zum-Laden Karte (DSGVO) --- */
  .map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 32px;
    background: var(--bg-tint);
  }
  .map-consent p {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
  }
  .map-consent a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
  .map-consent button {
    cursor: pointer;
    font: inherit;
  }

  /* --- Formular-Einwilligung (Checkbox) --- */
  .field-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 18px;
  }
  .field-consent input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: var(--sage-deep);
  }
  .field-consent label {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
  }
  .field-consent label a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }

  /* Honeypot (vor Menschen verstecken, für Bots sichtbar) */
  .hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
  }

  /* --- Hinweis-/Statusmeldungen (Formular) --- */
  .notice {
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
    border: 1px solid var(--line);
  }
  .notice.success { background: #EEF6EE; border-color: #BFE0BF; color: #1f5130; }
  .notice.error   { background: #FBEDEF; border-color: #E7BEC6; color: #7B1F30; }

  /* --- Rechtstexte (Impressum/Datenschutz) --- */
  .legal-doc { max-width: 820px; }
  .legal-doc h2 { margin-top: 44px; }
  .legal-doc h2:first-child { margin-top: 0; }
  .legal-doc h3 { font-size: 22px; }
  .legal-doc p, .legal-doc li { font-size: 16px; color: var(--ink-2); line-height: 1.7; }
  .legal-doc ul { margin: 0 0 18px 22px; }
  .legal-doc ul li { margin-bottom: 6px; }
  .legal-doc a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
  .legal-doc .placeholder {
    background: #FFF4D6;
    border: 1px dashed #C9A24A;
    color: #6b531a;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 500;
  }
  .legal-doc .updated { font-size: 14px; color: var(--ink-2); opacity: .8; margin-top: 40px; }

  @media (max-width: 600px) {
    .consent { padding: 20px; left: 10px; right: 10px; bottom: 10px; }
    .consent-actions { flex-direction: column; }
  }
