/*
   Theme: Modern Naturalism
   Style: Premium, Architectural, Editorial
*/

/* Lokal gehostete Web Fonts (DSGVO: keine Verbindung zu Google). Variable Fonts: ein File je Subset deckt alle Gewichte ab. */
@font-face{font-family:'Inter';font-style:normal;font-weight:300 600;font-display:swap;src:url(fonts/inter-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Inter';font-style:normal;font-weight:300 600;font-display:swap;src:url(fonts/inter-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Outfit';font-style:normal;font-weight:300 700;font-display:swap;src:url(fonts/outfit-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Outfit';font-style:normal;font-weight:300 700;font-display:swap;src:url(fonts/outfit-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

:root {
    /* Palette - Refined & Premium */
    --color-wood-dark: #3E2B22;
    /* Deeper, richer brown */
    --color-wood-medium: #8B5E3C;
    --color-wood-light: #D4C5B5;
    /* Sand/Beige */

    --color-salt-white: #FAF9F6;
    /* Warm Off-White */
    --color-salt-blue: #E8F4F8;
    /* Very subtle blue tint */
    --color-salt-accent: #AECFE0;

    --color-clay: #C89F5D;
    /* Ocher */
    --color-clay-light: #FDF6EC;

    --color-text-main: #2C2C2C;
    --color-text-muted: #666666;
    --color-white: #FFFFFF;

    /* Typography - Editorial */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --h1-size: clamp(3rem, 5vw, 5rem);
    --h2-size: clamp(2.5rem, 4vw, 3.5rem);
    --h3-size: clamp(1.5rem, 2vw, 2rem);

    /* Spacing & Layout */
    --container-width: 1400px;
    /* Wider for modern look */
    --spacing-sm: 1rem;
    --spacing-md: clamp(1.5rem, 5vw, 3rem);
    --spacing-lg: clamp(2.25rem, 9vw, 6rem);
    --spacing-xl: clamp(3rem, 14vw, 10rem);

    /* UI Elements */
    --radius-sm: 2px;
    /* Sharp, architectural */
    --radius-md: 4px;
    --radius-lg: 8px;

    --shadow-subtle: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 40px -5px rgba(62, 43, 34, 0.08);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth ease-out */
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-salt-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-wood-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

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

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

.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--color-wood-medium), var(--color-clay));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-clay);
    /* Fallback */
}

.text-white {
    color: var(--color-white) !important;
}

.bg-wood-dark {
    background-color: var(--color-wood-dark);
}

.list-white li {
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.tag-white {
    color: rgba(255, 255, 255, 0.6) !important;
}

.tag-white::before {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-clay);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background-color: var(--color-clay);
}

.lead {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 400;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-inverse-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: transparent;
    color: var(--color-wood-dark);
    padding: 1.05rem 2.4rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1rem;
    border: 1.5px solid transparent;
    line-height: 1.1;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.28);
}

.btn-primary {
    background-color: var(--color-wood-dark);
    color: var(--color-white);
    border-color: var(--color-wood-dark);
}

.btn-primary:hover {
    background-color: #2d1f18;
    box-shadow: 0 18px 38px -16px rgba(0, 0, 0, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--color-wood-dark);
    color: var(--color-white);
}

.btn-inverse-style {
    background-color: var(--color-clay);
    border-color: var(--color-clay);
    color: var(--color-white);
}

.btn-inverse-style:hover {
    background-color: transparent;
    color: var(--color-clay);
    box-shadow: 0 18px 38px -16px rgba(0, 0, 0, 0.35);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-inverse-style:focus-visible {
    outline: 2px solid var(--color-clay);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(200, 159, 93, 0.2);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1003;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    height: 60px;
}

.logo-embed {
    height: 60px;
    display: block;
}

.logo-img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    border: none;
    pointer-events: none;
}

.sub-logo {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-clay);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
}

/* Sicherstellen, dass der CTA im Header lesbar bleibt */
.main-nav .btn-primary {
    color: var(--color-white);
    background-color: var(--color-wood-dark);
    border-color: var(--color-wood-dark);
}

.main-nav .btn-primary:hover {
    color: var(--color-wood-dark);
    background-color: transparent;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-clay);
}

.nav-highlight {
    color: var(--color-wood-medium) !important;
    font-weight: 600;
}

.dropdown {
    position: relative;
    padding-bottom: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-white);
    padding: 1.5rem 0;
    min-width: 260px;
    max-width: min(260px, 90vw);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    z-index: 1001;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--color-text-muted);
    transition: all 0.2s;
    display: block;
    text-align: center;
}

