/* =============================================================
   Corin and Spirit – Hauptstylesheet
   Klassisch & Elegant | Hell, luftig, weiblich
   ============================================================= */

/* CSS Custom Properties */
:root {
    --color-teal:       #2d6b55;   /* Primärfarbe aus Logo */
    --color-teal-light: #3d8a6e;
    --color-navy:       #1e3a5f;   /* Dunkles Blau (Lieblingsfarbe) */
    --color-navy-dark:  #152a45;
    --color-gold:       #c4a45a;   /* Gold aus Logo */
    --color-gold-light: #d4b870;
    --color-bg:         #f9f7f4;   /* Cremiger Hintergrund */
    --color-bg-white:   #ffffff;
    --color-bg-soft:    #f4f0eb;
    --color-text:       #2a2a2a;
    --color-text-mid:   #555555;
    --color-text-light: #888888;
    --color-border:     #e4dfd8;
    --font-serif:       'Playfair Display', 'Georgia', serif;
    --font-sans:        'Lato', 'Arial', sans-serif;
    --max-width:        1200px;
    --radius:           4px;
    --shadow-sm:        0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:        0 4px 24px rgba(0,0,0,0.10);
    --transition:       0.25s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-navy);
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.7rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.45rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-teal { color: var(--color-teal); }
.text-italic { font-style: italic; }

/* =============================================================
   LAYOUT HELPERS
   ============================================================= */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 2rem;
}

.section--light {
    background-color: var(--color-bg-white);
}

.section--soft {
    background-color: var(--color-bg-soft);
}

.section-title {
    font-size: 2.4rem;
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-mid);
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    font-style: italic;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.75rem auto 3.5rem;
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */

.site-header {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow-sm);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-mid);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-teal);
    border-bottom-color: var(--color-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================================
   HERO SECTION
   ============================================================= */

.hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 58, 95, 0.45) 0%,
        rgba(30, 58, 95, 0.35) 60%,
        rgba(30, 58, 95, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1rem;
    font-family: var(--font-sans);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 3.2rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.75);
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.06em;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.hero-cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* Hero mit eingebettetem Bild-Text – img-Tag skaliert das Bild proportional */
.hero--img-tag {
    min-height: 0;
    padding: 0;
    display: block;
    background: none;
    position: relative;
}
.hero--img-tag::before { display: none; }
.hero--img-tag img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll-Hint – springender Pfeil */
.scroll-hint {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(196,164,90,0.55);
    border-radius: 50%;
    text-decoration: none;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
.scroll-hint:hover { border-color: #c4a45a; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%       { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}

/* Interne Seiten – schmalerer Hero */
.hero--inner {
    min-height: 280px;
    padding: 4rem 2rem;
}

.hero--inner .hero-title {
    font-size: 2.4rem;
}

/* Hero mit Farbhintergrund (kein Bild) */
.hero--color-teal {
    background: linear-gradient(135deg, #2d6b55 0%, #1e3a5f 100%);
}

/* Brand-Hero – Corinthia / Sacramento / Cormorant Garamond */
.hero--brand {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 10, 0.42);
}

.hero--brand .brand-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero--brand .brand-name {
    line-height: 0.95;
}

.hero--brand .brand-word {
    font-family: 'Corinthia', cursive;
    font-weight: 400;
    font-size: 10rem;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}

.hero--brand .brand-and {
    font-family: 'Sacramento', cursive;
    font-size: 4.2rem;
    font-weight: 400;
    color: #c4a45a;
    vertical-align: middle;
    margin: 0 0.2em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero--brand .brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 2.4rem;
    color: #c4a45a;
    letter-spacing: 0.18em;
    padding-left: 0.18em;
    margin-top: 0.5rem;
}

.hero--brand .brand-ornament {
    display: block;
    margin: 1.4rem auto 1.2rem;
    overflow: visible;
}

.hero--brand .brand-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.9rem;
    color: #ffffff;
    text-shadow: 0 1px 16px rgba(0,0,0,0.55);
}

@media (max-width: 768px) {
    .hero--brand { height: 420px; }
    .hero--brand .brand-word { font-size: 6.5rem; }
    .hero--brand .brand-and  { font-size: 3rem; }
    .hero--brand .brand-tagline { font-size: 1.8rem; }
    .hero--brand .brand-subtitle { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero--brand { height: 360px; }
    .hero--brand .brand-word { font-size: 5rem; }
    .hero--brand .brand-and  { font-size: 2.4rem; }
    .hero--brand .brand-tagline { font-size: 1.5rem; }
    .hero--brand .brand-subtitle { font-size: 1.2rem; }
}


/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn--primary {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.btn--primary:hover {
    background: var(--color-navy-dark);
    color: #ffffff;
    border-color: var(--color-navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-teal);
    border-color: var(--color-teal);
}

.btn--outline:hover {
    background: var(--color-teal);
    color: #ffffff;
}

.btn--gold {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: #ffffff;
}

/* =============================================================
   SERVICES OVERVIEW (Startseite)
   ============================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}

.service-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.service-card:hover::before {
    opacity: 1;
}

.service-symbol {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-teal);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-teal);
    font-style: italic;
}

.service-card .service-link:hover {
    color: var(--color-navy);
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 340px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-border);
}

.about-content h2 {
    margin-bottom: 0.5rem;
}

.about-divider {
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.75rem 0 1.5rem;
}

.about-content p {
    color: var(--color-text-mid);
    font-size: 1.02rem;
}

/* =============================================================
   LEISTUNGEN (Detailseite)
   ============================================================= */

.leistung-block {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    align-items: start;
}

.leistung-block--reverse {
    grid-template-columns: 1.8fr 1fr;
}

.leistung-block--reverse .leistung-bild {
    order: 2;
}

.leistung-bild img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.leistung-text h2 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.leistung-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.5rem 0 1.25rem;
}

.leistung-text p {
    color: var(--color-text-mid);
    font-size: 0.98rem;
}

.leistung-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.leistung-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--color-text-mid);
    font-size: 0.97rem;
}

