/* ================================================
   HOLZBAU GÖRGEN  styles.css
   Moderne Neugestaltung 2024
   ================================================ */

/* === CSS Custom Properties === */
:root {
    --c-dark:         #1A2430;
    --c-dark-mid:     #243040;
    --c-accent:       #E05C1A;
    --c-accent-hover: #C44E14;
    --c-accent-soft:  rgba(224, 92, 26, 0.12);
    --c-wood:         #8B5E3C;
    --c-cream:        #F7F3EE;
    --c-cream-dark:   #EDE6DA;
    --c-white:        #FFFFFF;
    --c-text:         #2C3A47;
    --c-text-light:   #6B7A88;
    --c-border:       #DDD5C8;

    --font-display: Georgia, 'Times New Roman', Times, serif;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    --max-width:  1200px;
    --nav-height: 80px;

    --sp-1:  0.5rem;
    --sp-2:  1rem;
    --sp-3:  1.5rem;
    --sp-4:  2rem;
    --sp-5:  2.5rem;
    --sp-6:  3rem;
    --sp-8:  4rem;
    --sp-12: 6rem;
    --sp-16: 8rem;

    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-full: 9999px;

    --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
    --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
    --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);

    --t-fast: 0.18s ease;
    --t:      0.32s ease;
    --t-slow: 0.6s ease;
}

/* === Reset & Basis === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll-Animationen: erst aktiv, wenn JS geladen */
body.js-ready [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
body.js-ready [data-animate].in-view { opacity: 1; transform: translateY(0); }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--c-dark); line-height: 1.15; }

/* === Layout-Hilfsklassen === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--sp-4); }
.section-pad { padding: var(--sp-12) 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: var(--sp-2);
}
.section-header { max-width: 620px; margin: 0 auto var(--sp-8); text-align: center; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: var(--sp-2); }
.section-desc { color: var(--c-text-light); font-size: 1.05rem; line-height: 1.75; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    padding: 0.85rem 1.75rem; border-radius: var(--r-md);
    font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
    border: 2px solid transparent; cursor: pointer; white-space: nowrap; text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast),
                transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-primary { background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent); }
.btn-primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,92,26,0.35); }
.btn-ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-white { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); }
.btn-white:hover { background: var(--c-cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--c-accent); border-color: var(--c-accent); }
.btn-outline:hover { background: var(--c-accent); color: var(--c-white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--c-white); }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 24px rgba(0,0,0,0.14);
    border-bottom: 1px solid rgba(26,36,48,0.08);
}

.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 var(--sp-4);
    height: var(--nav-height); display: flex; align-items: center; gap: var(--sp-3);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; transition: opacity var(--t-fast); }
.nav-logo:hover img { opacity: 0.75; }

.nav-links { display: flex; align-items: center; gap: var(--sp-1); margin-left: auto; }
.nav-link {
    position: relative; padding: 0.45rem 0.875rem; font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.8); border-radius: var(--r-sm); transition: color var(--t-fast);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--c-accent);
    transition: width var(--t-fast); border-radius: var(--r-full);
}
.nav-link:hover, .nav-link.active { color: var(--c-white); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.75rem); }

.nav.scrolled .nav-link { color: rgba(26,36,48,0.78); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--c-dark); }

.nav.scrolled .hamburger span { background: var(--c-dark); }

.nav-phone {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem; background: var(--c-accent); color: var(--c-white);
    border-radius: var(--r-md); font-size: 0.82rem; font-weight: 600;
    margin-left: var(--sp-2); white-space: nowrap;
    transition: background var(--t-fast), transform var(--t-fast);
}
.nav-phone:hover { background: var(--c-accent-hover); transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--c-white); border-radius: 2px; transition: var(--t-fast); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    background: var(--c-dark); position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse at 25% 55%, rgba(139,94,60,0.22) 0%, transparent 65%),
                radial-gradient(ellipse at 80% 20%, rgba(224,92,26,0.08) 0%, transparent 50%);
}
.hero-content {
    display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1;
    padding: calc(var(--nav-height) + var(--sp-8)) var(--sp-8) var(--sp-8)
             max(var(--sp-4), calc((100vw - var(--max-width)) / 2 + var(--sp-4)));
}
.hero-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-3); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 4.5rem); font-weight: 700; color: var(--c-white); line-height: 1.08; margin-bottom: var(--sp-3); }
.hero-title em { font-style: italic; color: var(--c-accent); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.68); max-width: 440px; line-height: 1.75; margin-bottom: var(--sp-6); }
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.hero-image { position: relative; min-height: 100vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--c-dark) 0%, rgba(26,36,48,0.25) 40%, transparent 100%);
}
.hero-badge {
    position: absolute; bottom: var(--sp-6); right: var(--sp-4); z-index: 2;
    background: var(--c-accent); color: var(--c-white); border-radius: var(--r-lg);
    padding: var(--sp-2) var(--sp-3); display: flex; flex-direction: column; align-items: center;
    line-height: 1.2; box-shadow: var(--shadow-lg);
}
.hero-badge .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.hero-badge .lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; text-align: center; }

.scroll-hint {
    position: absolute; bottom: var(--sp-4); left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.38); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
    animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint .line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent); }
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   LEISTUNGEN
   ================================================ */
