:root {
    --bg: #f3f1ed;
    --surface: #fcfbf8;
    --surface-strong: #ece7df;
    --text: #243127;
    --text-soft: #4a5c4f;
    --line: #cfd8cd;
    --accent: #4f6f52;
    --accent-dark: #2c3e2e;
    --accent-soft: #e2ebdf;
    --accent-terracotta: #d56242;   
    --accent-burgundy: #7c3e39;
    --accent-sand: #a27163;
    --highlight: #d2c4a5;
    --radius: 16px;
    --radius-small: 10px;
    --shadow: 0 12px 30px rgba(31, 46, 36, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: clamp(1rem, 7.9px + 0.75vw, 1.1875rem);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

main {
    flex: 1 0 auto;
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 18%, rgba(210, 196, 165, 0.24), transparent 48%),
        radial-gradient(circle at 85% 6%, rgba(165, 186, 165, 0.24), transparent 44%),
        linear-gradient(180deg, #f6f3ee 0%, #efebe5 52%, #f5f2ec 100%);
}

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

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    text-decoration: underline;
}

p {
    margin: 0 0 1.3rem;
}

ul {
    margin: 0;
    padding-left: 1.25rem;
}

h1,
h2,
h3 {
    margin: 0 0 1.1rem;
    line-height: 1.2;
    font-family: "Marcellus", Georgia, serif;
    color: #16221b;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 25;
    border-bottom: 1px solid rgba(207, 216, 205, 0.8);
    backdrop-filter: blur(8px);
    background: rgba(246, 243, 238, 0.93);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    color: inherit;
    cursor: pointer;
}

.brand:hover,
.brand:focus-visible {
    text-decoration: none;
}

.brand-logo {
    width: clamp(240px, 22vw, 300px);
    display: inline-block;
}

.brand-logo svg {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-10px);
}

.brand-logo svg [fill="#4f6f52"] {
    transition: fill 0.2s ease, filter 0.2s ease;
}

.brand:hover .brand-logo svg [fill="#4f6f52"],
.brand:focus-visible .brand-logo svg [fill="#4f6f52"] {
    fill: #78a67d;
    filter: saturate(1.15);
}

.site-nav > ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
}

.site-nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav a {
    color: inherit;
}

.site-nav > ul > li > a,
.has-dropdown .nav-item-main > a,
.has-dropdown .nav-item-main > .nav-label {
    display: inline-flex;
    align-items: center;
    padding: 0.58rem 1.05rem;
    border-radius: 999px;
    font-size: 0.96rem;
    white-space: nowrap;
}

.has-dropdown .nav-item-main > .nav-label {
    cursor: default;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a:focus-visible,
.has-dropdown .nav-item-main > a:hover,
.has-dropdown .nav-item-main > a:focus-visible {
    background: var(--accent-soft);
    text-decoration: none;
}

.site-nav > ul > li > a.is-active,
.has-dropdown .nav-item-main > .nav-label.is-active {
    background: #dbe4d8;
    font-weight: 700;
}

.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.has-dropdown .nav-item-main {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding-right: 0.82rem;
}

.has-dropdown .nav-item-main > a,
.has-dropdown .nav-item-main > .nav-label {
    padding-right: 0.34rem;
}

.has-dropdown .nav-item-main:hover,
.has-dropdown .nav-item-main:focus-within,
.has-dropdown .nav-item-main.is-active {
    background: var(--accent-soft);
}

.has-dropdown .nav-item-main.is-active {
    background: #dbe4d8;
}

.has-dropdown .nav-item-main > a.is-active,
.has-dropdown .nav-item-main > .nav-label.is-active {
    background: transparent;
    font-weight: 700;
}

.dropdown-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0 0.16rem;
    margin: 0;
    line-height: 1;
    pointer-events: none;
}

.dropdown-caret::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    padding: 0.45rem;
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 30;
    gap: 0.2rem;
}

.dropdown-menu li {
    list-style: none;
}

.has-dropdown.is-open .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    display: block;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    font-size: 0.89rem;
    line-height: 1.35;
    padding: 0.56rem 0.7rem;
    white-space: normal;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: var(--accent-soft);
    text-decoration: none;
}

