:root {
    --navy: #0a2240;
    --blue: #1b65b3;
    --light: #4a90e2;
    --gold: #f5a623;
    --body: #5d6f86;
    --cream: #f4f7fb;
    --cream-2: #e9f0f8;
    --line: #dde7f2;
    --white: #ffffff;

    --title-font: 'Parkinsans', system-ui, sans-serif;
    --body-font: 'Nunito', system-ui, sans-serif;

    --r-lg: 26px;
    --r-md: 16px;
    --shadow: 0 16px 44px rgba(10, 34, 64, 0.09);
    --shadow-lg: 0 30px 70px rgba(10, 34, 64, 0.16);
    --maxw: 1280px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: var(--body-font);
    background: var(--white);
    color: var(--body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ---------- Promo ---------- */
.promo {
    background: var(--navy); color: var(--white); text-align: center;
    padding: 10px 20px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.2px;
}

/* ---------- Header ---------- */
/* Durchgehende, flache Leiste – keine schwebende Pille, keine doppelte Zeilenhöhe */
.header-shell {
    position: sticky; top: 0; z-index: 900;
    background: var(--white); border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}
.header-shell.stuck { box-shadow: 0 4px 18px rgba(10, 34, 64, 0.07); }

.header {
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 26px; height: 72px;
    display: flex; align-items: center; gap: 26px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

/* ---------- Logo (reines CSS, keine Bilddatei) ---------- */
.logo { display: inline-flex; flex-direction: column; }
.logo-row { display: flex; align-items: center; gap: 0.42em; font-size: 1.62rem; }
.logo-dots { display: flex; flex-direction: column; gap: 0.11em; }
.logo-dots i { display: block; width: 0.3em; height: 0.3em; border-radius: 50%; }
.logo-dots i:nth-child(1) { background: var(--light); }
.logo-dots i:nth-child(2) { background: var(--blue); }
.logo-dots i:nth-child(3) { background: var(--navy); }

.brand-name {
    font-family: var(--title-font); font-size: 1em; font-weight: 700;
    color: var(--navy); line-height: 1; letter-spacing: -0.01em;
}
.brand-sub {
    font-size: 0.58rem; font-weight: 700; color: var(--navy);
    letter-spacing: 1.55px; text-transform: uppercase; margin-top: 5px; white-space: nowrap;
}

/* Heller Logo-Satz für dunkle Flächen */
.logo--light .brand-name { color: var(--white); }
.logo--light .brand-sub { color: #8fb4dd; }
.logo--light .logo-dots i:nth-child(1) { background: var(--light); }
.logo--light .logo-dots i:nth-child(2) { background: #7fb2ea; }
.logo--light .logo-dots i:nth-child(3) { background: var(--white); }

.nav { display: flex; gap: 30px; list-style: none; margin: 0 auto; }
.nav a { text-decoration: none; font-weight: 700; font-size: 0.92rem; color: var(--navy); transition: color 0.25s ease; }
.nav a:hover { color: var(--blue); }

/* Telefon: einzeiliger Knopf – die frühere zweizeilige Kachel machte die Leiste hoch */
.call-chip {
    display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0;
    background: var(--blue); color: var(--white); border-radius: 999px;
    padding: 10px 20px; text-decoration: none; transition: background 0.3s ease;
    font-family: var(--title-font); font-weight: 600; font-size: 0.92rem; line-height: 1;
}
.call-chip:hover { background: var(--navy); }
.call-chip svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.burger {
    display: none; width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    border: 0; background: var(--cream); cursor: pointer;
    align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Klappt als Fläche unter der Leiste auf, nicht mehr als schwebende Karte */
.mobile-nav {
    display: none; max-width: var(--maxw); margin: 0 auto;
    background: var(--white); border-top: 1px solid var(--line); padding: 10px 20px 18px;
}
.mobile-nav.show { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a { display: block; padding: 13px 18px; text-decoration: none; font-weight: 700; color: var(--navy); border-radius: var(--r-md); }
.mobile-nav a:hover { background: var(--cream); }

/* Sprachwahl im Menü statt in der Leiste – dort steht jetzt die Telefonnummer */
.mobile-langs {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    margin-top: 8px; padding: 14px 6px 0; border-top: 1px solid var(--line);
}
.mobile-langs-label {
    font-family: var(--title-font); font-weight: 600; font-size: 0.82rem;
    letter-spacing: 1.2px; text-transform: uppercase; color: var(--body);
}

.langs { display: flex; background: var(--cream); border-radius: 999px; padding: 4px; gap: 2px; flex-shrink: 0; }
.lang-btn {
    border: 0; background: transparent; cursor: pointer; font-family: var(--body-font);
    font-weight: 700; font-size: 0.74rem; color: var(--body);
    padding: 7px 11px; border-radius: 999px; transition: all 0.25s ease;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { background: var(--navy); color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    font-family: var(--title-font); font-weight: 600; font-size: 0.95rem;
    padding: 16px 32px; border-radius: 999px; text-decoration: none;
    border: 2px solid transparent; cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.3s ease; }
.btn:hover svg { transform: translate(3px, -3px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--gold); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.circle-arrow {
    width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    text-decoration: none; transition: 0.3s ease;
}
.circle-arrow svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s ease; }
.circle-arrow:hover { background: var(--navy); color: var(--white); }
.circle-arrow:hover svg { transform: translate(3px, -3px); }

/* ---------- Image placeholder ---------- */
.ph {
    position: relative; width: 100%; border-radius: var(--r-lg); overflow: hidden;
    background: var(--cream); border: 2px dashed var(--line);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 30px; color: var(--body); min-height: 260px;
}
.ph::before {
    content: ''; width: 44px; height: 38px; background: var(--cream-2);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1Zm-1 12H4V7h16v10Zm-11-7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM6 16l3.5-4 2.5 3 3-3.5L19 16H6Z'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1Zm-1 12H4V7h16v10Zm-11-7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM6 16l3.5-4 2.5 3 3-3.5L19 16H6Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ph span { font-size: 0.84rem; font-weight: 600; max-width: 28ch; line-height: 1.5; }
.ph-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.8); }
.ph-dark::before { background: rgba(255,255,255,0.25); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    overflow: hidden; padding: 150px 0 110px;
    /* Heller, lebendiger Blauverlauf – links etwas tiefer für die Schrift */
    background: linear-gradient(120deg, #143f72 0%, #1f6bbd 52%, #3d86d4 100%);
    background-size: 200% 200%;
    animation: heroShift 22s ease-in-out infinite;
}
@keyframes heroShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hintergrund-Ebene: optionales Foto + schwebende Blasen */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img {
    position: absolute; inset: -8% 0; width: 100%; height: 116%;
    object-fit: cover; will-change: transform;
}
/* Hintergrund-Video: füllt den Hero, stumm, leise im Loop */
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
/* Leichter Verlauf über dem Foto: Bild bleibt hell sichtbar, Text lesbar.
   Links (wo die Überschrift steht) etwas dichter, rechts fast klar. */
.hero--photo .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(9,26,48,0.76) 0%, rgba(9,26,48,0.5) 46%, rgba(12,45,86,0.34) 100%);
}
/* Zusätzliche sanfte Abdunklung von unten – hält die Buttons/Text lesbar */
.hero--photo .hero-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(9,26,48,0.45) 0%, rgba(9,26,48,0) 45%);
}

/* Schwebende Seifenblasen */
.bubble {
    position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
    background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.4), rgba(255,255,255,0.06) 45%, rgba(74,144,226,0.12) 100%);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.25);
    animation: floatUp linear infinite;
    opacity: 0;
}
.bubble-1 { width: 90px;  height: 90px;  left: 8%;  bottom: -120px; animation-duration: 19s; animation-delay: 0s; }
.bubble-2 { width: 46px;  height: 46px;  left: 22%; bottom: -80px;  animation-duration: 15s; animation-delay: 4s; }
.bubble-3 { width: 130px; height: 130px; left: 62%; bottom: -170px; animation-duration: 26s; animation-delay: 2s; }
.bubble-4 { width: 60px;  height: 60px;  left: 78%; bottom: -90px;  animation-duration: 17s; animation-delay: 7s; }
.bubble-5 { width: 34px;  height: 34px;  left: 46%; bottom: -70px;  animation-duration: 13s; animation-delay: 9s; }
@keyframes floatUp {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { transform: translateY(-108vh) translateX(24px); opacity: 0; }
}
/* Seifenblasen nur ohne Foto – auf einem Bild wirken sie störend */
.hero--photo .bubble { display: none; }

.hero .wrap { position: relative; z-index: 2; width: 100%; max-width: 1500px; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 70px; align-items: flex-end; }

/* Scroll-Pfeil unten mittig, sanftes Auf und Ab */
.hero-scroll {
    position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
    z-index: 3; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: #fff;
    text-decoration: none; animation: scrollBounce 2s ease-in-out infinite;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-scroll:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.hero-scroll svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

.eyebrow {
    display: inline-block; font-family: var(--title-font);
    font-weight: 600; font-size: 0.85rem; letter-spacing: 1.8px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6.2vw, 5.5rem); color: var(--white); font-weight: 600;
    text-shadow: 0 2px 22px rgba(8,22,44,0.35);
}
/* Helles Blau statt mittelblau – bleibt auf hellerem Grund gut lesbar */
.hero h1 em { font-style: normal; color: #bcd8f5; }

.hero-side p {
    color: #eaf2fb; font-size: 1.04rem; margin-bottom: 26px;
    text-shadow: 0 1px 14px rgba(8,22,44,0.35);
}
/* Auf einem Foto braucht der rechte Text einen kräftigeren Schatten */
.hero--photo .hero-side p { text-shadow: 0 1px 3px rgba(6,18,38,0.6), 0 2px 18px rgba(6,18,38,0.5); }
.hero--photo h1 { text-shadow: 0 2px 4px rgba(6,18,38,0.4), 0 3px 26px rgba(6,18,38,0.45); }
.hero .eyebrow { text-shadow: 0 1px 12px rgba(8,22,44,0.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 110px; }
.sec { padding: 120px 0; }
.sec-cream { background: var(--cream); }

.sec-head { max-width: 660px; margin-bottom: 60px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { color: var(--blue); }
.sec-head h2 { font-size: clamp(2.1rem, 3.8vw, 3.3rem); margin-bottom: 18px; }
.sec-head p { font-size: 1.04rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-visual .ph { min-height: 480px; }
.about-stat {
    position: absolute; right: -26px; bottom: -26px; background: var(--gold);
    border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow-lg); max-width: 190px;
}
.about-stat b { display: block; font-family: var(--title-font); font-size: 2.3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.about-stat span { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.about-lead { font-size: 1.09rem; line-height: 1.7; margin-bottom: 34px; }

/* Kernaussagen statt langer Fließtext-Absätze */
.facts { list-style: none; border-top: 1px solid var(--line); margin-bottom: 36px; }
.facts li {
    display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 24px;
    align-items: baseline; padding: 17px 2px; border-bottom: 1px solid var(--line);
}
.facts b { font-family: var(--title-font); font-weight: 600; font-size: 1rem; color: var(--navy); }
.facts span { font-size: 0.95rem; line-height: 1.6; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { border-color: transparent; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Symbol-Variante (ohne Foto): heller Kasten mit Icon */
.card-visual {
    position: relative; height: 210px; background: var(--cream-2);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--line); overflow: hidden;
}
.card-visual img { width: 84px; height: 84px; }

/* Foto-Variante: Bild füllt den ganzen oberen Kartenbereich */
.card-visual--photo { height: 260px; border-bottom: 0; background: var(--navy); }
.card-visual--photo .card-photo {
    position: absolute; inset: -12% 0; width: 100%; height: 124%;
    object-fit: cover; will-change: transform;
}
/* Leichter Verlauf unten, damit der Preis-Chip lesbar bleibt */
.card-visual--photo::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(10,34,64,0.5) 0%, rgba(10,34,64,0) 40%);
}
.card--photo:hover .card-photo { transition: transform 0.5s ease; }

.card-tag {
    position: absolute; left: 18px; bottom: 18px; z-index: 2; background: var(--navy); color: var(--white);
    font-family: var(--title-font); font-weight: 600; font-size: 0.8rem;
    padding: 7px 16px; border-radius: 999px;
}
.card-visual--photo .card-tag { background: var(--gold); color: var(--navy); }
.card-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex-grow: 1; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.card h3 { font-size: 1.28rem; }
.card p { font-size: 0.95rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: stretch; }
.why-visual .ph { height: 100%; min-height: 520px; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 22px; align-items: flex-start; background: var(--white); border-radius: var(--r-lg); padding: 26px 28px; box-shadow: var(--shadow); }
.why-icon { width: 66px; height: 66px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon img { width: 38px; height: 38px; }
.why-item h4 { font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.why-item p { font-size: 0.93rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    font-family: var(--title-font); font-weight: 600; font-size: 1.02rem; color: var(--navy);
    padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq-q .sign { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); position: relative; transition: background 0.3s ease; }
.faq-q .sign::before, .faq-q .sign::after {
    content: ''; position: absolute; left: 50%; top: 50%; background: var(--navy);
    transform: translate(-50%, -50%); transition: 0.3s ease; border-radius: 2px;
}
.faq-q .sign::before { width: 12px; height: 2px; }
.faq-q .sign::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .sign { background: var(--gold); }
.faq-item.open .faq-q .sign::after { height: 2px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 26px 24px; font-size: 0.96rem; }

.info-box { background: var(--navy); color: #c3d2e6; border-radius: var(--r-lg); padding: 40px 38px; margin-bottom: 22px; }
.info-box:last-child { margin-bottom: 0; }
.info-box h3 { color: var(--white); font-size: 1.18rem; margin-bottom: 22px; letter-spacing: 0.03em; }
.info-box ul { list-style: none; }
.info-box li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 15px; font-size: 0.95rem; }
.info-box li:last-child { margin-bottom: 0; }
.info-box li::before {
    content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 4px; background: var(--gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E") center/15px no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ---------- Kontakt-Section ---------- */
.contact-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 860px; margin: 0 auto 30px;
}
/* Horizontale Karte: Symbol links, Text rechts – kompakter als gestapelt */
.contact-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 22px 24px; text-decoration: none;
    display: flex; align-items: center; gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-ic {
    width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%;
    background: var(--cream); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}
.contact-ic svg { width: 24px; height: 24px; fill: currentColor; }
a.contact-card:hover .contact-ic { background: var(--blue); color: var(--white); }
.contact-text { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.contact-label {
    font-family: var(--title-font); font-weight: 600; font-size: 0.72rem;
    letter-spacing: 1.1px; text-transform: uppercase; color: var(--body);
}
.contact-value {
    font-family: var(--title-font); font-weight: 600; font-size: 1.08rem; color: var(--navy);
    line-height: 1.35; overflow-wrap: anywhere;
}
.contact-value--sm { font-size: 0.95rem; }

/* Abschluss-Streifen mit Ansprechpartner und Anruf-Button */
.contact-cta {
    max-width: 860px; margin: 0 auto;
    background: var(--navy); border-radius: var(--r-lg); padding: 30px 38px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.contact-person { font-family: var(--title-font); font-weight: 600; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.contact-cta-text { color: #b9c9de; font-size: 0.96rem; max-width: 42ch; }

/* ---------- Footer ---------- */
footer { background: #061a31; color: #93a7c0; padding: 96px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand { display: inline-flex; margin-bottom: 24px; text-decoration: none; }
.foot-brand .logo-row { font-size: 1.85rem; }
footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 24px; }
footer p { font-size: 0.95rem; margin-bottom: 16px; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 12px; }
.foot-links a { text-decoration: none; font-size: 0.95rem; transition: color 0.25s ease; }
.foot-links a:hover { color: var(--light); }
.contact-name { color: var(--white); font-family: var(--title-font); font-weight: 600; font-size: 1.02rem; margin-bottom: 20px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.contact-list li { display: flex; align-items: center; gap: 13px; font-size: 0.95rem; line-height: 1.4; }
.contact-list a { color: #b6c8de; text-decoration: none; word-break: break-word; transition: color 0.25s ease; }
.contact-list a:hover { color: var(--white); }
.ci {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; color: var(--light);
    background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
}
.ci svg { width: 16px; height: 16px; fill: currentColor; }

/* Anruf-Button */
.btn-call {
    display: inline-flex; align-items: center; gap: 14px; text-decoration: none;
    background: var(--gold); color: var(--navy); border-radius: 999px;
    padding: 10px 28px 10px 10px; transition: transform 0.3s ease, background 0.3s ease;
}
.btn-call:hover { background: var(--white); transform: translateY(-3px); }
.btn-call-ic {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: rgba(10,34,64,0.13); display: flex; align-items: center; justify-content: center;
}
.btn-call-ic svg { width: 19px; height: 19px; fill: var(--navy); }
.btn-call small { display: block; font-size: 0.72rem; font-weight: 700; line-height: 1.3; opacity: 0.65; }
.btn-call b { display: block; font-family: var(--title-font); font-size: 1.1rem; font-weight: 700; line-height: 1.25; }
.slogan { font-style: italic; font-size: 0.94rem; border-left: 3px solid var(--gold); padding-left: 16px; margin-top: 20px; }
.copyright { text-align: center; padding-top: 28px; font-size: 0.85rem; color: #6b7f99; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
    .nav { display: none; }
    .burger { display: flex; }

    /* Sprachwahl wandert ins Menü, das Telefon rückt in die Leiste */
    .langs--bar { display: none; }
    .call-chip { margin-left: auto; padding: 9px 17px; font-size: 0.86rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 34px; align-items: start; }
    .about-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-stat { right: 20px; bottom: -20px; }
}

/* Grosse Tablets (u. a. iPad 12.9"/13" im Hochformat): Bild-Rahmen hoeher,
   damit vom Foto mehr sichtbar ist */
@media (min-width: 761px) and (max-width: 1150px) {
    .frame { height: 560px; }
    .frame--tall { min-height: 560px; }
}

@media (max-width: 760px) {
    .sec { padding: 82px 0; }
    .header { height: 60px; padding: 0 16px; gap: 10px; }
    .mobile-nav { padding: 8px 14px 16px; }
    .brand-sub { font-size: 0.5rem; letter-spacing: 0.3px; margin-top: 3px; transform: scaleX(0.7); transform-origin: left; }
    .logo-row { font-size: 1.4rem; }
    .hero { min-height: 82vh; padding: 90px 0 80px; }
    /* Breites Video mobil abwechselnd von links und rechts zeigen */
    .hero-video { animation: heroPan 20s ease-in-out infinite; }
    /* Hero-Inhalt auf dem Handy mittig */
    .hero-grid { text-align: center; justify-items: center; }
    .hero-side p { max-width: 34ch; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-scroll { bottom: 18px; }
    .frame { height: 320px; }
    .frame--tall { min-height: 340px; }
    /* Kontakt: eine Spalte, flache Zeilen – spart Platz */
    .contact-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 22px; }
    .contact-card { padding: 16px 18px; gap: 14px; }
    .contact-ic { width: 46px; height: 46px; }
    .contact-ic svg { width: 21px; height: 21px; }
    .contact-value { font-size: 1rem; }
    .contact-value--sm { font-size: 0.9rem; }
    .contact-cta { padding: 26px 22px; text-align: center; justify-content: center; }
    .foot-grid { grid-template-columns: 1fr; gap: 44px; }
    .why-item { flex-direction: column; gap: 16px; }
    .facts li { grid-template-columns: 1fr; gap: 5px; }
}

/* Video mobil: sanftes Wandern links <-> rechts, jede Runde die andere Seite */
@keyframes heroPan {
    0%, 100% { object-position: left center; }
    50%      { object-position: right center; }
}

/* Bewegung abschalten, wenn der Nutzer das im System wünscht */
@media (prefers-reduced-motion: reduce) {
    .hero { animation: none; }
    .bubble { display: none; }
    .hero-scroll { animation: none; }
    .hero-video { animation: none !important; object-position: left center; }
    .hero-img, .frame-img, .card-photo { transform: none !important; }
}

/* ---------- Fotorahmen mit Parallax (O Nama, Zašto ODS) ---------- */
.frame {
    position: relative; overflow: hidden; border-radius: var(--r-lg);
    height: 460px; box-shadow: var(--shadow);
}
.frame--tall { height: 100%; min-height: 540px; }
.frame-img {
    position: absolute; inset: -10% 0; width: 100%; height: 120%;
    object-fit: cover; object-position: center top; will-change: transform;
}
/* Warum ODS: etwas mehr zur Mitte (leicht oberhalb) statt ganz oben */
.frame--tall .frame-img { object-position: center 30%; }

/* ---------- Fußzeile unten: Credit und dezenter Admin-Zugang ---------- */
.copyright {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
}
.foot-meta { display: inline-flex; align-items: center; gap: 10px; }
.foot-meta a { text-decoration: none; color: #7d90a8; transition: color 0.25s ease; }
.foot-meta a:hover { color: var(--light); }
.foot-sep { color: #45566d; }
/* Bewusst unauffällig – für den Betreiber, nicht für Besucher */
.foot-admin { color: #4a5b72; }

@media (max-width: 760px) {
    .copyright { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---------- Rechtsseite (AGB / Datenschutz) ---------- */
.legal .wrap { max-width: 820px; }
.legal-lang { display: none; }
.legal-lang.active { display: block; }
.legal h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 22px; }
.legal h1 + h2 { margin-top: 0; }
.legal h1:not(:first-child) { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.legal h2 { font-size: 1.25rem; margin: 30px 0 10px; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 6px; }
