/* =========================================
   Selbst gehostete Schriften (lokal, ohne externe Google-Fonts-Anfragen)
   Inter & Outfit – Latin-Subset (deckt deutsche Umlaute ab)
   ========================================= */
@font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/inter-300.woff2') format('woff2'),url('../fonts/inter-300.woff') format('woff')}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/inter-400.woff2') format('woff2'),url('../fonts/inter-400.woff') format('woff')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/inter-500.woff2') format('woff2'),url('../fonts/inter-500.woff') format('woff')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/inter-600.woff2') format('woff2'),url('../fonts/inter-600.woff') format('woff')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/outfit-400.woff2') format('woff2'),url('../fonts/outfit-400.woff') format('woff')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/outfit-500.woff2') format('woff2'),url('../fonts/outfit-500.woff') format('woff')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/outfit-600.woff2') format('woff2'),url('../fonts/outfit-600.woff') format('woff')}
@font-face{font-family:'Outfit';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/outfit-700.woff2') format('woff2'),url('../fonts/outfit-700.woff') format('woff')}

/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    --color-dark: #1a1a1a;
    --color-dark-alt: #2B2A29;
    --color-light: #F9F7F5;
    --color-white: #FFFFFF;

    /* Calm, high-quality sage tone */
    --color-accent: #5F6F65;
    --color-accent-hover: #4E5C54;

    --color-text: #4a4a4a;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 140px;
    --header-height-scrolled: 90px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    line-height: 1.2;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 900px;
}

.section-padding {
    padding: 8rem 0;
}

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

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

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

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

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

.text-white h2,
.text-white p {
    color: var(--color-white);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 111, 101, 0.25);
}

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

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

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* =========================================
   Header Layout & Sticky Logic
   ========================================= */
.site-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Dezente Hintergrund-Struktur im Header (Wand-/Boden-Textur, sehr zurückhaltend). */
.site-header-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/header-struktur.jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.site-header-wrapper > * {
    position: relative;
    z-index: 1;
}

.site-header {
    height: var(--header-height);
    transition: height var(--transition);
    display: flex;
    align-items: center;
}

.site-header-wrapper.scrolled .site-header {
    height: var(--header-height-scrolled);
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 120px;
    width: auto;
    max-width: unset;
    /* Prevents squishing when max-width: 100% applies from global img reset */
    transition: height var(--transition);
}

.site-header-wrapper.scrolled .logo img {
    height: 80px;
}

/* Navigation Links */
.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0 0.5rem;
}

.desktop-nav a {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
    padding: 0.2rem 0;
    line-height: normal;
}

.phone-link i {
    font-size: 1.1rem;
    color: var(--color-accent);
    display: inline-block;
    vertical-align: middle;
}

.phone-link:hover {
    color: var(--color-accent);
}

.desktop-phone {
    margin-right: clamp(1rem, 3vw, 2.5rem);
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Header Bar (Zeile 2) */
.mobile-phone-bar {
    display: block;
    background-color: var(--color-light);
    /* changed to light for organic integration with header */
    padding: 0.4rem 0;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* clean separator */
}

.mobile-phone-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .mobile-phone-bar-inner {
        gap: 0.6rem;
        flex-direction: column;
    }
}

.mobile-phone-link {
    color: var(--color-dark);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.mobile-phone-link:hover {
    color: var(--color-accent);
}

.cta-header-mobile {
    padding: 0.4rem 1.2rem;
    font-size: 0.95rem;
}

/* Tablet (Burger active, phone preserved inline) */
/* Removed cta-text logic */
@media (max-width: 1200px) {
    .desktop-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

/* Smartphone */
@media (max-width: 767px) {
    .site-header {
        height: 85px;
    }

    .site-header-wrapper.scrolled .site-header {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .site-header-wrapper.scrolled .logo img {
        height: 40px;
    }
}

/* =========================================
   Offcanvas Menu
   ========================================= */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition);
    z-index: 1050;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-light);
}

.offcanvas-title {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.close-btn:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.offcanvas-nav a {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.offcanvas-nav a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.offcanvas-contact {
    margin-top: auto;
    padding: 2rem;
    border-top: 1px solid var(--color-light);
}

.offcanvas-btn {
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--header-height) + 45px);
    /* Offset sticky header + new top bar */
}

@media (max-width: 767px) {
    /* Adjust offset for mobile phone bar height stacked */
    .hero {
        margin-top: calc(85px + 80px);
    }
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 30, 29, 0.4) 0%, rgba(31, 30, 29, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   Typography & Sections
   ========================================= */
.subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    margin-bottom: 3rem;
}

/* =========================================
   Services Section Grid (Cards)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
        justify-content: center;
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    margin-top: -46px;
    /* Overlap image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--color-text);
    font-size: 0.95rem;
}

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

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

/* =========================================
   Trust / Advantages
   ========================================= */
.trust-section {
    background-color: var(--color-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-light);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 500;
    transition: transform var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

/* =========================================
   Process
   ========================================= */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================================
   Gallery Masonry
   ========================================= */
.gallery-section {
    background-color: var(--color-white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-link svg {
    flex-shrink: 0;
}

.contact-box-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

@media (max-width: 600px) {
    .form-group.row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

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

.site-footer .copyright {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: color var(--transition);
}

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

.agency-branding p {
    font-size: 0.9rem;
}

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

/* =========================================
   Legal pages (Impressum, Datenschutz) – readable vertical spacing
   (the global * { margin: 0 } reset removes default heading/paragraph spacing)
   ========================================= */
.legal-page h1 {
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-page h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

/* =========================================
   Animation: Scroll Reveal
   ========================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Lightbox
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 2500;
}

/* =========================================
   Inline-Icons (ersetzt FontAwesome – kein externes CDN mehr)
   ========================================= */
.ico { display: inline-block; vertical-align: -0.15em; }
.mobile-phone-link .ico, .offcanvas-btn .ico, .phone-link .ico { margin-right: 0.15rem; }
.agency-branding .ico-heart { vertical-align: -0.18em; }

/* =========================================
   M4: Überlauf bei sehr schmalen Viewports (≤320–380px) verhindern
   ========================================= */
@media (max-width: 600px) {
    .contact-grid-wrapper, .grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 380px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .logo img { height: 44px; }
    .site-header-wrapper.scrolled .logo img { height: 38px; }
}

/* =========================================
   Kontaktformular: Datenschutz-Checkbox, Hinweis & Statusmeldung
   ========================================= */
.form-check { align-items: flex-start; }
.check-label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; color: var(--color-text); font-size: 0.9rem; line-height: 1.45; cursor: pointer; }
.check-label input[type="checkbox"] { margin-top: 0.2rem; flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--color-accent); }
.check-label a { color: var(--color-accent); }
.form-hint { font-size: 0.8rem; color: #777; margin-top: 0.75rem; }
.form-status { padding: 1rem 1.25rem; border-radius: 6px; margin-bottom: 1.5rem; font-weight: 500; }
.form-status.ok { background: #EAF4EE; color: #256b43; border: 1px solid #b7dcc6; }
.form-status.err { background: #FBEDEC; color: #9c2a23; border: 1px solid #f0c5c1; }