.dropdown-menu a:hover {
    color: var(--color-wood-dark);
    background-color: var(--color-salt-blue);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--color-wood-dark);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-salt-white);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6rem 1.5rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav ul {
    text-align: center;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    font-weight: 700;
    color: var(--color-wood-dark);
}

.mobile-nav .mobile-subitem a {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    padding-left: 1rem;
}

.mobile-nav h4 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0;
}

.mobile-nav address,
.mobile-nav address a {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    /* Offset fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}

.hero-split {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.hero-split.half {
    width: 50%;
}

.hero-left {
    background-color: #2A1F1B;
    background-image: url('./images/hero-wood.png');
}

.hero-right {
    background-color: #DCEEF5;
    background-image: url('./images/hero-drops.png');
}

.hero-section:hover .hero-split {
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(1.5rem, 5vw, 4rem);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
}

.hero-subline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-muted);
    margin: 2rem 0 3rem;
    line-height: 1.8;
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-salt-white);
    text-align: center;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto;
}

/* Magischer Schrift-Effekt für Intro */
.intro-italic {
    font-style: italic;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2.15rem, 4.6vw, 2.8rem);
    line-height: 1.5;
    display: block;
    margin: 0 auto;
    color: transparent;
    background-image: linear-gradient(135deg, #c89f5d 50%, var(--color-text-muted) 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-italic.magic-text {
    white-space: normal;
}

.intro-italic .magic-line {
    display: block;
    margin: 0.25rem 0;
    color: transparent;
    background-image: linear-gradient(135deg, #c89f5d 50%, var(--color-text-muted) 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: magic-trace 2.2s steps(120, end) forwards;
}

.intro-italic .magic-line:nth-child(1) { animation-delay: 0s; }
.intro-italic .magic-line:nth-child(2) { animation-delay: 1.1s; }
.intro-italic .magic-line:nth-child(3) { animation-delay: 2.2s; }

@keyframes magic-trace {
    from { background-position: 100% 0; }
    to { background-position: 0% 0; }
}

@keyframes magic-trace {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0% 0;
    }
}

.intro-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-muted);
    font-weight: 300;
}

.intro-heading {
    font-style: italic;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 3.1rem);
    line-height: 1.32;
    margin-bottom: 1.35rem;
}

/* Service Sections */
.holzmassiv-section {
    padding: var(--spacing-xl) 0;
}

.holzmassiv-section .split-content p.lead,
.holzmassiv-section .split-content p:nth-of-type(2) {
    color: #c89f5d;
}

.service-section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--color-white);
}

.bg-salt {
    background-color: var(--color-salt-blue);
}

.bg-clay {
    background-color: var(--color-clay-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.services-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .services-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: transparent;
    border-top: 1px solid rgba(62, 43, 34, 0.1);
    padding-top: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-clay);
}

.card-image {
    height: clamp(200px, 40vw, 280px);
    background-color: #eee;
    background-image: url('./images/service-nurholz.png');
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.placeholder-wood {
    background-image: url('./images/service-nurholz.png');
}

.placeholder-nurholz {
    background-image: url('./images/service-nurholz.png');
}

.placeholder-restoration {
    background-image: url('./images/service-restoration.png');
}

.placeholder-engineering {
    background-image: url('./images/service-truss.png');
}

.placeholder-clay {
    background-color: #D4C5B5; /* Fallback until image */
}

.card-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-clay);
    margin-bottom: 0.5rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.card-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-weight: 600;
    color: #c89f5d;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #a97f49;
    text-decoration: underline;
}

/* Split Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Asymmetrical grid */
    gap: 4rem;
    align-items: center;
    position: relative;
}

.split-layout.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.split-image {
    height: clamp(280px, 50vw, 700px);
    background-color: #ddd;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.placeholder-salt {
    background-image: url('./images/gradierwerk-relax.png');
}

.split-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-wood-dark);
    z-index: -1;
    opacity: 0.1;
    border-radius: var(--radius-sm);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(62, 43, 34, 0.08);
    display: flex;
    align-items: flex-start;
    font-size: clamp(1rem, 2.4vw, 1.1rem);
    color: var(--color-text-muted);
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-clay);
    border-radius: 50%;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Feature-Grid (Häkchen-Liste, z. B. Holzmassivbau) – stapelt auf dem Handy */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin: 2rem 0;
}

.feature-grid-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.feature-grid-item--full {
    grid-column: 1 / -1;
}

.feature-check {
    color: #a8d5a3;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Highlight Box */
.highlight-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-left: 6px solid var(--color-wood-dark);
    margin-top: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
    width: 100%;
    z-index: 10;
}