.services { background: var(--c-cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--sp-3); margin-bottom: var(--sp-8); }

.service-card {
    background: var(--c-white); border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-3);
    border: 1.5px solid var(--c-border); cursor: default;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-icon { width: 58px; height: 58px; margin: 0 auto var(--sp-2); display: flex; align-items: center; justify-content: center; }
.service-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--c-dark); margin-bottom: var(--sp-1); text-align: center; }
.service-card p { font-size: 0.85rem; color: var(--c-text-light); line-height: 1.65; }

/* Jobs: Karten mittig ausrichten */
.jobs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
}

.jobs-grid .service-card {
    width: min(290px, 100%);
}
.services-cta { text-align: center; }

.service-detail-section {
    background: var(--c-white);
    padding: var(--sp-12) 0;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.service-detail {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-8);
    align-items: center;
    background: linear-gradient(180deg, var(--c-white) 0%, #fcfaf7 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) .service-detail-media {
    order: 2;
}

.service-detail:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-media {
    min-height: 380px;
    height: 100%;
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: var(--sp-6);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-3);
}

.service-detail-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--r-md);
    background: var(--c-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.service-detail-content h3 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    margin-bottom: var(--sp-2);
}

.service-detail-content p {
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-3);
}

.service-detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2) var(--sp-4);
}

.service-detail-points li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--c-text);
    line-height: 1.65;
}

.service-detail-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-accent);
    transform: translateY(-50%);
}

/* ================================================
   USP-STREIFEN
   ================================================ */
.usp-bar { background: var(--c-dark); padding: var(--sp-8) 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.usp-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-2); }
.usp-icon { width: 52px; height: 52px; border-radius: var(--r-lg); background: var(--c-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--c-accent); }
.usp-item h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--c-white); }
.usp-item p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ================================================
   ÜBER UNS TEASER (Homepage)
   ================================================ */
.about-teaser { padding: var(--sp-12) 0; background: var(--c-white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; }
.about-images { position: relative; padding-bottom: 3.5rem; }
.about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; border-radius: var(--r-xl); position: relative; z-index: 1; }
.about-img-secondary {
    position: absolute; width: 44%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center center;
    border-radius: var(--r-lg); bottom: 0; right: -0.5rem;
    border: 5px solid var(--c-white); box-shadow: var(--shadow-xl); z-index: 2;
}
.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.75rem); font-weight: 700; margin-bottom: var(--sp-3); line-height: 1.2; }
.about-text p { color: var(--c-text-light); margin-bottom: var(--sp-3); line-height: 1.8; }
.about-checks { margin: var(--sp-4) 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.about-checks li { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.95rem; color: var(--c-text); }
.about-checks li svg { color: var(--c-accent); flex-shrink: 0; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner { background: var(--c-dark); padding: var(--sp-12) 0; position: relative; overflow: hidden; }
.cta-banner::before, .cta-banner::after {
    content: ''; position: absolute; width: 420px; height: 420px;
    border-radius: 50%; background: var(--c-accent-soft); pointer-events: none;
}
.cta-banner::before { top: -200px; right: 8%; }
.cta-banner::after  { bottom: -200px; left: 5%; }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-2); }
.cta-content p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: var(--sp-5); }
.cta-actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--c-dark-mid); color: rgba(255,255,255,0.72); padding-top: var(--sp-12); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: var(--sp-8);
    padding-bottom: var(--sp-8); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand img { height: 48px; margin-bottom: var(--sp-2); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 270px; margin-bottom: var(--sp-3); color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: var(--sp-2); }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.social-links a:hover { background: var(--c-accent); color: var(--c-white); transform: translateY(-3px); }
