/* ═══════════════════════════════════════════════════════════
   Notar Blaudeck – Design System v2
   Tiefes Marineblau · Hellgrau · Weiß · Commissioner
   Inspiriert von der Anmutung klassischer Kanzlei-Webauftritte.
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Farben */
    --navy:        #0A2234;
    --navy-800:    #0d2a40;
    --navy-700:    #14385a;
    --steel:       #3F5A72;
    --bg:          #F2F2F2;
    --surface:     #FFFFFF;
    --surface-2:   #FAFAF8;
    --line:        #E4E4E1;
    --line-soft:   #ECECE9;
    --ink:         #0A2234;
    --text:        #5C6670;
    --muted:       #97A0A8;
    --on-dark:     #F0EFE9;
    --on-dark-mut: rgba(240,239,233,0.62);
    --gold:        #C8A24B;   /* sehr sparsam: kleine Akzente */

    /* Status-LED */
    --led-on:      #36B37E;
    --led-warn:    #E0A92E;
    --led-off:     #9AA3AB;
    --led-alert:   #D24B41;

    /* Typografie */
    --sans:  'Commissioner', system-ui, -apple-system, sans-serif;
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

    --t-xs: .75rem;  --t-sm: .875rem; --t-base: 1rem; --t-lg: 1.125rem;
    --t-xl: 1.25rem; --t-2xl: 1.5rem; --t-3xl: 1.875rem; --t-4xl: 2.25rem;
    --t-5xl: 3rem;   --t-6xl: 3.75rem; --t-7xl: 4.75rem; --t-8xl: 6.5rem;

    /* Raster */
    --container: 1240px;
    --narrow:    840px;
    --r-sm: 6px; --r: 12px; --r-lg: 20px; --r-xl: 28px; --r-pill: 100px;

    /* Bewegung – weich & tief */
    --ease:      cubic-bezier(.22, 1, .36, 1);
    --ease-deep: cubic-bezier(.16, 1, .3, 1);
    --dur:       .4s;
    --dur-slow:  .9s;

    --header-h: 76px;
    --announce-h: 40px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    font-size: var(--t-base);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Typografie ────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--sans);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, var(--t-8xl)); }
h2 { font-size: clamp(2rem, 4vw, var(--t-5xl)); }
h3 { font-size: clamp(1.25rem, 2vw, var(--t-2xl)); font-weight: 700; }
h4 { font-size: var(--t-lg); font-weight: 700; }
p { max-width: 68ch; }
strong { font-weight: 700; color: var(--ink); }

/* ── Layout ────────────────────────────────────────────── */
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--bg       { background: var(--bg); }
.section--bg-light { background: var(--surface); }
.section--dark     { background: var(--navy); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: var(--on-dark-mut); }

/* ── Section-Header ────────────────────────────────────── */
.section-header { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: var(--t-xs); font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--steel); margin-bottom: 1.1rem;
}
.section-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-eyebrow--light { color: var(--on-dark-mut); }
.section-title { margin-bottom: 1.1rem; }
.section-title--light { color: #fff; }
.section-sub { font-size: var(--t-lg); color: var(--text); line-height: 1.65; }

/* ── Buttons (Pill mit Kreis-Pfeil) ────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .9rem;
    padding: .55rem .55rem .55rem 1.5rem;
    border-radius: var(--r-pill);
    font-size: var(--t-sm); font-weight: 600; letter-spacing: .01em;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    position: relative; line-height: 1;
}
.btn::after {
    content: ''; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.16);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
    transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
    flex: none;
}
.btn:hover::after { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(10,34,52,.5); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost::after { background-color: rgba(10,34,52,.08); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230A2234' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E"); }
.btn-ghost:hover { background: var(--navy); color: #fff; box-shadow: none; transform: translateY(-2px); }
.btn-ghost:hover::after { background-color: rgba(255,255,255,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E"); }
.btn-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.btn-outline::after { background: rgba(255,255,255,.14); }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-outline:hover::after { background-color: rgba(10,34,52,.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230A2234' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E"); }
.btn-sm { padding: .4rem .4rem .4rem 1.1rem; font-size: var(--t-xs); }
.btn-sm::after { width: 30px; height: 30px; }

/* ── Announcement-Bar ──────────────────────────────────── */
.announce-bar {
    background: var(--navy); color: var(--on-dark);
    font-size: var(--t-xs); letter-spacing: .04em;
    text-align: center; height: var(--announce-h);
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding-inline: 1rem;
}
.announce-bar strong { color: #fff; font-weight: 700; }
.announce-bar .led-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--led-on); box-shadow: 0 0 0 0 rgba(54,179,126,.6); animation: ledPulse 2.4s infinite; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(242,242,242,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    height: var(--header-h);
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.92); box-shadow: 0 1px 0 var(--line), 0 8px 30px -18px rgba(10,34,52,.25); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }

