:root {
    --red: #d90808;
    --red-dark: #c61f0a;
    --red-light: #f24404;
    --pink: #f1948a;
    --pink-light: #f5b7b3;
    --pink-ultra: #f4eff0;
    --cream: #f5f1f2;
    --warm-gray: #8d5d68;
    --dark: #442b31;
    --green-soft: #fff4f1;
    --blue-soft: #f4eff0;
    --gold: #b7442f;
    --shadow: 0 4px 30px rgba(141,93,104,0.12);
    --shadow-hover: 0 12px 50px rgba(198,31,10,0.18);
    --radius: 20px;
    --radius-sm: 12px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  .skip-link {
    position: fixed; z-index: 1000; top: 8px; left: 8px;
    transform: translateY(-150%); background: #fff; color: var(--red);
    padding: 0.6rem 1rem; border-radius: 8px; font-weight: 700;
  }
  .skip-link:focus { transform: translateY(0); }

  /* ─── NAV ─────────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245,241,242,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(141,93,104,0.12);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--red);
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--pink); font-weight: 400; }
  .nav-sub { font-size: 0.65rem; color: var(--warm-gray); display: block; margin-top: -2px; font-family: 'Nunito', sans-serif; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
  .nav-logo-image {
    display: block;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    object-position: center;
    aspect-ratio: auto;
  }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--warm-gray); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--red); }

  .nav-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(217,8,8,0.18);
    background: #fff;
    color: var(--red);
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(141,93,104,0.12);
  }
  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle-icon {
    position: relative;
  }
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
  }
  .nav-toggle-icon::before { top: -6px; }
  .nav-toggle-icon::after { top: 6px; }
  nav.is-open .nav-toggle-icon { background: transparent; }
  nav.is-open .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
  nav.is-open .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

  .nav-cta {
    background: var(--red); color: #fff;
    border: none; padding: 0.55rem 1.4rem;
    border-radius: 50px; font-size: 0.85rem; font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ─── HERO ─────────────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px 5% 70px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,148,138,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,8,8,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--pink-light); border: 1px solid rgba(217,8,8,0.15);
    border-radius: 50px; padding: 0.4rem 1rem;
    font-size: 0.78rem; font-weight: 700; color: var(--red);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeDown 0.6s ease both;
  }
  .hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }

  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    line-height: 1.18; font-weight: 700; color: var(--dark);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 em { color: var(--warm-gray); font-style: italic; }

  .hero-sub {
    font-size: 1.05rem; line-height: 1.7; color: var(--warm-gray);
    margin-bottom: 2rem; font-weight: 400;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-sub strong { color: var(--dark); font-weight: 600; }

  .hero-region {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; color: var(--warm-gray); font-weight: 600;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .hero-region::before { content: '📍'; font-size: 1rem; }

  .hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .btn-primary {
    background: var(--red); color: #fff;
    padding: 0.9rem 2rem; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s; font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 20px rgba(217,8,8,0.35);
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(217,8,8,0.45); }

  .btn-secondary {
    background: #fff; color: var(--red);
    padding: 0.9rem 2rem; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; border: 2px solid rgba(217,8,8,0.25);
    cursor: pointer; transition: all 0.2s; font-family: 'Nunito', sans-serif;
  }
  .btn-secondary:hover { border-color: var(--red); background: var(--pink-light); transform: translateY(-2px); }

  .trust-bar {
    margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .trust-tag {
    background: rgba(217,8,8,0.06);
    border: 1px solid rgba(217,8,8,0.12);
    border-radius: 50px; padding: 0.3rem 0.85rem;
    font-size: 0.75rem; font-weight: 700; color: var(--red);
    letter-spacing: 0.04em;
  }
  .trust-tag.special {
    background: #fff4f1; border-color: #b7442f; color: #8d5d68;
  }

  /* Hero image card */
  .hero-visual {
    position: relative; animation: fadeLeft 0.8s 0.3s ease both;
  }
  .hero-card {
    background: transparent; border-radius: 0;
    box-shadow: none;
    overflow: visible; position: relative;
  }
  .hero-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
    filter: brightness(0.97);
    background: transparent;
  }
  .hero-card-footer {
    padding: 1.4rem 1.6rem;
    background: transparent;
  }
  .hero-card-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: var(--dark); font-weight: 600;
  }
  .hero-card-footer span {
    font-size: 0.8rem; color: var(--warm-gray); display: block; margin-top: 0.2rem;
  }

  .hero-float-badge {
    position: absolute; top: 1.5rem; right: -1rem;
    background: #fff; border-radius: var(--radius-sm);
    padding: 0.8rem 1.2rem; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    text-align: center; animation: float 3s ease-in-out infinite;
  }
  .hero-float-badge .icon { font-size: 1.6rem; display: block; margin-bottom: 0.2rem; }
  .hero-float-badge .label { font-size: 0.7rem; font-weight: 700; color: var(--red); display: block; }

  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

  .hero-float-badge2 {
    position: absolute; bottom: 5rem; left: -1.5rem;
    background: var(--red); border-radius: var(--radius-sm);
    padding: 0.8rem 1.2rem; box-shadow: 0 8px 30px rgba(217,8,8,0.4);
    animation: float 3s 1.5s ease-in-out infinite;
  }
  .hero-float-badge2 .icon { font-size: 1.2rem; display: block; }
  .hero-float-badge2 .label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.9); display: block; margin-top: 0.2rem; }

  /* ─── ANIMATIONS ────────────────────────────────────────────────────── */
  @keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeUp   { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:translateY(0)} }
  @keyframes fadeLeft { from{opacity:0;transform:translateX(30px)}  to{opacity:1;transform:translateX(0)} }

  .reveal { opacity:0; transform:translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ─── SECTIONS ─────────────────────────────────────────────────────── */
  section { padding: 5rem 5%; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 0.8rem;
  }
  .section-label::before, .section-label::after {
    content: ''; width: 24px; height: 1.5px; background: var(--red); opacity: 0.4;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2; font-weight: 700; color: var(--dark);
    margin-bottom: 1rem;
  }
  h2 em { color: var(--red); font-style: italic; }

  .section-intro {
    font-size: 1.05rem; color: var(--warm-gray); max-width: 620px;
    line-height: 1.75; margin-bottom: 3rem;
  }

  /* ─── EMPATHY SECTION ───────────────────────────────────────────────── */
  .empathy {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fff 60%);
    border-radius: var(--radius);
    padding: 4rem;
    position: relative; overflow: hidden;
  }
  .empathy::after {
    content: '❝';
    position: absolute; right: 3rem; top: 2rem;
    font-size: 8rem; color: rgba(217,8,8,0.06);
    font-family: serif; line-height: 1;
  }
  .empathy p {
    font-size: 1.2rem; line-height: 1.8; color: var(--dark); max-width: 700px;
    font-weight: 400;
  }
  .empathy p strong { color: var(--red); }

  /* ─── LEISTUNGEN ────────────────────────────────────────────────────── */
  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .kachel {
    background: #fff; border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(217,8,8,0.06);
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .kachel::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--pink); border-radius: 0 4px 4px 0;
    transition: width 0.3s;
  }
  .kachel:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
  .kachel:hover::before { width: 6px; background: var(--red); }

  .kachel.highlight {
    background: linear-gradient(135deg, #fff7f6 0%, #fff4f1 100%);
    border: 2px solid var(--gold);
    grid-column: span 3;
  }
  .kachel.highlight::before { background: var(--gold); }

  .kachel.green { background: var(--green-soft); border-color: rgba(141,93,104,0.18); }
  .kachel.green::before { background: #b7442f; }
  .kachel.blue { background: var(--blue-soft); border-color: rgba(141,93,104,0.22); }
  .kachel.blue::before { background: #8d5d68; }

  .kachel-icon {
    font-size: 2.2rem; margin-bottom: 1rem; display: block;
  }
  .kachel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--dark);
    margin-bottom: 0.7rem;
  }
  .kachel p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.65; }

  .kachel-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(183,68,47,0.14); border: 1px solid var(--gold);
    border-radius: 50px; padding: 0.3rem 0.8rem;
    font-size: 0.72rem; font-weight: 800; color: #8d5d68;
    letter-spacing: 0.05em; margin-bottom: 0.8rem;
  }

  .highlight-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    margin-top: 1.5rem;
  }
  .highlight-point {
    display: flex; align-items: flex-start; gap: 0.7rem;
  }
  .highlight-point .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 0.4rem;
  }
  .highlight-point p { font-size: 0.88rem; color: var(--dark); line-height: 1.5; }

  /* Pflegegrad Erklärungsfeld */
  .pflegegrad-box {
    background: #fff; border-radius: var(--radius);
    padding: 2.5rem; box-shadow: var(--shadow);
    border: 1px solid rgba(141,93,104,0.18);
    margin-top: 1.5rem;
  }
  .pflegegrad-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  }
  .pflegegrad-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--blue-soft); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
  }
  .pflegegrad-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }
  .pflegegrad-title span { display: block; font-family: 'Nunito', sans-serif; font-size: 0.78rem; color: var(--warm-gray); font-weight: 400; margin-top: 0.1rem; }

  .grade-bars {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .grade-bar {
    text-align: center;
  }
  .grade-bar .num {
    font-size: 0.72rem; font-weight: 800; color: var(--warm-gray);
    margin-bottom: 0.3rem; display: block;
    letter-spacing: 0.05em;
  }
  .grade-bar .bar {
    height: 6px; border-radius: 3px;
    margin-bottom: 0.4rem;
  }
  .grade-bar .desc {
    font-size: 0.7rem; color: var(--warm-gray); line-height: 1.3;
  }
  .g1 .bar { background: #f5b7b3; } .g1 .num { color: #b7442f; }
  .g2 .bar { background: #f1948a; } .g2 .num { color: #8d5d68; }
  .g3 .bar { background: var(--pink); } .g3 .num { color: #d90808; }
  .g4 .bar { background: #d90808; } .g4 .num { color: #d90808; }
  .g5 .bar { background: #680b02; } .g5 .num { color: #621601; }

  /* ─── SICHERHEIT & VERTRAUEN ──────────────────────────────────────── */
  .vertrauen { background: #fff; }

  .gesetz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }

  .gesetz-card {
    border-radius: var(--radius); padding: 2rem;
    border: 1.5px solid rgba(217,8,8,0.12);
    position: relative; overflow: hidden;
    transition: all 0.3s;
  }
  .gesetz-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

  .gesetz-card::before {
    content: attr(data-para);
    position: absolute; right: 1.5rem; top: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 700; color: rgba(217,8,8,0.05);
    line-height: 1;
  }

  .gesetz-card .tag {
    display: inline-block;
    background: var(--pink-light); border-radius: 50px;
    padding: 0.3rem 0.9rem; font-size: 0.72rem;
    font-weight: 800; color: var(--red);
    letter-spacing: 0.06em; margin-bottom: 1rem;
  }
  .gesetz-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    font-weight: 700; margin-bottom: 0.7rem; color: var(--dark);
  }
  .gesetz-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.65; }
  .gesetz-card ul {
    margin-top: 1rem;
    font-size: 0.83rem;
    color: var(--warm-gray);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .gesetz-card .highlight-num {
    font-size: 2rem; font-weight: 800; color: var(--red);
    font-family: 'Playfair Display', serif; margin: 0.8rem 0 0.3rem;
    display: block;
  }

  /* ─── FÜR WEN ───────────────────────────────────────────────────────── */
  .fuerwen { background: linear-gradient(180deg, var(--pink-ultra) 0%, #fff 100%); }

  .fuerwen-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-top: 2rem;
  }

  .fuerwen-card {
    background: #fff; border-radius: var(--radius-sm);
    padding: 1.5rem; text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(217,8,8,0.06);
    transition: all 0.3s;
  }
  .fuerwen-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .fuerwen-card:first-child { border-color: var(--gold); background: #fff7f6; }

  .fuerwen-card .icon { font-size: 2.4rem; margin-bottom: 0.8rem; display: block; }
  .fuerwen-card h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
  .fuerwen-card p { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.5; }

  /* ─── AKTUALISIERTE STARTSEITE 1.4.7 ──────────────────────────────── */
  .person-hero {
    background:
      radial-gradient(circle at 88% 18%, rgba(241,148,138,0.2), transparent 34rem),
      linear-gradient(90deg, #f5f1f2 0%, #fff7f6 100%);
  }
  .person-hero .hero-card {
    background: transparent;
    box-shadow: none;
  }
  .person-hero .hero-img {
    background: transparent;
    border-radius: 0;
    object-position: center top;
  }
  .person-hero .hero-card-footer {
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
  }
  .person-hero .hero-sub {
    max-width: 680px;
  }

  /* ─── ÜBER-MICH-SEITE ─────────────────────────────────────────────── */
  .about-page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 18%, rgba(241,148,138,0.24), transparent 34rem),
      linear-gradient(135deg, #f5f1f2 0%, #fff7f6 100%);
    padding-top: 120px;
  }
  .about-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) 220px minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;
    min-width: 0;
  }
  .about-page-title,
  .about-page-card,
  .about-page-portrait-wrap {
    min-width: 0;
  }
  .about-page-title .eyebrow {
    color: var(--red);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .about-page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.08;
    color: var(--dark);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .about-page-title h1 em {
    color: var(--warm-gray);
    font-style: italic;
  }
  .about-page-portrait-wrap {
    justify-self: center;
    width: 220px;
    max-width: 100%;
  }
  .about-page-portrait {
    display: block;
    width: 220px;
    height: 220px;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 8px solid rgba(255,255,255,0.78);
    box-shadow: var(--shadow-hover);
    background: #fff7f6;
  }
  .about-page-card,
  .story-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(217,8,8,0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .about-page-card {
    padding: 2.4rem;
  }
  .about-page-card p,
  .story-card p {
    color: var(--warm-gray);
    font-size: 1.03rem;
    line-height: 1.85;
  }
  .about-page-card strong {
    color: var(--dark);
  }
  .container.narrow {
    max-width: 920px;
  }
  .about-page-story {
    background: #fff;
  }
  .story-card {
    padding: clamp(2rem, 5vw, 4rem);
  }
  .story-card p + p {
    margin-top: 1.15rem;
  }
  .story-card blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.7rem;
    border-left: 5px solid var(--red);
    background: #fff7f6;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.45;
    font-style: italic;
  }
  .philosophy-section {
    background: linear-gradient(180deg, var(--pink) 0%, #f5b7b3 100%);
    text-align: center;
  }
  .philosophy-section .section-label,
  .philosophy-section h2 {
    justify-content: center;
    color: var(--dark);
  }
  .philosophy-section h2 em {
    color: var(--red);
  }
  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .philosophy-card {
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.28);
    border-right: 1px solid rgba(255,255,255,0.28);
    border-bottom: 1px solid rgba(255,255,255,0.28);
  }
  .philosophy-card:nth-child(3n) {
    border-right: 0;
  }
  .philosophy-card:nth-child(odd) {
    background: rgba(255,255,255,0.16);
  }
  .philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.45rem;
    margin-bottom: 1rem;
  }
  .philosophy-card p {
    color: var(--dark);
    line-height: 1.65;
  }
  .about-motto {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
      linear-gradient(rgba(245,183,179,0.8), rgba(245,183,179,0.8)),
      radial-gradient(circle at 52% 45%, rgba(217,8,8,0.18), transparent 10rem),
      #f5b7b3;
  }
  .about-motto h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
  }
  .about-motto p {
    max-width: 760px;
    margin: 1rem auto 2rem;
    color: var(--dark);
    line-height: 1.75;
  }

  /* ─── KONTAKT-SEITE ─────────────────────────────────────────────── */
  .contact-motto-hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    padding-top: 120px;
  }
  .contact-motto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
  }
  .contact-motto-copy h1 {
    max-width: 560px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    line-height: 0.98;
    color: var(--warm-gray);
    font-weight: 600;
    letter-spacing: -0.03em;
  }
  .contact-motto-copy p {
    max-width: 520px;
    margin-top: 2rem;
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.7;
  }
  .contact-motto-copy strong {
    color: var(--dark);
  }
  .contact-motto-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-page-logo {
    display: block;
    width: min(100%, 360px);
    height: auto !important;
    max-height: 280px;
    object-fit: contain;
    object-position: center;
    aspect-ratio: auto;
  }
  .contact-question {
    background: #f4eff0;
    text-align: center;
    padding: 9rem 5% 5rem;
  }
  .contact-question h2 {
    font-family: 'Playfair Display', serif;
    color: var(--red);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  .contact-question p {
    color: var(--red);
    font-size: 1.05rem;
    line-height: 1.55;
  }
  .contact-options-section {
    background:
      radial-gradient(circle at 8% 12%, rgba(241,148,138,0.18), transparent 26rem),
      #fff;
  }
  .contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .contact-option-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(217,8,8,0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .contact-option-card:hover,
  .contact-option-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(217,8,8,0.32);
    box-shadow: var(--shadow-hover);
  }
  .contact-icon {
    font-size: 2rem;
  }
  .contact-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
  }
  .contact-detail {
    color: var(--warm-gray);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }
  .contact-form-section {
    background:
      radial-gradient(circle at 88% 0%, rgba(217,8,8,0.12), transparent 24rem),
      linear-gradient(180deg, #fff7f6 0%, var(--cream) 100%);
  }
  .contact-form-intro {
    max-width: 720px;
    margin-bottom: 2rem;
  }
  .contact-form-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .contact-form-intro p {
    color: var(--warm-gray);
    line-height: 1.75;
  }
  .contact-form-card {
    max-width: 760px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(217,8,8,0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: clamp(1.4rem, 4vw, 2.4rem);
  }
  .contact-form label {
    color: var(--dark);
    font-weight: 700;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(141,93,104,0.22);
    border-radius: 14px;
    background: #fff;
    padding: 0.9rem 1rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .contact-form textarea {
    min-height: 180px;
    resize: vertical;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(217,8,8,0.08);
  }
  .contact-form .website-field {
    display: none;
  }
  .contact-form .form-note,
  .contact-form .form-status {
    color: var(--warm-gray);
    font-size: 0.92rem;
  }
  .contact-form .submit-button {
    align-self: flex-start;
    margin-top: 0.7rem;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    padding: 0.9rem 2.2rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(217,8,8,0.26);
    transition: background 0.2s, transform 0.2s;
  }
  .contact-form .submit-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
  }
  .contact-form .form-status.success {
    color: #24704a;
  }
  .contact-form .form-status.error {
    color: var(--red-dark);
  }
  .intro-person {
    background: linear-gradient(90deg, rgba(245,183,179,0.26) 0%, #fff7f6 100%);
  }
  .intro-person .about-img {
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    object-position: center top;
  }
  .empathy-section {
    padding-top: 3.5rem;
  }
  .empathy h2 {
    margin-bottom: 1.2rem;
  }
  .children-section {
    background:
      radial-gradient(circle at 10% 12%, rgba(183,68,47,0.12), transparent 28rem),
      linear-gradient(180deg, #fff7f6 0%, var(--cream) 100%);
  }
  .children-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .children-card {
    background: #fff;
    border: 1px solid rgba(183,68,47,0.25);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  .children-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--gold);
  }
  .children-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
  }
  .children-card p {
    color: var(--warm-gray);
    line-height: 1.65;
  }
  .children-proof {
    background: linear-gradient(135deg, #fff7f6 0%, #fff4f1 100%);
  }
  .kachel.highlight p + p {
    margin-top: 0.9rem;
  }
  .kachel.blue {
    grid-column: span 3;
  }
  .kosten {
    text-align: center;
  }
  .kosten .section-label,
  .faq-heading,
  .faq-intro,
  .cta-final .section-label {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-heading {
    margin-bottom: 0.5rem;
  }
  .cta-final .container {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cta-note {
    margin-top: 2rem;
    color: rgba(255,255,255,0.58) !important;
    font-size: 0.85rem !important;
    font-style: italic;
  }

  /* ─── ABLAUF ────────────────────────────────────────────────────────── */
  .ablauf { background: var(--dark); color: #fff; }
  .ablauf .section-label { color: var(--pink); }
  .ablauf .section-label::before, .ablauf .section-label::after { background: var(--pink); }
  .ablauf h2 { color: #fff; }
  .ablauf h2 em { color: var(--pink); }
  .ablauf .section-intro { color: rgba(255,255,255,0.6); }

  .steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    position: relative; margin-top: 3rem;
  }
  .steps::before {
    content: ''; position: absolute; top: 2rem; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--red), var(--pink));
    opacity: 0.3; z-index: 0;
  }

  .step {
    position: relative; z-index: 1; text-align: center;
  }
  .step-num {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem;
    font-weight: 700; color: #fff; margin: 0 auto 1.2rem;
    box-shadow: 0 4px 20px rgba(217,8,8,0.4);
  }
  .step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
  .step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

  /* ─── ÜBER MICH ─────────────────────────────────────────────────────── */
  .about {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
  }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%; border-radius: 0; object-fit: cover;
    aspect-ratio: 3/4; display: block;
    box-shadow: none;
    background: transparent;
  }
  .about-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--red); border-radius: var(--radius-sm);
    padding: 1.2rem 1.5rem; color: #fff;
    box-shadow: 0 8px 30px rgba(217,8,8,0.45);
  }
  .about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
  .about-badge .txt { font-size: 0.72rem; font-weight: 600; opacity: 0.85; display: block; margin-top: -0.3rem; }

  .about-content h2 { margin-bottom: 1rem; }
  .about-content p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.75; margin-bottom: 1rem; }
  .about-content p strong { color: var(--dark); font-weight: 700; }

  .fuehrungszeugnis-box {
    background: #fff7f6; border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm); padding: 1.2rem 1.5rem;
    margin: 1.5rem 0; display: flex; gap: 1rem; align-items: flex-start;
  }
  .fuehrungszeugnis-box .icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
  .fuehrungszeugnis-box p { font-size: 0.88rem; color: #8d5d68; line-height: 1.6; }
  .fuehrungszeugnis-box p strong { color: #442b31; }

  /* ─── KOSTEN ────────────────────────────────────────────────────────── */
  .kosten { background: var(--pink-light); }
  .kosten-box {
    background: #fff; border-radius: var(--radius); padding: 3rem;
    box-shadow: var(--shadow); max-width: 750px; margin: 2rem auto;
    text-align: center;
  }
  .kosten-box .big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--red); }
  .kosten-box .sub { color: var(--warm-gray); font-size: 0.9rem; margin-top: 0.3rem; }
  .kosten-box p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.7; margin-top: 1.5rem; }

  /* ─── FAQ ───────────────────────────────────────────────────────────── */
  .faq-list { max-width: 800px; margin: 2rem auto 0; }

  .faq-item {
    border-bottom: 1px solid rgba(217,8,8,0.08);
    padding: 1.3rem 0;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 700; font-size: 0.95rem; color: var(--dark);
    gap: 1rem; user-select: none;
  }
  .faq-q .arrow {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--pink-light); display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: var(--red); flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
  }
  .faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--red); color: #fff; }
  .faq-a {
    font-size: 0.9rem; color: var(--warm-gray); line-height: 1.7;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 0.8rem; }

  /* ─── CTA FINAL ─────────────────────────────────────────────────────── */
  .cta-final {
    background: linear-gradient(135deg, var(--red) 0%, #680b02 100%);
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: ''; position: absolute;
    top: -50%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .cta-final h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
  .cta-final h2 em { color: var(--pink); }
  .cta-final p { color: rgba(255,255,255,0.8); font-size: 1rem; margin: 1rem 0 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
  .cta-final .section-label { color: rgba(255,255,255,0.6); }
  .cta-final .section-label::before, .cta-final .section-label::after { background: rgba(255,255,255,0.3); }

  .btn-white {
    background: #fff; color: var(--red);
    padding: 0.9rem 2rem; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

  .btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5); color: #fff;
    padding: 0.9rem 2rem; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ────────────────────────────────────────────────────────── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.5);
    padding: 2.5rem 5%; text-align: center;
    font-size: 0.82rem;
  }
  footer .logo {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: #fff; margin-bottom: 0.5rem; font-weight: 700;
  }
  footer .tagline { font-style: italic; margin-bottom: 1rem; }
  footer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--pink); }

  .footer-social-links {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 0.7rem; margin-top: 1.25rem;
  }
  .footer-social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; color: rgba(255,255,255,0.75);
    font-size: 0.85rem; font-weight: 800;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  }
  .footer-social-links a:hover,
  .footer-social-links a:focus-visible {
    color: #fff; border-color: var(--pink); background: rgba(241,148,138,0.15);
    transform: translateY(-2px);
  }

  /* ─── RESPONSIVE ────────────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual {
      display: block;
      width: min(100%, 420px);
      margin: 0 auto;
      order: 2;
    }
    .hero-img {
      width: 100%;
      max-height: 560px;
      object-fit: contain;
    }
    .hero-card-footer {
      text-align: center;
      padding-bottom: 0;
    }
    .hero-float-badge {
      top: 0.75rem;
      right: 0.25rem;
    }
    .hero-float-badge2 {
      left: 0.25rem;
      bottom: 4rem;
    }
    .leistungen-grid { grid-template-columns: 1fr; }
    .leistungen-grid > .kachel { grid-column: 1 / -1 !important; width: 100%; min-width: 0; }
    .kachel.highlight { grid-column: 1 / -1 !important; }
    .highlight-grid { grid-template-columns: 1fr; }
    .gesetz-grid { grid-template-columns: 1fr; }
    .fuerwen-grid { grid-template-columns: repeat(2, 1fr); }
    .children-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .about { grid-template-columns: 1fr; }
    .about-content { order: 1; }
    .about-img-wrap { max-width: 380px; order: 2; }
    .about-page-intro,
    .philosophy-grid,
    .contact-motto-grid,
    .contact-options-grid {
      grid-template-columns: 1fr;
    }
    .about-page-portrait-wrap {
      width: 190px;
      order: 2;
    }
    .about-page-portrait {
      width: 190px;
      height: 190px;
    }
    .about-page-title {
      order: 1;
    }
    .about-page-card {
      order: 3;
    }
    .about-page-hero {
      min-height: auto;
    }
    .contact-motto-hero {
      min-height: auto;
      padding-top: 110px;
    }
    .contact-motto-copy h1,
    .contact-motto-copy p {
      max-width: none;
    }
    .contact-motto-logo {
      justify-content: flex-start;
    }
    .contact-page-logo {
      width: min(100%, 330px);
    }
    .philosophy-card,
    .philosophy-card:nth-child(3n) {
      border-right: 0;
    }
    .pflegegrad-box { padding: 1.5rem; }
    .grade-bars { grid-template-columns: 1fr; gap: 0.75rem; }
    .grade-bar {
      display: grid; grid-template-columns: 48px 72px minmax(0, 1fr);
      align-items: center; gap: 0.65rem; text-align: left;
    }
    .grade-bar .num, .grade-bar .bar { margin: 0; }
    .grade-bar .desc { font-size: 0.75rem; line-height: 1.35; }
    nav { height: 78px; }
    .nav-toggle { display: inline-flex; order: 3; }
    .nav-links {
      position: absolute;
      left: 5%;
      right: 5%;
      top: calc(100% + 0.7rem);
      display: flex;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(217,8,8,0.12);
      border-radius: 18px;
      box-shadow: 0 16px 48px rgba(68,43,49,0.16);
      transition: max-height 0.25s ease, opacity 0.2s ease;
    }
    nav.is-open .nav-links {
      max-height: 80vh;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links li {
      border-bottom: 1px solid rgba(217,8,8,0.08);
    }
    .nav-links li:last-child {
      border-bottom: 0;
    }
    .nav-links a {
      display: block;
      padding: 1rem 1.2rem;
      color: var(--dark);
      font-size: 1rem;
    }
    .nav-logo-image { max-width: 210px !important; max-height: 60px !important; }
    .about-badge { right: 0; }
  }
  @media (max-width: 600px) {
    nav {
      padding-left: 4%;
      padding-right: 4%;
    }
    .nav-cta {
      display: none;
    }
    .nav-logo {
      font-size: 1.22rem;
    }
    .nav-sub {
      font-size: 0.62rem;
    }
    .nav-logo-image { max-width: 190px !important; max-height: 58px !important; }
    .about-page-intro {
      gap: 1.5rem;
    }
    .about-page-card,
    .story-card,
    .philosophy-card,
    .contact-option-card {
      padding: 1.6rem;
    }
    .contact-motto-copy h1 {
      font-size: clamp(2.6rem, 13vw, 4rem);
    }
    .contact-question {
      padding: 8rem 5% 3.6rem;
    }
    .contact-question p {
      font-size: 1rem;
    }
    .contact-form .submit-button {
      width: 100%;
      text-align: center;
    }
    .about-page-title h1 {
      font-size: clamp(2rem, 9.4vw, 3rem);
      line-height: 1.08;
    }
    .about-page-title .eyebrow {
      font-size: 0.9rem;
      letter-spacing: 0.1em;
    }
    .about-page-card p,
    .story-card p {
      font-size: 1rem;
      line-height: 1.75;
    }
    .about-page-portrait-wrap {
      width: 160px;
    }
    .about-page-portrait {
      width: 160px;
      height: 160px;
      border-width: 6px;
    }
    section { padding: 3.5rem 5%; }
    .empathy { padding: 2rem; }
    .kachel { padding: 1.35rem; }
    .kachel h3 { overflow-wrap: anywhere; }
    .pflegegrad-box { padding: 1.1rem; }
    .pflegegrad-header { align-items: flex-start; }
    .pflegegrad-title { font-size: 1rem; }
    .fuerwen-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; }
    .person-hero .hero-content {
      text-align: left;
    }
    .person-hero .trust-bar {
      gap: 0.5rem;
    }
    .person-hero .trust-tag {
      font-size: 0.68rem;
    }
    .hero-visual {
      width: min(100%, 340px);
      margin-top: 0.5rem;
    }
    .hero-img {
      max-height: 430px;
    }
    .hero-float-badge,
    .hero-float-badge2 {
      position: static;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      width: auto;
      margin-top: 0.75rem;
      animation: none;
      vertical-align: top;
    }
    .hero-float-badge2 {
      margin-left: 0.5rem;
    }
    .hero-float-badge .icon,
    .hero-float-badge2 .icon {
      margin: 0;
    }
    .hero-float-badge .label,
    .hero-float-badge2 .label {
      text-align: left;
    }
    .about-img-wrap {
      width: min(100%, 340px);
      margin: 0 auto;
    }
    .about-img {
      max-height: 430px;
      object-fit: contain;
    }
    .children-card { padding: 1.35rem; }
    .grade-bars { grid-template-columns: 1fr; gap: 0.7rem; }
    .grade-bar { grid-template-columns: 44px 55px minmax(0, 1fr); gap: 0.5rem; }
    .kosten-box { padding: 2rem 1.25rem; }
    .cta-buttons a { width: 100%; justify-content: center; text-align: center; }
    .about-badge { right: 0; bottom: -1rem; max-width: calc(100% - 1rem); }
  }
  @media (max-width: 360px) {
    nav { padding-right: 4%; padding-left: 4%; }
    .nav-logo { font-size: 1.08rem; white-space: nowrap; }
    .nav-sub { font-size: 0.58rem; }
    .nav-cta { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
    .nav-logo-image { max-width: 170px !important; max-height: 54px !important; }
    .nav-toggle {
      padding: 0.5rem 0.65rem;
    }
    .nav-toggle-label {
      display: none;
    }
    .hero-visual,
    .about-img-wrap {
      width: min(100%, 300px);
    }
    .hero-img,
    .about-img {
      max-height: 380px;
    }
  }

  /* WordPress integration */
  body.amore20-v3 { padding: 0; }
  body.amore20-v3 #main { width: 100%; overflow: hidden; }
  body.admin-bar nav#navbar { top: 32px; }
  body.amore20-v3 .wp-site-blocks { padding: 0; }
  @media (max-width: 782px) {
    body.admin-bar nav#navbar { top: 46px; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-badge, .hero h1, .hero-sub, .hero-region, .hero-buttons, .trust-bar, .hero-visual { animation: none; }
  }