.highlight-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-wood-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box h4::before {
    content: '★';
    color: var(--color-clay);
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

.team-member {
    text-align: center;
}

.member-photo {
    height: clamp(260px, 55vw, 350px);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    /* Fallback-Verlauf, wird von .bg-* Klassen ueberschrieben */
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    background-size: cover;
    background-position: center;
}

.team-member h4 {
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-clay);
}

.values-integration {
    background-color: var(--color-salt-white);
    padding: clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-lg);
}

.values-integration h3 {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.recruiting-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d1f18 0%, var(--color-wood-dark) 55%, #3a281f 100%);
    color: var(--color-white);
    padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 60px -25px rgba(62, 43, 34, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.recruiting-cta::before {
    content: '';
    position: absolute;
    inset: -45%;
    transform: rotate(-8deg);
    background:
        radial-gradient(circle at 22% 25%, rgba(200, 159, 93, 0.38), transparent 55%),
        radial-gradient(circle at 82% 75%, rgba(174, 207, 224, 0.22), transparent 60%);
    pointer-events: none;
}

.recruiting-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.recruiting-cta-text {
    max-width: 720px;
}

.recruiting-cta .section-tag {
    margin-bottom: 1.25rem;
}

.recruiting-cta h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.recruiting-cta p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.recruiting-cta .cta-buttons {
    justify-content: flex-start;
}

.hero-tabs {
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.tab-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tab-btn {
    border: 1px solid var(--color-clay);
    background: transparent;
    color: var(--color-clay);
    padding: 0.7rem 1.25rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: rgba(200, 159, 93, 0.08);
}

.tab-btn.active {
    background: var(--color-clay);
    color: #fff;
    border-color: var(--color-clay);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-section .card-link {
    font-weight: 600;
    color: #c89f5d;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}

.service-section .card-link:hover {
    text-decoration: underline;
    color: #a97f49;
}

.recruiting-cta .btn-primary {
    background-color: var(--color-white);
    color: var(--color-wood-dark);
    border-color: var(--color-white);
    box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.35);
}

.recruiting-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.recruiting-cta .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.65);
}

.recruiting-cta .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-wood-dark);
}