.site-logo { flex: none; display: flex; align-items: center; }
.site-logo svg { height: 42px; width: auto; }
.logo-text { font-family: var(--serif); font-size: var(--t-xl); font-weight: 600; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; }
.logo-text strong { color: var(--gold); font-weight: 600; }
.logo-text--light { color: #fff; }

.primary-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: .3rem; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block; padding: .6rem .85rem;
    font-size: var(--t-sm); font-weight: 600; color: var(--ink);
    border-radius: var(--r-sm); transition: color var(--dur), opacity var(--dur);
    opacity: .85;
}
.nav-list > li > a:hover, .nav-list > li.current-menu-item > a { opacity: 1; color: var(--navy); }
.nav-list .dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--r); box-shadow: 0 18px 50px -20px rgba(10,34,52,.3);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    z-index: 200; padding: .5rem;
}
.nav-list li:hover > .dropdown, .nav-list li:focus-within > .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-list .dropdown li a { display: block; padding: .6rem .8rem; font-size: var(--t-sm); color: var(--text); border-radius: var(--r-sm); transition: background var(--dur), color var(--dur); }
.nav-list .dropdown li a:hover { background: var(--bg); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: .8rem; margin-left: auto; }

/* Sprachumschalter */
.lang-switch { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.lang-switch__item { padding: .35rem .7rem; font-size: var(--t-xs); font-weight: 700; letter-spacing: .04em; color: var(--muted); transition: background var(--dur), color var(--dur); }
.lang-switch__item:hover { color: var(--navy); }
.lang-switch__item.is-current { background: var(--navy); color: #fff; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 34px; padding: 5px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--dur) var(--ease); }

/* Mobile-Nav */
.mobile-nav { display: none; position: fixed; inset: calc(var(--header-h)) 0 0 0; background: var(--bg); z-index: 99; padding: 2rem clamp(1.2rem,4vw,2.5rem); overflow-y: auto; transform: translateX(100%); transition: transform .4s var(--ease-deep); }
.mobile-nav.is-open { display: block; transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.mobile-nav ul a { display: block; font-size: var(--t-2xl); font-weight: 700; padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-nav .btn { margin-top: 1.6rem; width: 100%; justify-content: space-between; }

/* ── Status-LED ────────────────────────────────────────── */
.status-led { display: flex; flex-direction: column; gap: .55rem; }
.status-led__item { display: flex; align-items: center; gap: .6rem; font-size: var(--t-sm); }
.status-led__dot { width: 10px; height: 10px; border-radius: 50%; flex: none; position: relative; background: var(--led-off); transition: background var(--dur); }
.status-led__dot.is-on   { background: var(--led-on); box-shadow: 0 0 0 0 rgba(54,179,126,.55); animation: ledPulse 2.4s infinite; }
.status-led__dot.is-warn { background: var(--led-warn); box-shadow: 0 0 0 0 rgba(224,169,46,.5);  animation: ledPulse 2.6s infinite; }
.status-led__dot.is-off  { background: var(--led-off); }
.status-led__dot.is-alert{ background: var(--led-alert); box-shadow: 0 0 0 0 rgba(210,75,65,.5); animation: ledPulseAlert 2.6s infinite; }
@keyframes ledPulse { 0% { box-shadow: 0 0 0 0 rgba(54,179,126,.5); } 70% { box-shadow: 0 0 0 9px rgba(54,179,126,0); } 100% { box-shadow: 0 0 0 0 rgba(54,179,126,0); } }
@keyframes ledPulseAlert { 0% { box-shadow: 0 0 0 0 rgba(210,75,65,.5); } 70% { box-shadow: 0 0 0 9px rgba(210,75,65,0); } 100% { box-shadow: 0 0 0 0 rgba(210,75,65,0); } }
.status-led__label { color: var(--text); }
.status-led__label b { color: var(--ink); font-weight: 600; }
.section--dark .status-led__label,
.site-footer .status-led__label { color: rgba(240,239,233,.82); }
.section--dark .status-led__label b,
.site-footer .status-led__label b { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────────── */
.hero { position: relative; padding-block: clamp(3.5rem, 8vw, 7rem); overflow: hidden; background: var(--bg); }
.hero__bokeh {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    filter: blur(2px) saturate(1.05); opacity: .5; transform: scale(1.08);
}
.hero__bokeh::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, var(--bg) 30%, rgba(242,242,242,.6) 55%, rgba(242,242,242,.2) 100%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__eyebrow { font-size: var(--t-base); font-weight: 600; color: var(--steel); margin-bottom: 1rem; }
.hero__headline {
    font-size: clamp(2.8rem, 7.5vw, var(--t-8xl));
    font-weight: 800; line-height: .92; letter-spacing: -0.035em;
    color: var(--ink); text-transform: uppercase; margin-bottom: 1.4rem; max-width: none;
}
.hero__headline em { font-style: normal; color: var(--gold); display: block; }
.hero__sub { font-size: var(--t-lg); color: var(--text); line-height: 1.65; margin-bottom: 2rem; max-width: 46ch; }
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero__image { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -30px rgba(10,34,52,.4); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-deep); }
.hero__image-badge { position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-radius: var(--r); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 16px 40px -20px rgba(10,34,52,.4); }
.hero__image-badge strong { font-family: var(--serif); font-size: var(--t-4xl); color: var(--navy); line-height: 1; }
.hero__image-badge span { font-size: var(--t-sm); color: var(--text); font-weight: 500; }

/* ── Trust-Bar ─────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding-block: clamp(2rem, 4vw, 3rem); }
.trust-bar__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-bar__item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: .5rem 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.trust-bar__item:last-child { border-right: none; }
.trust-bar__number { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, var(--t-4xl)); font-weight: 600; color: #fff; line-height: 1; margin-bottom: .5rem; }
.trust-bar__label { font-size: var(--t-xs); color: var(--on-dark-mut); letter-spacing: .1em; text-transform: uppercase; }

/* ── Services ──────────────────────────────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
    background: var(--surface); border-radius: var(--r-lg); padding: 2rem 1.6rem;
    transition: transform var(--dur) var(--ease-deep), box-shadow var(--dur) var(--ease);
    position: relative; overflow: hidden; border: 1px solid var(--line-soft);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(10,34,52,.35); }
.service-card__icon { width: 48px; height: 48px; color: var(--navy); margin-bottom: 1.4rem; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title { font-size: var(--t-xl); font-weight: 700; color: var(--ink); margin-bottom: .6rem; letter-spacing: -0.01em; }
.service-card__text { font-size: var(--t-sm); color: var(--text); line-height: 1.6; margin-bottom: 1.3rem; }
.service-card__link { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--t-sm); font-weight: 700; color: var(--navy); transition: gap var(--dur) var(--ease); }
.service-card__link svg { width: 30px; height: 30px; padding: 7px; border-radius: 50%; background: var(--bg); transition: background var(--dur), transform var(--dur); }
.service-card:hover .service-card__link svg { background: var(--gold); color: #fff; transform: translateX(3px); }

/* ── About ─────────────────────────────────────────────── */
.about__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__image { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 30px 70px -30px rgba(10,34,52,.4); }
.about__image::before { content: ''; position: absolute; inset: auto -2rem -2rem auto; width: 60%; height: 60%; background: var(--navy); border-radius: var(--r-xl); z-index: -1; }
.about__image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 1.2s var(--ease-deep); }
.about__lead { font-size: var(--t-xl); font-family: var(--sans); font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 1.2rem; max-width: none; letter-spacing: -0.01em; }
.about__content > p { color: var(--text); margin-bottom: 1.1rem; }
.about__highlights { display: flex; flex-direction: column; gap: 0; margin-block: 1.8rem; border-top: 1px solid var(--line); }
.about__highlight { display: flex; gap: 1.2rem; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.about__highlight strong { min-width: 130px; font-size: var(--t-sm); font-weight: 700; color: var(--navy); }
.about__highlight span { font-size: var(--t-sm); color: var(--text); }

/* ── USPs ──────────────────────────────────────────────── */
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.usp-card { padding: 2rem 1.6rem; background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line-soft); transition: transform var(--dur) var(--ease-deep), box-shadow var(--dur) var(--ease); }
.usp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(10,34,52,.3); }
.usp-card__icon { width: 44px; height: 44px; color: var(--navy); margin-bottom: 1.2rem; }
.usp-card__icon svg { width: 100%; height: 100%; }
.usp-card h3 { font-size: var(--t-lg); font-weight: 700; margin-bottom: .7rem; }
.usp-card p { font-size: var(--t-sm); color: var(--text); line-height: 1.6; }

/* ── Booking-CTA ───────────────────────────────────────── */
.booking-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.booking-cta__list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.8rem; }
.booking-cta__list li { display: flex; align-items: center; gap: .8rem; font-size: var(--t-sm); color: var(--on-dark-mut); }
.booking-cta__list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.booking-cta__form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 2rem; }
.booking-cta__alternative { margin-top: 1.4rem; font-size: var(--t-sm); color: var(--on-dark-mut); text-align: center; max-width: none; }
.booking-cta__alternative a { color: #fff; font-weight: 600; }

/* ── Contact-Strip ─────────────────────────────────────── */
.contact-strip__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.8rem; }
.contact-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-list__icon { width: 24px; height: 24px; color: var(--navy); flex: none; margin-top: 2px; }
.contact-list__icon svg { width: 100%; height: 100%; }
.contact-list li div { display: flex; flex-direction: column; gap: .2rem; }
.contact-list li strong { font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-list li a, .contact-list li span, .contact-list li address { font-size: var(--t-base); color: var(--ink); }
.contact-list li a:hover { color: var(--steel); }

.map-placeholder { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; position: relative; background: #E7E7E4; }
.map-placeholder__link { display: block; width: 100%; height: 100%; }
.map-placeholder__link img { width: 100%; height: 100%; object-fit: cover; }

/* Sichtbare OpenStreetMap-Karte */
.map-embed { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; background: #E7E7E4; box-shadow: 0 16px 40px -24px rgba(10,34,52,.35); }
.map-embed--wide { aspect-ratio: 21/9; }
.map-embed__frame { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }
.map-embed__links { position: absolute; bottom: .9rem; left: .9rem; display: flex; gap: .5rem; }
.map-embed__links a { display: inline-flex; align-items: center; gap: .4rem; background: var(--surface); color: var(--ink); font-size: var(--t-xs); font-weight: 600; padding: .45rem .85rem; border-radius: var(--r-pill); box-shadow: 0 6px 18px -6px rgba(10,34,52,.3); transition: color var(--dur), transform var(--dur); }
.map-embed__links a:hover { color: var(--gold); transform: translateY(-1px); }
.map-embed__links a svg { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 1024px) { .map-embed--wide { aspect-ratio: 16/9; } }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: var(--on-dark-mut); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2.5rem; padding-block: clamp(3rem,6vw,5rem); }
.footer-brand .site-logo { margin-bottom: 1.2rem; }
.footer-tagline { font-size: var(--t-sm); color: var(--on-dark-mut); margin-bottom: 1.2rem; max-width: none; }
.footer-address { font-size: var(--t-sm); color: var(--on-dark-mut); line-height: 1.7; margin-bottom: 1.4rem; }
.footer-heading { font-size: var(--t-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: var(--t-sm); color: rgba(240,239,233,.78); transition: color var(--dur); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.footer-contact li { display: flex; flex-direction: column; gap: 2px; }
.footer-contact__label { font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footer-contact a, .footer-contact span { font-size: var(--t-base); color: #fff; }
.footer-contact a { color: var(--gold); font-weight: 500; }
.footer-contact a:hover { color: #fff; }
.footer-hours h4 { font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .6rem; }
.footer-hours table { border-collapse: collapse; font-size: var(--t-sm); color: rgba(240,239,233,.85); }
.footer-hours td { padding: 2px 1rem 2px 0; }
.footer-hours small { display: block; font-size: var(--t-xs); color: rgba(255,255,255,.4); margin-top: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: var(--t-xs); color: rgba(255,255,255,.4); max-width: none; }
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom nav a { font-size: var(--t-xs); color: rgba(255,255,255,.5); transition: color var(--dur); }
.footer-bottom nav a:hover { color: var(--gold); }

/* ── Standardseite / Page-Hero ─────────────────────────── */
.page-hero { background: var(--surface); padding-block: clamp(3rem,6vw,5rem) clamp(2rem,4vw,3.5rem); border-bottom: 1px solid var(--line-soft); }
.page-hero .container { max-width: var(--narrow); }
.page-hero__eyebrow { display: inline-flex; margin-bottom: 1rem; }
.page-hero__title { margin-bottom: 1.1rem; }
.page-hero__sub { font-size: var(--t-lg); color: var(--text); max-width: 58ch; }
.page-content { padding-block: clamp(3rem,6vw,5rem); }
.page-content .container { max-width: var(--narrow); }
.page-content h2 { margin-block: 2rem 1rem; }
.page-content h3 { margin-block: 1.6rem .8rem; }
.page-content p { color: var(--text); margin-bottom: 1rem; }
.page-content ul, .page-content ol { padding-left: 1.3rem; margin-bottom: 1.3rem; list-style: disc; }
.page-content li { color: var(--text); margin-bottom: .5rem; }
.page-content a { color: var(--steel); text-decoration: underline; }

/* ── Über den Notar (Detail) ───────────────────────────── */
.about-full__inner { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.about-full__image { position: sticky; top: calc(var(--header-h) + 1.5rem); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(10,34,52,.4); }
.about-full__image img { width: 100%; height: auto; }
.about-full__content h2 { margin-block: 2rem 1rem; }
.about-full__content h2:first-child { margin-top: 0; }
.about-full__content p { color: var(--text); margin-bottom: 1rem; }
.about-full__content .btn { margin-top: 1rem; }
.notar-facts { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-block: 1.8rem; }
.notar-fact { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.notar-fact__label { font-size: var(--t-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); }
.notar-fact__value { font-size: var(--t-sm); color: var(--text); }
.styled-list { list-style: none; padding: 0; margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: .6rem; }
.styled-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: var(--t-base); color: var(--text); }
.styled-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; margin-top: .6rem; }

/* ── Team ──────────────────────────────────────────────── */
.team-intro { max-width: 680px; margin-bottom: 3rem; }
.team-intro p { font-size: var(--t-lg); color: var(--text); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur) var(--ease-deep), box-shadow var(--dur) var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -28px rgba(10,34,52,.32); }
.team-card__symbol { aspect-ratio: 16 / 10; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card__symbol::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); opacity: .35; }
.team-card__symbol-ring { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(200,162,75,.45); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: transform .8s var(--ease-deep), border-color var(--dur) var(--ease); }
.team-card__symbol-ring svg { width: 19px; height: 19px; }
.team-card:hover .team-card__symbol-ring { transform: scale(1.07); border-color: rgba(200,162,75,.8); }

/* ── Werte / Leitbild ─────────────────────────── */
.values { text-align: center; }
.values__header { max-width: 760px; margin-inline: auto; }
.values__lead { margin-top: 1rem; color: rgba(240,239,233,.82); }
.value-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 2.4rem auto 0; max-width: 880px; padding: 0; }
.value-chip { font-size: var(--t-sm); font-weight: 500; letter-spacing: .01em; color: #F0EFE9; padding: .55rem 1.15rem; border-radius: var(--r-pill); border: 1px solid rgba(200,162,75,.38); background: rgba(200,162,75,.07); transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.value-chip:hover { transform: translateY(-2px); border-color: rgba(200,162,75,.75); background: rgba(200,162,75,.14); }

/* ── Karriere: Stellenanzeigen ────────────────── */
.job-posting { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 2rem 2.2rem; margin: 1.6rem 0 2rem; }
.job-posting > h3 { margin: 0 0 .6rem; }
.job-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.3rem; padding: 0; }
.job-meta li { font-size: var(--t-xs); font-weight: 600; color: var(--navy); background: rgba(200,162,75,.12); border: 1px solid rgba(200,162,75,.35); border-radius: var(--r-pill); padding: .3rem .85rem; }
.job-posting__desc > p:first-child { margin-top: 0; }
.job-posting__desc p strong { color: var(--navy); }
.job-posting .btn { margin-top: 1.4rem; }

/* ── Leistungen: Zielgruppen ──────────────────── */
.leistung-block { margin-top: 3.4rem; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; margin-top: 1.6rem; }
.audience-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(10,34,52,.4); }
.audience-card__icon { color: var(--gold); margin-bottom: 1rem; }
.audience-card__icon svg { width: 30px; height: 30px; }
.audience-card h3 { margin: 0 0 .5rem; }
.audience-card > p { color: var(--muted, #5b6b78); margin-bottom: 1.1rem; }
.audience-card__areas { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.audience-card__areas a { font-size: var(--t-xs); font-weight: 500; color: var(--navy); background: rgba(10,34,52,.05); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .3rem .8rem; text-decoration: none; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.audience-card__areas a:hover { background: rgba(200,162,75,.14); border-color: rgba(200,162,75,.5); }
.team-card__body { padding: 1.5rem; }
.team-card__name { font-size: var(--t-lg); font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.team-card__role { font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); margin-bottom: .9rem; max-width: none; }
.team-card__text { font-size: var(--t-sm); color: var(--text); line-height: 1.6; }
.team-card__link { display: inline-block; margin-top: .9rem; font-size: var(--t-sm); font-weight: 700; color: var(--navy); }
.team-card--azubi { background: var(--navy); color: var(--on-dark); }
.team-card--azubi .team-card__name, .team-card--azubi .team-card__role { color: #fff; }
.team-card--azubi .team-card__text { color: var(--on-dark-mut); }
.team-card--azubi .team-card__link { color: var(--gold); }
.team-card--azubi .team-card__body { padding: 2rem 1.5rem; }
.team-card__azubi-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 1.2rem; }
.team-card__azubi-icon svg { width: 100%; height: 100%; }

/* ── Karriere ──────────────────────────────────────────── */
.karriere-inner { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.karriere-content h2 { margin-block: 2rem 1rem; }
.karriere-content h2:first-child { margin-top: 0; }
.karriere-content h3 { margin-block: 1.6rem .8rem; }
.karriere-content p { color: var(--text); margin-bottom: 1rem; }
.karriere-cta { background: var(--surface); border-radius: var(--r-lg); padding: 2rem; margin-top: 2.5rem; border: 1px solid var(--line-soft); }
.karriere-cta h3 { margin-bottom: .8rem; }
.karriere-cta p { margin-bottom: 1.4rem; }
.karriere-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.info-box { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.6rem; margin-bottom: 1rem; }
.info-box h3 { font-size: var(--t-sm); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.info-box address, .info-box p { color: var(--text); font-size: var(--t-sm); margin-bottom: .5rem; }
.info-box a { display: block; font-size: var(--t-sm); color: var(--steel); margin-top: .5rem; }
.info-box--gold { background: var(--navy); border-color: var(--navy); }
.info-box--gold h3 { color: rgba(255,255,255,.5); }
.info-box--gold p, .info-box--gold address { color: var(--on-dark-mut); }
.info-box--gold strong { color: #fff; }

/* ── Leistungsseite (Detail) ───────────────────────────── */
.leistung-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; padding-block: clamp(3rem,6vw,5rem) clamp(2.5rem,4vw,3.5rem); background-size: cover; background-position: center; }
.leistung-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,34,52,.45) 0%, rgba(10,34,52,.86) 100%); }
.leistung-hero__inner { position: relative; z-index: 1; }
.leistung-hero__title { color: #fff; margin-bottom: 1rem; }
.leistung-hero__sub { color: rgba(255,255,255,.85); font-size: var(--t-lg); max-width: 60ch; }
.leistung-body__inner { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.leistung-intro { font-size: var(--t-xl); font-weight: 600; color: var(--ink); line-height: 1.45; margin-bottom: 2rem; max-width: none; letter-spacing: -0.01em; }
.leistung-main h2 { margin-block: 2rem 1rem; }
.leistung-main h2:first-of-type { margin-top: 0; }
.leistung-main > p { color: var(--text); margin-bottom: 1rem; }

.faq { display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color var(--dur); }
.faq-item[open] { border-color: var(--navy); }
.faq-item__q { cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; font-size: var(--t-lg); color: var(--ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; font-size: var(--t-2xl); font-weight: 400; color: var(--steel); flex: none; transition: transform var(--dur) var(--ease); }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { color: var(--steel); }
.faq-item__a { padding: 0 1.3rem 1.3rem; }
.faq-item__a p { color: var(--text); margin: 0; }

.leistung-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.2rem; }
.checklist-box { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.6rem; }
.checklist-box h3 { font-size: var(--t-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.checklist { display: flex; flex-direction: column; gap: .8rem; }
.checklist li { display: flex; align-items: flex-start; gap: .8rem; font-size: var(--t-sm); color: var(--text); line-height: 1.5; }
.checklist li::before { content: ''; flex: none; width: 18px; height: 18px; margin-top: 1px; background: var(--navy); border-radius: 50%; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.aside-cta { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 1.8rem; text-align: center; }
.aside-cta h3 { color: #fff; margin-bottom: .6rem; }
.aside-cta p { color: var(--on-dark-mut); font-size: var(--t-sm); margin-bottom: 1.4rem; max-width: none; }
.aside-cta .btn { width: 100%; justify-content: space-between; margin-bottom: .8rem; }
.aside-cta__phone { display: block; font-size: var(--t-sm); color: var(--gold); }
.leistung-intro-text { max-width: 760px; }
.leistung-intro-text p { font-size: var(--t-lg); color: var(--text); }
.leistung-nav__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.leistung-nav__item { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: 1.1rem 1.3rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r); font-size: var(--t-sm); font-weight: 700; color: var(--ink); transition: all var(--dur) var(--ease); }
.leistung-nav__item:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.leistung-nav__item svg { color: var(--steel); flex: none; transition: color var(--dur); }
.leistung-nav__item:hover svg { color: #fff; }

/* ── Kontakt ───────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.kontakt-form-col h2 { margin-bottom: .8rem; }
.kontakt-intro { color: var(--text); margin-bottom: 2rem; }
.kontakt-info-col { display: flex; flex-direction: column; gap: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.hours-table td { padding: .5rem 0; color: var(--text); border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }
.cf7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cf7-row { margin: 0; }
.cf7-row--full { grid-column: 1 / -1; }
.cf7-row label { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--ink); }
.cf7-row input[type="text"], .cf7-row input[type="email"], .cf7-row input[type="tel"], .cf7-row select, .cf7-row textarea {
    width: 100%; margin-top: .5rem; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--r);
    font-family: var(--sans); font-size: var(--t-base); color: var(--ink); background: var(--surface); outline: none; transition: border-color var(--dur);
}
.cf7-row input:focus, .cf7-row select:focus, .cf7-row textarea:focus { border-color: var(--navy); }
.cf7-row textarea { min-height: 150px; resize: vertical; }
.cf7-consent { font-size: var(--t-sm); color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; }
.cf7-consent a { color: var(--steel); text-decoration: underline; }
.wpcf7-submit { display: inline-flex; align-items: center; background: var(--navy); color: #fff; border: none; padding: .9rem 2rem; border-radius: var(--r-pill); font-family: var(--sans); font-size: var(--t-sm); font-weight: 600; cursor: pointer; transition: all var(--dur) var(--ease); }
.wpcf7-submit:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(10,34,52,.5); }
.wpcf7-response-output { margin: 1rem 0 0 !important; padding: .8rem 1rem !important; border-radius: var(--r); font-size: var(--t-sm); }
.wpcf7 form.sent .wpcf7-response-output { border: 1px solid #36B37E; background: #eef9f3; color: #1f6b48; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output { border: 1px solid #c0392b; background: #fdeeec; color: #962d22; }
.wpcf7-not-valid-tip { color: #c0392b; font-size: var(--t-xs); }

/* ── Kosten ────────────────────────────────────────────── */
.kosten-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.kosten-main h2 { margin-block: 2rem 1rem; }
.kosten-main h2:first-child { margin-top: 0; }
.kosten-main p { color: var(--text); margin-bottom: 1rem; }
.kosten-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1rem; }
.kosten-aside .info-box a { display: inline; }
.info-box--gold a { color: var(--gold); }

/* ── Einzugsgebiet (Region) ────────────────────────────── */
.region__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.region__text p { color: var(--text); margin-bottom: 1.6rem; }
.region__text .btn { margin-top: .4rem; }
.region__places { display: flex; flex-wrap: wrap; gap: .6rem; }
.region__chip { display: inline-flex; align-items: center; padding: .5rem 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill); font-size: var(--t-sm); font-weight: 500; color: var(--ink); transition: border-color var(--dur), color var(--dur), transform var(--dur); }
.region__chip:hover { border-color: var(--gold); color: var(--steel); transform: translateY(-1px); }
@media (max-width: 1024px) { .region__inner { grid-template-columns: 1fr; } }

/* ── Gebührenrechner ───────────────────────────────────── */
.fee-calc { background: var(--surface); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.5rem); max-width: 920px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.fee-calc__form { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.2rem; margin-bottom: 1.6rem; }
.fee-calc__field { display: flex; flex-direction: column; gap: .5rem; }
.fee-calc__field > span { font-size: var(--t-sm); font-weight: 600; color: var(--ink); }
.fee-calc__input { position: relative; display: flex; align-items: center; }
.fee-calc__input input { width: 100%; padding: .85rem 2.4rem .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--sans); font-size: var(--t-lg); font-weight: 600; color: var(--ink); background: var(--surface-2); outline: none; transition: border-color var(--dur); }
.fee-calc__input input:focus { border-color: var(--navy); }
.fee-calc__input em { position: absolute; right: 1rem; font-style: normal; font-weight: 600; color: var(--muted); }
.fee-calc__field select { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r); font-family: var(--sans); font-size: var(--t-base); color: var(--ink); background: var(--surface-2); outline: none; cursor: pointer; transition: border-color var(--dur); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230A2234' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.fee-calc__field select:focus { border-color: var(--navy); }
.fee-calc__result { border-top: 1px solid var(--line); padding-top: 1.2rem; display: flex; flex-direction: column; gap: .2rem; }
.fee-calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: var(--t-sm); color: var(--text); border-bottom: 1px solid var(--line-soft); }
.fee-calc__row b { font-size: var(--t-base); color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.fee-calc__row--total { border-bottom: none; margin-top: .4rem; padding-top: 1rem; border-top: 2px solid var(--navy); }
.fee-calc__row--total span { font-size: var(--t-base); font-weight: 600; color: var(--ink); }
.fee-calc__row--total b { font-family: var(--serif); font-size: var(--t-2xl); color: var(--gold); }
.fee-calc__note { font-size: var(--t-xs); color: var(--muted); line-height: 1.6; margin-top: 1.4rem; max-width: none; }
.fee-calc__note a { color: var(--steel); text-decoration: underline; display: inline-block; margin-top: .3rem; font-weight: 600; }
@media (max-width: 640px) { .fee-calc__form { grid-template-columns: 1fr; } }

/* ── Reveal-Animationen (tief & weich) ─────────────────── */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity var(--dur-slow) var(--ease-deep), transform var(--dur-slow) var(--ease-deep); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }
[data-zoom] img, img[data-zoom] { transform: scale(1.12); transition: transform 1.4s var(--ease-deep); will-change: transform; }
[data-zoom].is-in img, img[data-zoom].is-in { transform: scale(1); }

/* ── Under Construction ────────────────────────────────── */
body.uc { background: var(--navy); color: var(--on-dark); min-height: 100vh; }
.uc__bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; background:
    radial-gradient(120% 80% at 80% -10%, rgba(200,162,75,.16), transparent 55%),
    radial-gradient(90% 70% at -10% 110%, rgba(63,90,114,.35), transparent 60%),
    linear-gradient(165deg, #0A2234 0%, #0d2a40 100%); }
.uc__bg::after { content: ''; position: absolute; inset: -20%;
    background: radial-gradient(closest-side, rgba(200,162,75,.10), transparent);
    width: 60vmax; height: 60vmax; left: 55%; top: -10%;
    animation: ucFloat 18s ease-in-out infinite alternate; }
@keyframes ucFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(-6%, 8%) scale(1.12); } }

.uc__wrap { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: clamp(2rem,5vw,4rem) clamp(1.2rem,4vw,2.5rem); }
.uc__inner { width: min(100%, 1080px); }

/* Weiche CSS-Einblendung (unabhängig von JS — Seite ist immer sichtbar) */
.uc__logo, .uc__eyebrow, .uc__title, .uc__lead, .uc__cards > *, .uc__foot { opacity: 0; animation: ucIn .9s var(--ease-deep) forwards; }
.uc__logo    { animation-delay: .05s; }
.uc__eyebrow { animation-delay: .15s; }
.uc__title   { animation-delay: .28s; }
.uc__lead    { animation-delay: .42s; }
.uc__cards > *:nth-child(1) { animation-delay: .56s; }
.uc__cards > *:nth-child(2) { animation-delay: .68s; }
.uc__foot    { animation-delay: .82s; }
@keyframes ucIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
    .uc__logo, .uc__eyebrow, .uc__title, .uc__lead, .uc__cards > *, .uc__foot { animation: none; opacity: 1; transform: none; }
}

.uc__logo { display: inline-block; font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.7rem); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #fff; margin-bottom: clamp(2rem,5vw,3.5rem); }
.uc__logo strong { color: var(--gold); font-weight: 600; }

.uc__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: var(--t-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light, #D4A84B); margin-bottom: 1.1rem; }
.uc__eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }
.uc__title { font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.4rem; max-width: 18ch; }
.uc__title em { font-style: normal; color: var(--gold); white-space: nowrap; }
.uc__lead { font-size: clamp(1.05rem,1.6vw,1.2rem); line-height: 1.7; color: rgba(240,239,233,.8); max-width: 60ch; margin-bottom: clamp(2.2rem,5vw,3.2rem); }

.uc__cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,2.5vw,2rem); align-items: stretch; }
.uc__card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: clamp(1.5rem,3vw,2.2rem); backdrop-filter: blur(4px); }
.uc__card h2 { color: #fff; font-size: var(--t-xl); font-weight: 700; margin-bottom: 1.3rem; }

.uc__contact-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.6rem; }
.uc__contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.uc__contact-list .uc__ico { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.uc__contact-list .uc__ico svg { width: 100%; height: 100%; }
.uc__contact-list b { display: block; font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1px; }
.uc__contact-list a, .uc__contact-list span, .uc__contact-list address { font-size: var(--t-base); color: #fff; }
.uc__contact-list a:hover { color: var(--gold); }

.uc__hours { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; margin-bottom: 1.3rem; }
.uc__hours table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); color: rgba(240,239,233,.82); }
.uc__hours td { padding: 3px 0; }
.uc__hours td:last-child { text-align: right; color: #fff; }
.uc__hours caption { text-align: left; font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .5rem; }

.uc .status-led { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; }
.uc .status-led__label { color: rgba(240,239,233,.82); }
.uc .status-led__label b { color: var(--gold); }
.uc__livestatus { display: inline-flex; align-items: center; gap: .55rem; font-size: var(--t-sm); color: rgba(240,239,233,.85); margin-bottom: 1.2rem; }
.uc__livestatus .led-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--led-off); }

.uc__map .map-embed { height: 100%; aspect-ratio: auto; min-height: 320px; }
.uc__map { display: flex; }
.uc__map .map-embed { width: 100%; }

.uc__foot { margin-top: clamp(2rem,4vw,3rem); display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.4rem; font-size: var(--t-sm); color: rgba(255,255,255,.5); }
.uc__foot a { color: rgba(255,255,255,.7); transition: color var(--dur); }
.uc__foot a:hover { color: var(--gold); }
.uc__foot .uc__en { flex-basis: 100%; font-size: var(--t-xs); color: rgba(255,255,255,.4); margin-top: .6rem; max-width: none; }

@media (max-width: 800px) { .uc__cards { grid-template-columns: 1fr; } }

/* ── KI-Chatbot ────────────────────────────────────────── */
.nb-chat { position: fixed; right: clamp(1rem,3vw,1.8rem); bottom: clamp(1rem,3vw,1.8rem); z-index: 90; font-family: var(--sans); }
.nb-chat__launch { width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer; color: #fff; background: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 34px -12px rgba(10,34,52,.6); transition: transform var(--dur) var(--ease), background var(--dur); }
.nb-chat__launch:hover { transform: translateY(-3px) scale(1.04); background: var(--navy-700); }
.nb-chat.is-open .nb-chat__launch { transform: scale(.92); opacity: .85; }
.nb-chat__panel[hidden], .nb-chat__log[hidden], .nb-chat__form[hidden] { display: none !important; }
.nb-chat__panel { position: absolute; right: 0; bottom: 74px; width: min(380px, calc(100vw - 2rem)); background: var(--surface); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; max-height: min(580px, calc(100vh - 7rem)); box-shadow: 0 30px 60px -22px rgba(10,34,52,.4); animation: nbIn .35s var(--ease-deep); }
@keyframes nbIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.nb-chat__head { display: flex; align-items: center; gap: .7rem; padding: .95rem 1rem; background: var(--navy); color: #fff; }
.nb-chat__avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-family: var(--serif); font-size: var(--t-sm); font-weight: 600; display: flex; align-items: center; justify-content: center; flex: none; }
.nb-chat__title { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.nb-chat__title strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.nb-chat__title span { font-size: .7rem; opacity: .7; }
.nb-chat__close { background: none; border: none; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0 .2rem; opacity: .8; }
.nb-chat__close:hover { opacity: 1; }
.nb-chat__consent { padding: 1.3rem 1.2rem; }
.nb-chat__consent > p { font-size: .92rem; line-height: 1.55; color: var(--ink); margin: 0 0 .8rem; max-width: none; }
.nb-chat__hint { font-size: .76rem !important; color: var(--muted); }
.nb-chat__hint a { color: var(--steel); text-decoration: underline; }
.nb-chat__log { flex: 1; overflow-y: auto; padding: 1.1rem 1rem; display: flex; flex-direction: column; gap: .6rem; background: var(--bg); }
.nb-chat__msg { max-width: 86%; padding: .6rem .85rem; border-radius: 15px; font-size: .9rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word; }
.nb-chat__msg--bot { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; box-shadow: 0 3px 10px -6px rgba(10,34,52,.2); }
.nb-chat__msg--me { align-self: flex-end; background: var(--navy); color: #fff; border-bottom-right-radius: 5px; }
.nb-chat__msg.is-typing { display: flex; gap: 5px; align-items: center; }
.nb-chat__msg.is-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--steel); opacity: .4; animation: nbDot 1.1s infinite; }
.nb-chat__msg.is-typing span:nth-child(2) { animation-delay: .18s; }
.nb-chat__msg.is-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes nbDot { 0%,60%,100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.nb-chat__form { display: flex; align-items: center; gap: .5rem; padding: .6rem .7rem; border-top: 1px solid var(--line-soft); background: #fff; }
.nb-chat__form input { flex: 1; border: 1px solid var(--line); border-radius: 22px; padding: .6rem 1rem; font-size: .9rem; font-family: var(--sans); outline: none; background: var(--bg); }
.nb-chat__form input:focus { border-color: var(--navy); }
.nb-chat__form button { flex: none; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer; color: #fff; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.nb-chat__form button:hover { transform: scale(1.07); }

/* ── A11y & Utilities ──────────────────────────────────── */
:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--navy); color: #fff; padding: .5rem 1rem; border-radius: 0 0 var(--r) var(--r); font-weight: 600; z-index: 1000; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services__grid, .usps__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .leistung-nav__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__image { max-height: 460px; aspect-ratio: 16/10; }
    .about__inner, .contact-strip__inner, .booking-cta__inner { grid-template-columns: 1fr; }
    .about-full__inner { grid-template-columns: 1fr; }
    .about-full__image { position: static; max-width: 400px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .leistung-body__inner, .kontakt-grid, .kosten-grid, .karriere-inner { grid-template-columns: 1fr; }
    .leistung-aside, .kosten-aside { position: static; flex-direction: row; flex-wrap: wrap; }
    .leistung-aside > *, .kosten-aside > * { flex: 1; min-width: 280px; }
    .trust-bar__list { grid-template-columns: repeat(2, 1fr); }
    .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-block: 1rem; }
    .trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }
    .header-actions .btn-sm { display: none; }
    .announce-bar { font-size: 10px; }
}
@media (max-width: 640px) {
    .services__grid, .usps__grid, .team-grid, .footer-main { grid-template-columns: 1fr; }
    .leistung-nav__grid { grid-template-columns: 1fr; }
    .cf7-grid { grid-template-columns: 1fr; }
    .leistung-aside, .kosten-aside { flex-direction: column; }
    .footer-bottom__inner { flex-direction: column; text-align: center; }
    .hero__actions { width: 100%; }
    .hero__actions .btn { width: 100%; justify-content: space-between; }
}

/* ── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    [data-zoom] img, img[data-zoom] { transform: none !important; }
}