@media (min-width: 1081px) {
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        display: flex;
    }
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 90, 67, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #264a37;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--accent-soft);
}

.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 6.5rem) 0 3.2rem;
    overflow: hidden;
}

.hero-panel {
    position: relative;
    z-index: 2;
    background: linear-gradient(160deg, rgba(252, 251, 248, 0.95), rgba(247, 244, 238, 0.95));
    border: 1px solid rgba(207, 216, 205, 0.7);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-image {
    position: absolute;
    right: max(calc(50% - 660px), 0px);
    bottom: 0;
    width: clamp(260px, 33vw, 460px);
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.hero-overline {
    display: inline-block;
    margin-bottom: 1.1rem;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero p {
    max-width: 72ch;
    color: var(--text-soft);
}

.hero .hero-text {
    padding-right: 10vw;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.trust-line {
    margin-top: 1.3rem;
    font-size: 0.92rem;
    color: var(--text-soft);
}

/* ── Hero entrance animation ── */

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-slide-in {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-panel,
.hero-image,
.hero-overline,
.hero h1,
.hero .hero-text,
.hero .hero-actions,
.hero .trust-line {
    opacity: 0;
}

.hero-panel {
    animation: hero-fade-up 0.8s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-image {
    animation: hero-slide-in 0.9s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-overline {
    animation: hero-fade-up 0.6s 0.5s ease both;
}

.hero h1 {
    animation: hero-fade-up 0.6s 0.6s ease both;
}

.hero .hero-text {
    animation: hero-fade-up 0.6s 0.7s ease both;
}

.hero .hero-actions {
    animation: hero-fade-up 0.6s 0.85s ease both;
}

.hero .trust-line {
    animation: hero-fade-up 0.6s 1.0s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .hero-panel,
    .hero-image,
    .hero-overline,
    .hero h1,
    .hero .hero-text,
    .hero .hero-actions,
    .hero .trust-line {
        opacity: 1;
        animation: none;
    }
}

.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-surface {
    background: rgba(252, 251, 248, 0.83);
    border-top: 1px solid rgba(207, 216, 205, 0.7);
    border-bottom: 1px solid rgba(207, 216, 205, 0.7);
}

/* ── warm-light backgrounds ── */

.hero,
.section-surface,
.section:not(.section-surface):not(.section-bg) {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero {
    background-image: url('../images/warm-light_01.webp');
}

.section-surface {
    background-image: url('../images/warm-light_02.webp');
    background-color: transparent;
}

.section:not(.section-surface):not(.section-bg):not(.contact-photo-section) {
    background-image: url('../images/warm-light_03.webp');
}

.hero::after,
.section-surface::after,
.section:not(.section-surface):not(.section-bg):not(.contact-photo-section)::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero::after {
    background: rgba(243, 241, 237, 0.5);
}

.section-surface::after {
    background: rgba(252, 251, 248, 0.72);
}

.section:not(.section-surface):not(.section-bg):not(.contact-photo-section)::after {
    background: rgba(243, 241, 237, 0.6);
}

.section-surface > *,
.section:not(.section-surface):not(.section-bg):not(.contact-photo-section) > * {
    position: relative;
    z-index: 1;
}

/* page-hero warm-light (except pages with own bg images) */

.page-hero {
    position: relative;
}

.page-start .page-hero,
.page-ueber-mich .page-hero,
.page-kontakt .page-hero,
.page-impressum .page-hero,
.page-datenschutz .page-hero {
    background-image: url('../images/warm-light_01.webp');
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 241, 237, 0.5);
    pointer-events: none;
}

.page-coaching-supervision .page-hero::after,
.page-mediation-konfliktklaerung .page-hero::after,
.page-energetik .page-hero::after,
.page-ueber-mich .page-hero::after {
    display: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.section-title {
    max-width: 24ch;
}

.section-intro {
    max-width: 74ch;
    color: var(--text-soft);
}

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

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.4rem 6rem 1.4rem;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(27, 40, 31, 0.06);
}

.card-coaching,
.card-mediation,
.card-energetik {
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.card-coaching {
    background-image: url('../images/beech-twig.webp');
}

.card-mediation {
    background-image: url('../images/alder-twig.webp');
}

.card-energetik {
    background-image: url('../images/oak-twig.webp');
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-soft);
}

.card a {
    font-weight: 700;
}

.card .btn-secondary:hover,
.card .btn-secondary:focus-visible {
    background: var(--highlight);
    border-color: var(--highlight);
}

.card {
    position: relative;
}

.card > .editable-section:last-child {
    position: static;
}

.card-plant {
    position: absolute;
    left: 1.4rem;
    bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    opacity: 0.75;
    letter-spacing: 0.02em;
}

.topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem 1.5rem;
    margin-top: 1.4rem;
    padding: 0;
}

.topics li {
    background: #d0c0b0;
    border: 1px solid rgba(180, 160, 140, 0.6);
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    list-style: none;
}

.mini-bullets {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.65rem;
}

.mini-bullets li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
    color: var(--text-soft);
}

.mini-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--accent);
}

/* ── icon-grid (coaching "Für wen") ── */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 1.6rem auto;
    max-width: 800px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    background: rgba(252, 251, 248, 0.60);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem 1rem;
}

.icon-item-svg {
    width: 2.8rem;
    height: 2.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.icon-item span {
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.45;
}

/* ── split sections (image + text side by side) ── */

.split-section,
.about-qualification-section {
    padding: 0;
    overflow: hidden;
}

.split-section .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.split-section .split-text {
    display: flex;
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 38rem;
}

.split-reverse .split-text {
    order: 0;
    justify-items: flex-end;
}

.split-reverse .split-image {
    order: 1;
}

/* ── about qualification section (Über mich) ── */

.about-qualification-section .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 650px;
}

.about-qualification-section .split-layout > :first-child {
    overflow: hidden;
    min-height: 0;
}

.about-qualification-section .split-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.about-qualification-section .split-text {
    display: flex;
    align-items: center;
    padding: clamp(2rem, 4vw, 3.5rem);
    overflow-y: auto;
}

/* ── memberships block with logo rotator ── */

.memberships-block {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.logo-rotator {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 280px;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    perspective: 600px;
}

.logo-rotator-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.logo-rotator-inner.is-flipping-out {
    animation: flipOutY 0.4s ease-in forwards;
}

.logo-rotator-inner.is-flipping-in {
    animation: flipInY 0.4s ease-out forwards;
}

@keyframes flipOutY {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(-90deg); }
}

@keyframes flipInY {
    0%   { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

.logo-rotator-item {
    position: absolute;
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    opacity: 0;
}

.logo-rotator-item.is-active {
    opacity: 1;
}

/* ── "So arbeite ich" section with image ── */

.method-section {
    overflow: hidden;
}

.method-image {
    position: absolute;
    right: max(calc(50% - 660px), 0px);
    bottom: 0;
    width: clamp(240px, 28vw, 400px);
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.method-section .section-intro {
    max-width: 58ch;
}

.step-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    padding: 1rem 1.15rem;
}

.step strong {
    color: #173427;
}

/* ── contact photo section ── */

.contact-photo-section {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.contact-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.contact-photo-section > .container {
    position: relative;
    z-index: 1;
}

.contact-photo-info {
    max-width: 480px;
    background: rgba(252, 251, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-photo-info ul {
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-photo-info .faq {
    margin-top: 1.8rem;
}

.profile-teaser {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.profile-block,
.contact-teaser {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 1.6rem;
}

.contact-teaser .hero-actions {
    margin-top: 1rem;
}

.page-hero {
    padding: clamp(2.8rem, 6vw, 4.5rem) 0 1.3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-portrait {
    min-height: 50vh;
    padding: clamp(3.5rem, 8vw, 6rem) 0 3.2rem;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    left: max(calc(50% - 630px), 0px);
    top: 20px;
    height: calc(100% - 20px);
    width: auto;
    z-index: 2;
    pointer-events: none;
}

.page-hero-portrait .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 370px;
}

.page-hero-portrait-right .page-hero-image {
    left: auto;
    right: max(calc(50% - 630px), 0px);
}

.page-hero-portrait-right .container {
    padding-left: 0;
    padding-right: 370px;
}

.page-coaching-supervision .page-hero::before,
.page-mediation-konfliktklaerung .page-hero::before,
.page-energetik .page-hero::before,
.page-ueber-mich .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 241, 237, 0.55);
    pointer-events: none;
}

.page-coaching-supervision .page-hero {
    background-image: url('../images/beech-leaf_01.webp');
}

.page-mediation-konfliktklaerung .page-hero {
    background-image: url('../images/alder-leaf-canopy_01.webp');
}

.page-energetik .page-hero {
    background-image: url('../images/oak-wood-grain_01.webp');
}

.section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
}

.section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 241, 237, 0.55);
    z-index: 0;
    pointer-events: none;
}

.section-bg > * {
    position: relative;
    z-index: 1;
}

.page-coaching-supervision .section-bg {
    background-image: url('../images/beech-leaf_02.webp');
}

.page-mediation-konfliktklaerung .section-bg {
    background-image: url('../images/alder-leaf-canopy_02.webp');
}

.page-energetik .section-bg {
    background-image: url('../images/oak-wood-grain_02.webp');
}

.page-energetik .section-bg:last-of-type {
    background-image: none;
}

.page-energetik .section-bg:last-of-type::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/oak-wood-grain_02.webp') center / cover no-repeat;
    transform: scaleY(-1);
    z-index: -1;
    pointer-events: none;
}

.page-hero p {
    max-width: 54ch;
    color: var(--text-soft);
}
.page-hero li {
    color: var(--text-soft);
}

.content-block {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: clamp(1.2rem, 2.8vw, 1.8rem);
    margin-top: 1.4rem;
}

.section-bg .content-block {
    background: rgba(252, 251, 248, 0.60);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.content-block ul,
.content-block ol {
    margin: 1rem 0;
    display: grid;
    gap: 0.55rem;
}

.content-block li,
.split-layout li {
    color: var(--text-soft);
}

/* ── Impressum Angaben (Logo + Text) ── */

.impressum-angaben {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.impressum-angaben-logo {
    order: 1;
    width: 350px;
}

.impressum-angaben-logo svg {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.impressum-angaben-text {
    order: 0;
}

.fine-print {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-soft);
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.3rem;
    max-width: 768px;
}

.form-grid .btn {
    justify-self: start;
    margin-top: 0.8rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

label {
    display: grid;
    gap: 0.38rem;
    font-weight: 600;
    color: #1a2a21;
    font-size: 0.94rem;
}

input,
textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #b8c4b9;
    background: #fff;
    font: inherit;
    color: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid #9fb79f;
    outline-offset: 1px;
}

.status-box {
    padding: 0.8rem 0.95rem;
    border-radius: 10px;
    margin: 0.5rem 0 0.9rem;
}

.status-success {
    background: #e3efe1;
    border: 1px solid #9dbc9e;
    color: #1d472f;
}

.status-error {
    background: #f8ece8;
    border: 1px solid #deb4ab;
    color: #6e2e24;
}

.faq {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.85rem;
}

.faq h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.site-footer {
    margin-top: auto;
    background: var(--accent-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2.2rem 0 1.6rem;
    font-size: 0.88rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #c9a96e;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-logo svg {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo svg path {
    fill: rgba(255, 255, 255, 0.6);
}

.footer-logo svg path:nth-child(2),
.footer-logo svg path:nth-child(3) {
    fill: rgba(255, 255, 255, 0.3);
}

.footer-copy {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-center {
    text-align: center;
}

.footer-tagline {
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    color: #c9a96e;
}

.footer-contact {
    margin: 0;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.legal-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.2rem;
}

.footer-credit {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.35);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.625rem;
    overflow: visible;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.4rem;
    height: 2px;
    background: #2a4033;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.menu-toggle span:nth-child(2) {
    margin: 5px 0;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        justify-content: initial;
        gap: 0.55rem;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .brand-logo {
        width: clamp(150px, 30vw, 210px);
    }

    .header-ctas {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    .header-ctas .btn {
        font-size: 0.86rem;
        padding: 0.5rem 0.88rem;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-small);
        padding: 0.5rem;
    }

    .site-nav > ul > li {
        width: 100%;
    }

    .site-nav > ul > li > a,
    .has-dropdown .nav-item-main {
        width: 100%;
    }

    .site-nav > ul > li > a,
    .has-dropdown .nav-item-main > a,
    .has-dropdown .nav-item-main > .nav-label {
        justify-content: flex-start;
        padding: 0.62rem 0.95rem;
    }

    .has-dropdown {
        flex-wrap: wrap;
        width: 100%;
    }

    .has-dropdown .nav-item-main {
        width: auto;
        padding-right: 0.52rem;
        justify-content: flex-start;
    }

    .has-dropdown .nav-item-main > a,
    .has-dropdown .nav-item-main > .nav-label {
        flex: 0 0 auto;
        min-width: auto;
        width: auto;
    }

    .dropdown-caret {
        padding-right: 0.6rem;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin: 0.3rem 0 0.2rem;
        box-shadow: none;
        border-color: #d9e1d7;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-teaser {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-center {
        text-align: center;
    }

    .footer-right {
        text-align: center;
        align-items: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand {
        margin-left: 10px;
    }

    .header-ctas {
        display: none;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 2.2rem;
        padding-bottom: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero > .container {
        order: 1;
        width: min(1120px, 92vw);
    }

    .hero-image {
        position: static;
        order: 2;
        width: min(300px, 55vw);
        margin: -1rem auto 0;
    }

    .page-hero-portrait {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
        padding-top: 2.2rem;
        padding-bottom: 0;
        min-height: auto;
    }

    .page-hero-portrait .container {
        order: 1;
        width: min(1120px, 92vw);
        align-items: stretch;
        padding: 0;
    }

    .page-coaching-supervision .page-hero {
        background-position-x: left;
    }

    .page-hero-portrait h1,
    .page-hero-portrait p {
        text-align: left;
    }

    .page-hero-image {
        position: static;
        order: 2;
        width: min(280px, 70vw);
        height: auto;
        margin: 1rem auto 0;
    }

    .method-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
        padding-bottom: 0;
    }

    .method-section > .container {
        order: 1;
    }

    .method-image {
        position: static;
        order: 2;
        width: min(280px, 50vw);
        margin: 1rem auto 0;
    }

    .section-surface > .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .card-grid .card {
        max-width: 400px;
        margin: 0 auto;
    }

    .icon-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .impressum-angaben {
        grid-template-columns: 1fr;
    }

    .impressum-angaben-logo {
        order: 0;
        width: 70%;
        margin: 0 auto;
    }
    .impressum-angaben-logo svg {
        margin: 30px 0;
    }

    .impressum-angaben-text {
        order: 1;
    }

    .split-section .split-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-image {
        max-height: 320px;
    }

    .memberships-block {
        grid-template-columns: 1fr;
    }

    .logo-rotator {
        max-width: 200px;
    }

    .field-row {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .topics {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 800px) {
    .about-qualification-section .split-layout {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .about-qualification-section .split-image {
        max-height: 360px;
        order: 1;
    }

    .about-qualification-section .split-text {
        order: 0;
    }

    .contact-photo-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .contact-photo-img {
        position: static;
        height: auto;
        max-height: 320px;
        order: -1;
    }

    .contact-photo-section > .container {
        z-index: auto;
    }

    .contact-photo-info {
        max-width: none;
    }
}

.footer-logos {
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logos-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.2rem 2rem;
}

.logo-strip a {
    display: inline-flex;
    align-items: center;
}

.logo-strip img {
    height: 48px;
    width: auto;
    filter: grayscale(100%) brightness(0.7) invert(1);
    opacity: 0.4;
    transition: opacity 0.8s ease, filter 0.8s ease;
}

.logo-strip img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1) invert(0);
}

.qual-list {
    margin-top: 1rem;
    padding-left: 0;
    display: grid;
    gap: 0.55rem;
}

.qual-list li {
    color: var(--text-soft);
    list-style: none;
}

.qual-year {
    display: inline-block;
    min-width: 4.8em;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.88em;
}

/* ---- Scroll-reveal animations ---- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-from-left {
    transform: translateX(-40px);
}

.reveal.reveal-from-right {
    transform: translateX(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0);
}

.reveal-children > .reveal {
    transition-delay: calc(var(--reveal-i, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