.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-white); margin-bottom: var(--sp-3);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-nav a:hover { color: var(--c-accent); padding-left: 5px; }
.footer-contact address p { font-size: 0.875rem; margin-bottom: var(--sp-2); line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--c-accent); }
.footer-bottom {
    padding: var(--sp-3) 0; display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: var(--sp-2); font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: var(--sp-3); }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ================================================
   SEITEN-HERO (About, Kontakt)
   ================================================ */
.page-hero { background: var(--c-dark); padding: calc(var(--nav-height) + var(--sp-8)) 0 var(--sp-12); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(224,92,26,0.1) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: var(--sp-2); display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--c-accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--c-white); font-weight: 700; margin-bottom: var(--sp-2); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; line-height: 1.75; max-width: 500px; }

/* ================================================
   ÜBER UNS  Vollseite
   ================================================ */
.story-section { padding: var(--sp-12) 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-xl); }
.story-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: var(--sp-3); }
.story-text p { color: var(--c-text-light); line-height: 1.8; margin-bottom: var(--sp-3); }

.team-section { background: var(--c-cream); padding: var(--sp-12) 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: var(--sp-4); }
.team-card { text-align: center; cursor: default; }
.team-card-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
    border-radius: var(--r-lg); margin-bottom: var(--sp-2);
    box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover .team-card-img { transform: scale(1.03); box-shadow: var(--shadow-md); }
.team-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--c-dark); margin-bottom: 2px; }
.team-card .role { font-size: 0.75rem; color: var(--c-accent); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ================================================
   KONTAKT
   ================================================ */
.contact-section { padding: var(--sp-12) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }

.contact-form-wrap { background: var(--c-cream); border-radius: var(--r-xl); padding: var(--sp-6); }
.contact-form-wrap h2 { font-size: 1.75rem; margin-bottom: var(--sp-4); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-group { margin-bottom: var(--sp-3); }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-text); margin-bottom: var(--sp-1); }
.form-control {
    width: 100%; padding: 0.75rem 1rem; background: var(--c-white); border: 1.5px solid var(--c-border);
    border-radius: var(--r-md); font-family: var(--font-body); font-size: 0.95rem; color: var(--c-text);
    outline: none; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(224,92,26,0.13); }
.form-control::placeholder { color: rgba(44,58,71,0.38); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.75rem;
    align-items: start;
    margin: 0 0 var(--sp-4);
}
.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--c-accent);
}
.form-consent label {
    display: block;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--c-text-light);
}
.form-consent a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--c-accent-hover); }
.form-status,
.form-field-error {
    display: none;
}
.form-status[data-fs-active],
.form-field-error[data-fs-active] {
    display: block;
}
.form-status {
    margin-bottom: var(--sp-3);
    padding: 0.85rem 1rem;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    line-height: 1.55;
}
.form-success {
    background: #dff4e4;
    color: #17663a;
    border: 1px solid #b7e1c1;
}
.form-error {
    background: #fbe4e6;
    color: #9f2430;
    border: 1px solid #efbcc3;
}
.form-field-error {
    margin-top: 0.45rem;
    color: #b42318;
    font-size: 0.78rem;
    line-height: 1.4;
}
[data-fs-field][aria-invalid='true'] {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: var(--sp-2); }
.contact-intro { color: var(--c-text-light); margin-bottom: var(--sp-6); line-height: 1.75; }

.contact-items { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.contact-item-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--c-accent); display: flex; align-items: center; justify-content: center; color: var(--c-white); flex-shrink: 0; }
.contact-item-text h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--c-dark); margin-bottom: 3px; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: var(--c-text-light); line-height: 1.6; }
.contact-item-text a:hover { color: var(--c-accent); }

/* ================================================
   RECHTSTEXTE (Impressum / Datenschutz)
   ================================================ */
.legal-section { padding: var(--sp-12) 0; background: var(--c-white); }
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    padding: var(--sp-6);
}
.legal-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: var(--sp-5) 0 var(--sp-2);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin: var(--sp-3) 0 var(--sp-1);
    color: var(--c-dark);
}
.legal-content p,
.legal-content li {
    color: var(--c-text-light);
    line-height: 1.8;
    margin-bottom: var(--sp-2);
}
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content a { color: var(--c-accent); }
.legal-note {
    margin-top: var(--sp-5);
    padding: var(--sp-3);
    border-radius: var(--r-md);
    background: var(--c-cream);
    border: 1px solid var(--c-border);
    color: var(--c-text);
}