/* Contact Section & Form */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.legal-section {
    padding: clamp(6rem, 14vw, 7.5rem) 0 clamp(2.5rem, 7vw, 5rem);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 4rem);
    background: var(--color-white);
    padding: clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.contact-info {
    padding-right: 2rem;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.contact-info address {
    font-style: normal;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-link-item {
    display: block;
    font-weight: 600;
    font-size: clamp(1rem, 2.4vw, 1.1rem);
    margin-bottom: 0.5rem;
    color: var(--color-wood-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-wood-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #FAFAFA;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-clay);
    background-color: var(--color-white);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
}

/* Footer */
.site-footer {
    background-color: #1A120F;
    /* Almost black */
    color: rgba(255, 255, 255, 0.6);
    padding: clamp(3rem, 8vw, 6rem) 0 2rem;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
}

.header-bewerber-link.hide {
    display: none !important;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    background-color: var(--color-clay);
    color: var(--color-white);
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 16px 32px -18px rgba(0,0,0,0.35);
    border: 1.5px solid var(--color-clay);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-cta:hover {
    background-color: transparent;
    color: var(--color-clay);
}

/* Partner Logos */
.partner-logo-box {
    height: clamp(180px, 30vw, 280px);
    background-color: var(--color-white);
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover .partner-logo-box {
    border-color: var(--color-clay);
    box-shadow: var(--shadow-subtle);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Optional: Grayscale by default, color on hover */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.service-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner Grid - Synchrone Ausrichtung */
.partner-grid {
    align-items: stretch;
}

.partner-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card .partner-logo-box {
    flex-shrink: 0;
}

.partner-card .card-subtitle {
    flex-shrink: 0;
    min-height: 1.5em;
}

.partner-card h3 {
    flex-shrink: 0;
    min-height: 2.5em;
    display: flex;
    align-items: flex-start;
}

.partner-card .feature-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.partner-card .feature-list li {
    flex: 1;
    min-height: 4em;
    display: flex;
    align-items: flex-start;
    padding-top: 1rem;
}

.partner-card .card-link {
    margin-top: auto;
    padding-top: 1.25rem;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .partner-card .feature-list li {
        min-height: 4.5em;
    }
}

/* Responsive */
@media (max-width: 540px) {
    .btn-primary,
    .btn-secondary,
    .btn-inverse-style {
        width: 100%;
    }

    .cta-buttons {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .split-layout {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 84px;
        padding-bottom: 3rem;
        display: block;
    }

    /* Mobile-Hero: Bild und Text trennen – Bild als sichtbares Band oben,
       Text als gut lesbare Karte darunter (statt durchscheinender Box ueber dem Bild) */
    .hero-bg {
        position: relative;
        flex-direction: row;
        height: 240px;
        z-index: 0;
    }

    .hero-section.gradierwerk-hero .hero-bg {
        position: relative;
        inset: auto;
        height: 240px;
    }

    .hero-split {
        position: relative;
        width: 100%;
        height: 100%;
        top: auto;
        right: auto;
        opacity: 1;
    }

    .hero-content {
        margin: 1.25rem 1rem 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse {
        grid-template-columns: 1fr;
    }

    .split-image {
        order: -1;
    }

    .recruiting-cta {
        text-align: center;
    }

    .recruiting-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .recruiting-cta p {
        margin-bottom: 0.5rem;
    }

    .recruiting-cta .cta-buttons {
        justify-content: center;
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
    }
}

/* Telefon-Stufe: stapeln + kompaktere Bedienelemente */
@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid-item--full {
        grid-column: auto;
    }

    .floating-cta {
        right: 1rem;
        bottom: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .logo a {
        height: 48px;
    }

    .logo-embed {
        height: 48px;
    }

    .logo-img {
        height: 100%;
    }
}

/* Custom Background Images */
.bg-placeholder { 
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #e5e5e5 25%, transparent 25%, transparent 50%, #e5e5e5 50%, #e5e5e5 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.bg-placeholder::after {
    content: 'Teamfoto folgt';
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 5rem);
    color: rgba(0,0,0,0.1);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    pointer-events: none;
}

.bg-hero-index { background-image: url('./images/hero-gradierwerk-main.webp'); }
.bg-hero-holzmassiv { background-image: url('./images/hero-holz-baerenstein.webp'); }
.bg-hero-lehmbau { background-image: url('./images/hero-lehmbau-landscape.webp'); }
.bg-hero-denkmal { background-image: url('./images/hero-denkmal-geyer.webp'); }
.bg-hero-gradisan { background-image: url('./images/hero-gradisan-mini.webp'); }
.bg-hero-modern { background-image: url('./images/hero-modern-riechberg.webp'); }
.bg-hero-team { background-image: url('./images/hero-modern-riechberg.webp'); }
.bg-hero-bewerber { background-image: url('./images/team-work.webp'); }
.bg-hero-gallery { background-image: url('./images/hero-salz-sassendorf.webp'); }

.bg-bruenlos { background-image: url('./images/bruenlos-lager.webp'); }
.bg-team-work { background-image: url('./images/team-work.webp'); }

.bg-holzmassiv-wochenendhaus { background-image: url('./images/holzmassiv-wochenendhaus.webp'); }
.bg-lehmbau-ref-1 { background-image: url('./images/ref-lehmbau-1.webp'); }
.bg-denkmal-villa { background-image: url('./images/denkmal-villa-esche.webp'); }
.bg-denkmal-ref-1 { background-image: url('./images/ref-denkmal-1.webp'); }
.bg-holzbau-ref-1 { background-image: url('./images/ref-holzbau-1.webp'); }
.bg-holzbau-ref-2 { background-image: url('./images/ref-holzbau-2.webp'); }

.bg-gradierwerk-sassendorf { background-image: url('./images/gradierwerk-sassendorf-main.webp'); }
.bg-gradierwerk-bau { background-image: url('./images/gradierwerk-bauphase.webp'); }
.bg-gradierwerk-frankenhausen { background-image: url('./images/gradierwerk-frankenhausen.webp'); }
.bg-gradierwerk-essen { background-image: url('./images/gradierwerk-essen-solearena.webp'); }
.bg-gradierwerk-gradisan { background-image: url('./images/gradierwerk-gradisan-mini.webp'); }
.bg-denkmal-vorhaus { background-image: url('./images/denkmal-vorhaus-chemnitz.webp'); }

/* Neu 06/2026: Mitarbeiter, Rombach, Bahnhof Annaberg, Gradierwerk Sanierung/Neubau, Lehmbau */
.bg-team-mitarbeiter-1 { background-image: url('./images/team-mitarbeiter-1.webp'); }
.bg-team-mitarbeiter-2 { background-image: url('./images/team-mitarbeiter-2.webp'); }
.bg-team-mitarbeiter-3 { background-image: url('./images/team-mitarbeiter-3.webp'); }
.bg-team-mitarbeiter-4 { background-image: url('./images/team-mitarbeiter-4.webp'); }
.bg-rombach-interieur { background-image: url('./images/holzmassiv-rombach-interieur.webp'); }
.bg-rombach-aussen { background-image: url('./images/holzmassiv-rombach-aussen.webp'); }
.bg-blog-header { background-image: url('./images/hero-lehmbau-landscape.webp'); }
.bg-rombach-haus { background-image: url('./images/holzmassiv-rombach-haus.webp'); }
.bg-modern-annaberg { background-image: url('./images/modern-bahnhof-annaberg.webp'); }
.bg-modern-annaberg-2 { background-image: url('./images/modern-bahnhof-annaberg-2.webp'); }
.bg-gradierwerk-sanierung { background-image: url('./images/gradierwerk-sanierung.webp'); }
.bg-gradierwerk-neubau { background-image: url('./images/gradierwerk-neubau.webp'); }
.bg-lehmbau-neubau { background-image: url('./images/lehmbau-neubau.webp'); }
.bg-lehmbau-startseite { background-image: url('./images/lehmbau-startseite.webp'); }
.bg-team-heino { background-image: url('./images/team-heino.webp'); background-position: center top; }
.bg-team-foto { background-image: url('./images/team-foto.webp'); background-position: center 25%; }

/* Formular: Honeypot (versteckt) + Statusmeldung */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-message {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.4;
}
.form-message.success {
    background: #e6f4ea;
    color: #1e7a34;
    border: 1px solid #b7e1c1;
}
.form-message.error {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c6c0;
}

/* Neutraler Bild-Platzhalter ("Bild folgt") fuer Blog/neue Inhalte */
.bg-bild-folgt {
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #e5e5e5 25%, transparent 25%, transparent 50%, #e5e5e5 50%, #e5e5e5 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.bg-bild-folgt::after {
    content: 'Bild folgt';
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: rgba(0, 0, 0, 0.12);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    pointer-events: none;
}

/* Überschrift als dezenter Link (z. B. Name -> Über uns) */
.heading-link { color: inherit; text-decoration: none; }
.heading-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Bildbeschriftung (z. B. "Villa Esche Chemnitz") */
.split-image.has-caption { position: relative; }
.image-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.85rem;
    border-top-right-radius: var(--radius-sm);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 16 / 10;
    background-color: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }
}

/* Touch-Geräte (kein Hover): Galerie-Overlay dauerhaft sichtbar */
@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GradiSan Section Styles ===== */

/* GradiSan Logo */
.gradisan-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Dynamic Hero Background for Gradierwerke Page */
.gradierwerk-hero .hero-bg {
    position: absolute;
    inset: 0;
}

.gradierwerk-hero .hero-split {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gradierwerk-hero .hero-split.active {
    opacity: 1;
}

/* Centered Section Header */
.section-header.centered {
    text-align: center;
}

.section-header.centered .section-tag {
    padding-left: 0;
}

.section-header.centered .section-tag::before {
    display: none;
}

/* Problem Section */
.gradisan-problem-section {
    background: linear-gradient(180deg, var(--color-salt-white) 0%, var(--color-salt-blue) 100%);
}

.problem-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(62, 43, 34, 0.12);
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-salt-blue) 0%, var(--color-salt-accent) 100%);
    color: var(--color-wood-dark);
    margin-bottom: 1.5rem;
}

.problem-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Benefit Cards */
.gradisan-benefits .benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.gradisan-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-clay-light) 0%, var(--color-clay) 100%);
    color: var(--color-wood-dark);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* bg-clay for section */
.bg-clay {
    background-color: var(--color-clay-light);
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-wood-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-clay);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-clay);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* GradiSan CTA Section */
.gradisan-cta-section {
    background: linear-gradient(135deg, var(--color-wood-dark) 0%, #5a4035 100%);
    padding: var(--spacing-lg) 0;
}

.gradisan-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gradisan-cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.gradisan-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.gradisan-cta-contact {
    margin-bottom: 1rem;
}

.contact-person {
    color: var(--color-white);
    font-size: 1rem;
}

.contact-person strong {
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-person span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.gradisan-cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.gradisan-cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive for GradiSan */
@media (max-width: 768px) {
    .problem-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }
    
    .gradisan-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .gradisan-cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Kontakt-CTA (Brücke: ersetzt das Formular auf dem statischen Host bis zum IONOS-Umzug) */
.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    height: 100%;
    padding: 2.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-wood-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-cta h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-wood-dark);
}

.contact-cta p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-cta-actions .btn-primary,
.contact-cta-actions .btn-secondary {
    text-align: center;
    justify-content: center;
}
