/* =========================================================
   Claudia Krauspenhaar — Rechtsanwältin und Notarin
   Hofgeismar · klassisch-zurückhaltendes Design in Notar-Rot
   ========================================================= */

:root {
    --red:        #8c1d2c;
    --red-dark:   #6b1220;
    --red-deep:   #4a0c17;
    --gold:       #c2a15c;

    --ink:        #191615;
    --ink-soft:   #57504d;
    --ink-mute:   #857d79;

    --paper:      #ffffff;
    --tint:       #faf7f5;
    --tint-2:     #f2ebe7;
    --line:       #e7dfda;
    --line-soft:  #f0e9e5;

    --radius:     4px;
    --radius-lg:  8px;
    --shadow-sm:  0 1px 2px rgba(30,15,18,.04), 0 6px 16px -10px rgba(30,15,18,.18);
    --shadow:     0 24px 60px -32px rgba(45,18,24,.38);

    --maxw:       1160px;
    --serif:      'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
    --sans:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --ease:       cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.68;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-dark); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--red); color: #fff; padding: 12px 20px; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typografie ---------- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.005em;
    color: var(--ink);
    margin: 0 0 .55em;
}
h2 { font-size: clamp(2rem, 3.4vw, 2.95rem); }
h3 { font-size: 1.32rem; letter-spacing: 0; }
p  { margin: 0 0 1.1rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 13px;
    text-transform: uppercase; letter-spacing: .17em;
    font-size: .715rem; font-weight: 600;
    color: var(--red);
    margin: 0 0 1.15rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow-light { color: var(--gold); }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }

/* ---------- Reveal-Animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent; border-radius: var(--radius);
    font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px -14px rgba(140,29,44,.85); }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(140,29,44,.9); }

.btn-ghost { border-color: rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.7); color: #fff; transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px -18px rgba(40,20,24,.6);
    background: rgba(255,255,255,.96);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 82px; transition: height .3s var(--ease); }
.site-header.is-scrolled .header-inner { height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.brand-monogram { display: block; width: 42px; height: 42px; color: var(--red); flex: none; transition: transform .35s var(--ease); }
.brand-monogram svg { width: 100%; height: 100%; display: block; }
.brand:hover .brand-monogram { transform: rotate(-3deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; font-weight: 700; letter-spacing: .01em; }
.brand-sub { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { position: relative; color: var(--ink-soft); font-size: .94rem; font-weight: 500; padding: 6px 0; }
.main-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform .32s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--red); }

.main-nav .nav-cta {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--red); color: #fff; padding: 11px 22px; border-radius: var(--radius);
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.main-nav .nav-cta svg { width: 16px; height: 16px; }
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; color: #fff; overflow: hidden;
    background: url("../img/hero.jpg") center right / cover no-repeat;
    background-color: #16100f;
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        linear-gradient(96deg, rgba(16,10,11,.95) 0%, rgba(18,11,12,.88) 34%, rgba(22,13,14,.6) 68%, rgba(24,14,15,.42) 100%),
        linear-gradient(0deg, rgba(14,8,9,.5), transparent 58%);
}
/* sauberer Abschluss: schmale Goldlinie statt weichem Verlauf */
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
    opacity: .85;
}
.hero-inner { position: relative; z-index: 1; padding: 108px 28px 104px; max-width: 880px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 13px;
    text-transform: uppercase; letter-spacing: .19em; font-size: .755rem; font-weight: 600;
    color: var(--gold); margin: 0 0 22px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .65; }

.hero-title { font-size: clamp(2.7rem, 5.6vw, 4.35rem); color: #fff; margin: 0 0 24px; letter-spacing: -.015em; }
.hero-lead { font-size: 1.16rem; line-height: 1.72; max-width: 620px; color: rgba(255,255,255,.86); margin: 0 0 38px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 62px; }

.hero-meta {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px;
    border-top: 1px solid rgba(255,255,255,.18); padding-top: 30px;
}
.hero-meta-item { display: flex; align-items: flex-start; gap: 13px; color: #fff; }
.hm-icon { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; transition: transform .3s var(--ease); }
a.hero-meta-item:hover .hm-icon { transform: translateY(-2px); }
.hm-body { display: flex; flex-direction: column; min-width: 0; }
.hm-body strong { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; letter-spacing: .005em; }
.hm-body > span { font-size: .84rem; color: rgba(255,255,255,.62); }
a.hero-meta-item:hover .hm-body strong { color: var(--gold); }

/* ---------- Sektionen ---------- */
.section { padding: 104px 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 660px; margin: 0 auto 62px; text-align: center; }
.section-intro { color: var(--ink-soft); font-size: 1.06rem; margin: 0; }

/* ---------- Profil ---------- */
.profil-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }

.profil-intro { position: sticky; top: 116px; }
.profil-intro h2 { margin-bottom: 1.4em; }

.profil-signatur { display: flex; flex-direction: column; margin: 0; }
.sig-rule { width: 46px; height: 2px; background: var(--red); margin-bottom: 18px; }
.profil-signatur strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.2; }
.sig-rolle { font-size: .87rem; color: var(--ink-mute); letter-spacing: .05em; margin-top: 3px; }