.leistung-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.1rem;
    line-height: 1.5;
}

.disclaimer-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-teal);
    background: var(--color-bg-white);
    border-radius: var(--radius);
}

.disclaimer-box p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-style: italic;
    margin: 0;
}

/* =============================================================
   TESTIMONIALS / REFERENZEN
   ============================================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3.5rem;
    color: var(--color-gold);
    opacity: 0.35;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-text-mid);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-navy);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* =============================================================
   KONTAKT
   ============================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.contact-divider {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.5rem 0 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.1rem;
    color: var(--color-teal);
    min-width: 24px;
    margin-top: 2px;
}

.contact-item-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-navy);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--color-text-mid);
    font-size: 0.95rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--color-text-mid);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

/* Kontaktformular */
.contact-form {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
    font-family: var(--font-sans);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    background: var(--color-bg-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    line-height: 1.5;
}

.form-honeypot {
    display: none !important;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message--success {
    background: #e8f5ee;
    border: 1px solid #a5d6b7;
    color: #2d6b55;
}

.form-message--error {
    background: #fdecea;
    border: 1px solid #f5b9b3;
    color: #8b2020;
}

/* =============================================================
   CTA BANNER
   ============================================================= */

.cta-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-banner .btn--primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #ffffff;
}

.cta-banner .btn--primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 3.5rem 2rem 1.5rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo-wrap {
    display: inline-block;
    background: #ffffff;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-wrap img {
    display: block;
    width: 160px;
    height: auto;
}

.footer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--color-gold);
    padding-left: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--transition);
}

.footer-social-link:hover {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: rgba(255,255,255,0.95);
}

.footer-contact-item {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
    color: rgba(255,255,255,0.95);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.75);
}

/* =============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================= */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 0.75rem;
    color: var(--color-navy);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-mid);
    font-size: 0.97rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* =============================================================
   BREADCRUMB
   ============================================================= */

.breadcrumb {
    background: var(--color-bg-soft);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.breadcrumb-inner a {
    color: var(--color-teal);
}

.breadcrumb-inner span {
    margin: 0 0.4rem;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 86px;
        left: -100%;
        width: 100%;
        background: var(--color-bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        z-index: 199;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hero-title { font-size: 2.2rem; }
    .hero--inner .hero-title { font-size: 1.8rem; }
    .hero { min-height: 420px; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .about-image img {
        max-width: 240px;
    }

    .about-divider {
        margin: 0.75rem auto 1.5rem;
    }

    .leistung-block,
    .leistung-block--reverse {
        grid-template-columns: 1fr;
    }

    .leistung-block--reverse .leistung-bild {
        order: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.9rem 1.25rem;
    }

    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding: 4rem 1.5rem; }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