.profil-text p { color: var(--ink-soft); }
.profil-text > p:first-child { font-size: 1.1rem; color: var(--ink); }

.tag-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.tag-list li {
    font-size: .8rem; color: var(--ink-soft);
    border: 1px solid var(--line); border-radius: 999px;
    padding: 6px 15px; font-weight: 500;
    transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.tag-list li:hover { border-color: var(--red); color: var(--red); background: #fff; }

.profil-facts { margin-top: 34px; border-top: 1px solid var(--line); }
.profil-facts > div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.profil-facts dt { color: var(--ink-mute); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; }
.profil-facts dd { margin: 0; font-weight: 600; text-align: right; }

/* ---------- Leistungskarten ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.card {
    background: var(--paper);
    padding: 40px 34px 38px;
    position: relative;
    transition: background .3s var(--ease), transform .3s var(--ease);
}
.card::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
}
.card:hover { background: #fff; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; margin-bottom: 22px;
    border-radius: var(--radius); background: var(--tint-2); color: var(--red);
    transition: background .3s var(--ease), color .3s var(--ease), transform .35s var(--ease);
}
.card-icon svg { width: 25px; height: 25px; }
.card:hover .card-icon { background: var(--red); color: #fff; transform: translateY(-3px); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* ---------- Notariat ---------- */
.notariat {
    position: relative; color: #fff; overflow: hidden;
    background: linear-gradient(150deg, #2b1216 0%, var(--red-dark) 55%, var(--red-deep) 100%);
}
.notariat::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(760px 380px at 88% 6%, rgba(194,161,92,.14), transparent 62%);
}
.notariat-grid { position: relative; display: grid; grid-template-columns: 1.25fr .85fr; gap: 66px; align-items: center; }
.notariat h2 { color: #fff; }
.notariat-text p { color: rgba(255,255,255,.82); }

.notariat-list { margin-top: 32px; display: grid; gap: 2px; }
.nl-item {
    display: flex; align-items: center; gap: 16px;
    padding: 15px 20px;
    background: rgba(255,255,255,.045);
    border-left: 2px solid transparent;
    border-radius: 3px;
    font-size: .96rem;
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.nl-item svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.nl-item:hover { background: rgba(255,255,255,.09); border-left-color: var(--gold); transform: translateX(4px); }

.notariat-quote { margin: 0; position: relative; padding-left: 30px; border-left: 2px solid rgba(194,161,92,.5); }
.quote-mark { position: absolute; left: 16px; top: -30px; font-family: var(--serif); font-size: 5rem; color: rgba(194,161,92,.28); line-height: 1; }
.notariat-quote blockquote { margin: 0; font-family: var(--serif); font-size: 1.68rem; line-height: 1.4; color: #fff; font-style: italic; }
.notariat-quote figcaption { margin-top: 20px; display: flex; align-items: center; gap: 12px; color: var(--gold); font-size: .92rem; font-weight: 600; }
.qa-line { width: 26px; height: 1px; background: currentColor; opacity: .7; flex: none; }

/* ---------- Ablauf / Schritte ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.step::before {
    content: ""; position: absolute; left: 0; top: -1px; width: 34px; height: 2px;
    background: var(--red); transition: width .5s var(--ease);
}
.step.is-visible::before { width: 60px; }
.step-num { display: block; font-family: var(--serif); font-size: 1.06rem; font-weight: 700; color: var(--red); letter-spacing: .1em; margin-bottom: 12px; }
.step h3 { font-size: 1.18rem; margin-bottom: .4em; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Kontakt ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.kontakt-lead { color: var(--ink-soft); }

.contact-rows { margin: 30px 0 32px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-child { border-top: 1px solid var(--line); }
.cr-icon { width: 21px; height: 21px; color: var(--red); flex: none; margin-top: 4px; }
.cr-icon svg { width: 100%; height: 100%; }
.cr-body { display: flex; flex-direction: column; min-width: 0; word-break: break-word; }
.cr-label { font-size: .69rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 600; color: var(--ink-mute); margin-bottom: 3px; }

.hours-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; }
.hours-box h4 { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--red); font-family: var(--serif); font-size: 1.16rem; font-weight: 600; }
.hours-box h4 svg { width: 19px; height: 19px; }

.oz-block { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin: 4px 0; }
.oz-day { min-width: 132px; font-weight: 600; color: var(--ink); }
.oz-times { display: flex; flex-direction: column; gap: 2px; }
.oz-time { color: var(--ink-soft); }
.oz-note { margin: 13px 0 0; font-size: .89rem; color: var(--ink-mute); font-style: italic; }

/* ---------- Formular ---------- */
.kontakt-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.kontakt-form h3 { color: var(--ink); margin-bottom: 22px; }
.kontakt-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 18px; }
.kontakt-form input, .kontakt-form textarea {
    width: 100%; margin-top: 8px; padding: 14px 16px;
    font-family: var(--sans); font-size: .97rem; font-weight: 400; color: var(--ink);
    background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius);
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.kontakt-form input::placeholder, .kontakt-form textarea::placeholder { color: #a89f9a; }
.kontakt-form input:focus, .kontakt-form textarea:focus {
    outline: none; background: #fff; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(140,29,44,.1);
}
.kontakt-form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox { display: flex; align-items: flex-start; gap: 11px; font-weight: 400; font-size: .87rem; color: var(--ink-soft); margin-bottom: 22px; }
.checkbox input { width: auto; margin: 4px 0 0; accent-color: var(--red); flex: none; }
.form-note { font-size: .81rem; color: var(--ink-mute); margin: 15px 0 0; text-align: center; }
.form-success { background: #eef7f0; border: 1px solid #bfdfc7; color: #23663a; padding: 15px 17px; border-radius: var(--radius); margin-bottom: 22px; font-size: .93rem; }

/* ---------- Seitenkopf (Unterseiten) ---------- */
.page-header {
    color: #fff; position: relative; overflow: hidden;
    background: linear-gradient(140deg, #2b1216 0%, var(--red-dark) 58%, var(--red-deep) 100%);
}
.page-header::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(700px 320px at 82% -10%, rgba(194,161,92,.15), transparent 60%);
}
.page-header-inner { position: relative; padding: 74px 28px 66px; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 { color: #fff; font-size: clamp(2.2rem, 4.2vw, 3.3rem); margin: 0; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.55rem; margin: 2.6rem 0 .8rem; color: var(--red); }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 1.7rem 0 .45rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 1.25rem; margin: 0 0 1.1rem; }
.legal li { margin-bottom: .42rem; }
.legal a { word-break: break-word; }
.legal address { font-style: normal; line-height: 1.75; color: var(--ink-soft); }
.legal .note {
    background: var(--tint); border-left: 2px solid var(--gold);
    padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .91rem; margin: 0 0 1.6rem; color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.site-footer { background: #171010; color: rgba(255,255,255,.7); padding: 74px 0 32px; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.15fr; gap: 42px; }
.footer-col h4 { color: #fff; font-family: var(--serif); font-size: 1.14rem; font-weight: 600; margin: 0 0 16px; }
.footer-col p { margin: 0 0 8px; }
.footer-monogram { color: var(--gold); width: 46px; height: 46px; margin-bottom: 18px; }
.footer-name { color: #fff; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 2px !important; }
.footer-sub { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.footer-line { display: flex; align-items: flex-start; gap: 11px; }
.footer-line .fi { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 4px; opacity: .85; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--gold); }

.site-footer .oz-block { display: block; margin: 0 0 8px; }
.site-footer .oz-day { display: block; color: #fff; min-width: 0; margin-bottom: 2px; font-weight: 600; }
.site-footer .oz-time { display: block; color: rgba(255,255,255,.7); }
.site-footer .oz-note { color: var(--gold); font-style: italic; margin-top: 12px; font-size: .87rem; }

.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    margin-top: 52px; padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.11);
    font-size: .84rem; color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0; }
.footer-legal span { opacity: .4; margin: 0 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .profil-grid { grid-template-columns: 1fr 1.1fr; gap: 46px; }
    .profil-intro { position: static; }
    .notariat-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .nav-burger { display: flex; }
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden;
        transition: max-height .38s var(--ease);
        box-shadow: 0 18px 30px -22px rgba(30,15,18,.5);
    }
    .nav-toggle:checked ~ .main-nav { max-height: 420px; }
    .main-nav a { padding: 17px 28px; border-top: 1px solid var(--line-soft); }
    .main-nav a::after { display: none; }
    .main-nav .nav-cta { border-radius: 0; justify-content: flex-start; }

    .section { padding: 68px 0; }
    .section-head { margin-bottom: 42px; }
    .hero-inner { padding: 78px 28px 72px; }
    .hero-meta { grid-template-columns: 1fr; gap: 20px; }
    .hero-actions { gap: 12px; }
    .btn { padding: 14px 24px; }

    .profil-grid { grid-template-columns: 1fr; gap: 30px; }
    .profil-intro { position: static; }
    .profil-intro h2 { margin-bottom: .8em; }
    .cards-grid, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
    .steps { gap: 28px; }
    .card { padding: 32px 26px; }
    .kontakt-form { padding: 28px 24px; }
    .notariat-quote blockquote { font-size: 1.42rem; }
    .footer-bottom { flex-direction: column; }
}
