/* Soer & Neumann Immobilien – component styles, scoped to .sn-site.
   GENERATED from ../soer-neumann/style.css by build/scope-css.mjs – do not edit by hand. */

.sn-site { box-sizing: border-box; }
/* ══════════════════════════════════════════
   Soer & Neumann Immobilien – Shared Styles
   ══════════════════════════════════════════ */

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

.sn-site {
    --primary: #424140;
    --primary-light: #302F2E;
    --accent: #CDB495;
    --accent-light: #CDB495;
    --accent-dark: #CDB495;
    --text: #424140;
    --text-light: #424140;
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    --bg-dark: #f3f0eb;
    --border: #e5e1db;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1280px;
    --section-padding: clamp(4rem, 8vw, 7rem);
}

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

.sn-site {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.sn-site img { max-width: 100%; height: auto; display: block; }
.sn-site a { text-decoration: none; color: inherit; transition: color 0.3s; }

.sn-site .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Header ── */
.sn-site .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.sn-site .header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.sn-site .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.sn-site .logo { display: flex; align-items: center; gap: 0.75rem; }

.sn-site .logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700; font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.sn-site .logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    color: var(--primary); line-height: 1.2;
}

.sn-site .logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-top: 2px;
}

.sn-site .nav { display: flex; align-items: center; gap: 0; }

.sn-site .nav a {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text); letter-spacing: 0.01em;
    position: relative; transition: color 0.3s;
}

.sn-site .nav a:hover { color: var(--accent-dark); }

.sn-site .nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1.1rem; right: 1.1rem;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transition: transform 0.3s;
}

.sn-site .nav a:hover::after { transform: scaleX(1); }

.sn-site .nav-cta {
    margin-left: 0.75rem;
    padding: 0.6rem 1.4rem !important;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.3s !important;
}

.sn-site .nav-cta::after { display: none !important; }
.sn-site .nav-cta:hover { background: var(--primary-light) !important; color: var(--white) !important; }

.sn-site .mobile-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 0.5rem;
}

.sn-site .mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--primary); margin: 5px 0; transition: 0.3s;
}

/* ── Buttons ── */
.sn-site .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.3s;
}

.sn-site .btn-primary { background: var(--accent); color: var(--primary); }
.sn-site .btn-primary:hover { background: var(--accent-light); }
.sn-site .btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.sn-site .btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }
.sn-site .btn-dark { background: var(--primary); color: var(--white); }
.sn-site .btn-dark:hover { background: var(--primary-light); }
.sn-site .btn-accent-outline { background: transparent; color: var(--accent-dark); border: 1px solid var(--accent); }
.sn-site .btn-accent-outline:hover { background: var(--accent); color: var(--primary); }

/* ── Section Defaults ── */
.sn-site .section { padding: var(--section-padding) 0; }

.sn-site .section-header { text-align: center; margin-bottom: 3.5rem; }

.sn-site .section-label {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 1rem;
}

.sn-site .section-label::before,
.sn-site .section-label::after {
    content: ''; width: 24px; height: 1px; background: var(--accent);
}

.sn-site .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600; color: var(--primary);
    line-height: 1.25; margin-bottom: 1rem;
}

.sn-site .section-desc {
    font-size: 1rem; color: var(--text-light);
    max-width: 620px; margin: 0 auto; line-height: 1.75;
}

.sn-site .section-cta { text-align: center; margin-top: 3rem; }

/* ── Page Hero (Unterseiten) ── */
.sn-site .page-hero {
    margin-top: 80px;
    background: var(--primary);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.sn-site .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(205,180,149,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(205,180,149,0.05) 0%, transparent 50%);
}

.sn-site .page-hero .container { position: relative; z-index: 2; }

.sn-site .page-hero .breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.sn-site .page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.sn-site .page-hero .breadcrumb a:hover { color: var(--accent-light); }
.sn-site .page-hero .breadcrumb .sep { color: rgba(255,255,255,0.2); }

.sn-site .page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--white);
    line-height: 1.2; margin-bottom: 1rem;
    max-width: 700px;
}

.sn-site .page-hero h1 em { font-style: normal; color: var(--accent-light); }

.sn-site .page-hero .page-hero-desc {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
}

/* ── Content Blocks ── */
.sn-site .content-section { padding: var(--section-padding) 0; }
.sn-site .content-section.alt { background: var(--bg-warm); }

.sn-site .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.sn-site .content-grid.reverse { direction: rtl; }
.sn-site .content-grid.reverse > * { direction: ltr; }

.sn-site .content-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600; color: var(--primary);
    line-height: 1.3; margin-bottom: 1.25rem;
}

.sn-site .content-block p {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 1rem;
}

.sn-site .content-block p:last-child { margin-bottom: 0; }

.sn-site .content-block .btn { margin-top: 1rem; }

.sn-site .content-img {
    width: 100%; aspect-ratio: 4/3;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.85rem; text-align: center; padding: 1rem;
}

.sn-site .content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.sn-site .content-narrow h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600; color: var(--primary);
    line-height: 1.3; margin-bottom: 1rem;
}

.sn-site .content-narrow p {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 1.25rem;
}

/* ── Process Steps ── */
.sn-site .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.sn-site .step-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.75rem;
    position: relative;
    transition: border-color 0.3s;
}

.sn-site .step-card:hover { border-color: var(--accent); }

.sn-site .step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 700;
    color: var(--accent); opacity: 0.3;
    line-height: 1; margin-bottom: 0.75rem;
}

.sn-site .step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 600;
    color: var(--primary); margin-bottom: 0.5rem;
}

.sn-site .step-card p {
    font-size: 0.85rem; color: var(--text-light); line-height: 1.7;
}

/* ── Feature Cards ── */
.sn-site .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.sn-site .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sn-site .feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.sn-site .feature-icon {
    width: 48px; height: 48px;
    background: var(--bg-warm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}

.sn-site .feature-icon svg { color: var(--accent-dark); }

.sn-site .feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--primary); margin-bottom: 0.5rem;
}

.sn-site .feature-card p {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.7;
}

/* ── Service Cards (from Startseite) ── */
.sn-site .services { background: var(--bg-warm); }

.sn-site .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.sn-site .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.sn-site .service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.sn-site .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transition: transform 0.3s;
}

.sn-site .service-card:hover::before { transform: scaleX(1); }

.sn-site .service-icon {
    width: 48px; height: 48px;
    background: var(--bg-warm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}

.sn-site .service-icon svg { color: var(--accent-dark); }

.sn-site .service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    color: var(--primary); margin-bottom: 0.75rem;
}

.sn-site .service-card p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 1.25rem;
}

.sn-site .service-link {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent-dark);
    display: inline-flex; align-items: center; gap: 0.4rem;
}

.sn-site .service-link:hover { color: var(--primary); }
.sn-site .service-link svg { transition: transform 0.3s; }
.sn-site .service-link:hover svg { transform: translateX(4px); }

/* ── Property Cards ── */
.sn-site .properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.sn-site .property-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.sn-site .property-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.sn-site .property-img {
    position: relative; aspect-ratio: 4/3;
    background: var(--bg-dark); overflow: hidden;
}

.sn-site .property-img img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s;
}

.sn-site .property-card:hover .property-img img { transform: scale(1.04); }

.sn-site .property-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--primary); color: var(--white);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 0.75rem;
}

.sn-site .property-info { padding: 1.5rem; }

.sn-site .property-location {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 0.5rem;
}

.sn-site .property-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--primary); margin-bottom: 1rem; line-height: 1.3;
}

.sn-site .property-meta {
    display: flex; gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.sn-site .property-meta-item { font-size: 0.78rem; color: var(--text-light); }

.sn-site .property-meta-item strong {
    display: block; font-size: 0.95rem;
    color: var(--primary); font-weight: 600;
}

.sn-site .property-price {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    color: var(--primary); margin-top: 1rem;
}

/* ── Reference Cards ── */
.sn-site .references { background: var(--bg-warm); }

.sn-site .references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.sn-site .ref-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.sn-site .ref-card .property-img::after {
    content: 'Verkauft';
    position: absolute; top: 1rem; left: 1rem;
    background: var(--accent); color: var(--primary);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 0.75rem;
}

.sn-site .ref-info { padding: 1.25rem 1.5rem; }

.sn-site .ref-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 600;
    color: var(--primary); margin-bottom: 0.25rem;
}

.sn-site .ref-info p { font-size: 0.82rem; color: var(--text-light); }

/* ── Team ── */
.sn-site .team { background: var(--primary); color: var(--white); }
.sn-site .team .section-label { color: var(--accent-light); }
.sn-site .team .section-label::before,
.sn-site .team .section-label::after { background: var(--accent); }
.sn-site .team .section-title { color: var(--white); }
.sn-site .team .section-desc { color: rgba(255,255,255,0.6); }

.sn-site .team-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem; max-width: 900px; margin: 0 auto;
}

.sn-site .team-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem; text-align: center;
    transition: border-color 0.3s;
}

.sn-site .team-card:hover { border-color: rgba(205,180,149,0.3); }

.sn-site .team-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--accent);
    font-family: var(--font-heading);
    border: 2px solid rgba(205,180,149,0.2);
}

.sn-site .team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.5rem;
}

.sn-site .team-card .team-role {
    font-size: 0.78rem; font-weight: 500;
    color: var(--accent-light); letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.sn-site .team-card .team-cred {
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
    line-height: 1.6; margin-bottom: 1.25rem;
}

.sn-site .team-contact { display: flex; flex-direction: column; gap: 0.4rem; }

.sn-site .team-contact a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6); transition: color 0.3s;
}

.sn-site .team-contact a:hover { color: var(--accent-light); }

/* ── Team (light variant for Unternehmen page) ── */
.sn-site .team-light .team-grid { max-width: 100%; }

.sn-site .team-light .team-card {
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
}

.sn-site .team-light .team-card:hover { border-color: var(--accent); }

.sn-site .team-light .team-photo {
    background: var(--bg-warm);
    color: var(--accent-dark);
    border-color: var(--border);
}

.sn-site .team-light .team-card h3 { color: var(--primary); }
.sn-site .team-light .team-card .team-role { color: var(--accent-dark); }
.sn-site .team-light .team-card .team-cred { color: var(--text-light); }
.sn-site .team-light .team-contact a { color: var(--text-light); }
.sn-site .team-light .team-contact a:hover { color: var(--accent-dark); }

/* ── Testimonials ── */
.sn-site .testimonials { background: var(--bg-warm); }

.sn-site .testimonials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
}

.sn-site .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
}

.sn-site .testimonial-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem; color: var(--accent);
    line-height: 1; margin-bottom: 0.75rem;
}

.sn-site .testimonial-card p {
    font-size: 0.92rem; color: var(--text);
    line-height: 1.75; font-style: italic; margin-bottom: 1.25rem;
}

.sn-site .testimonial-author { font-size: 0.82rem; font-weight: 600; color: var(--primary); }
.sn-site .testimonial-role { font-size: 0.75rem; color: var(--text-light); }

/* ── CTA Section ── */
.sn-site .cta-section {
    background: var(--primary); color: var(--white);
    text-align: center; padding: var(--section-padding) 0;
}

.sn-site .cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600; margin-bottom: 1rem;
}

.sn-site .cta-section p {
    font-size: 1rem; color: rgba(255,255,255,0.65);
    max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.75;
}

.sn-site .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.sn-site .cta-phone {
    display: flex; align-items: center; justify-content: center;
    gap: 0.75rem; margin-top: 2rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

.sn-site .cta-phone a {
    font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 600;
    color: var(--accent-light);
}

.sn-site .cta-phone a:hover { color: var(--accent); }

/* ── FAQ Accordion ── */
.sn-site .faq-list { max-width: 800px; margin: 0 auto; }

.sn-site .faq-item {
    border-bottom: 1px solid var(--border);
}

.sn-site .faq-question {
    width: 100%;
    background: none; border: none;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 600;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: color 0.3s;
}

.sn-site .faq-question:hover { color: var(--accent-dark); }

.sn-site .faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--accent);
}

.sn-site .faq-item.open .faq-question svg { transform: rotate(45deg); }

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

.sn-site .faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.sn-site .faq-answer p {
    font-size: 0.92rem; color: var(--text-light);
    line-height: 1.8;
}

/* ── Contact Form ── */
.sn-site .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sn-site .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.sn-site .form-group.full { grid-column: 1 / -1; }

.sn-site .form-group label {
    font-size: 0.82rem; font-weight: 600;
    color: var(--primary); letter-spacing: 0.02em;
}

.sn-site .form-group input,
.sn-site .form-group select,
.sn-site .form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.9rem; color: var(--text);
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
    width: 100%;
}

.sn-site .form-group input:focus,
.sn-site .form-group select:focus,
.sn-site .form-group textarea:focus {
    border-color: var(--accent);
}

.sn-site .form-group textarea { resize: vertical; min-height: 140px; }

.sn-site .form-note {
    font-size: 0.78rem; color: var(--text-light);
    margin-top: 0.75rem;
}

/* ── Blog Grid ── */
.sn-site .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.sn-site .blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.sn-site .blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.sn-site .blog-img {
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--text-light);
}

.sn-site .blog-info { padding: 1.5rem; }

.sn-site .blog-meta {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 0.5rem;
}

.sn-site .blog-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    color: var(--primary); margin-bottom: 0.5rem; line-height: 1.3;
}

.sn-site .blog-info p {
    font-size: 0.85rem; color: var(--text-light); line-height: 1.7;
}

/* ── Contact Info Sidebar ── */
.sn-site .contact-sidebar {
    background: var(--primary);
    padding: 2.5rem;
    color: var(--white);
}

.sn-site .contact-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 1.5rem;
}

.sn-site .contact-info-item {
    display: flex; gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.sn-site .contact-info-item svg {
    flex-shrink: 0; margin-top: 2px;
    color: var(--accent);
}

.sn-site .contact-info-item a { color: rgba(255,255,255,0.7); }
.sn-site .contact-info-item a:hover { color: var(--accent-light); }

.sn-site .contact-hours {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sn-site .contact-hours h4 {
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent-light); margin-bottom: 0.75rem;
}

.sn-site .contact-hours p {
    font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* ── Legal Pages ── */
.sn-site .legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--section-padding) 0;
}

.sn-site .legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 600;
    color: var(--primary); margin: 2.5rem 0 0.75rem;
}

.sn-site .legal-content h3 {
    font-size: 1.05rem; font-weight: 600;
    color: var(--primary); margin: 1.5rem 0 0.5rem;
}

.sn-site .legal-content p {
    font-size: 0.92rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 0.75rem;
}

.sn-site .legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.sn-site .legal-content ul li {
    font-size: 0.92rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 0.25rem;
}

/* ── Map Placeholder ── */
.sn-site .map-placeholder {
    width: 100%; height: 350px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--text-light);
}

/* ── Filter Bar ── */
.sn-site .filter-bar {
    display: flex; gap: 1rem; flex-wrap: wrap;
    padding: 1.5rem 0; margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.sn-site .filter-btn {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-light);
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.sn-site .filter-btn:hover,
.sn-site .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── Checklist ── */
.sn-site .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.sn-site .check-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.92rem; color: var(--text); line-height: 1.6;
}

.sn-site .check-list li svg {
    flex-shrink: 0; margin-top: 3px;
    color: var(--accent-dark);
}

/* ── Stat Boxes (inline) ── */
.sn-site .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sn-site .stat-box {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}

.sn-site .stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 600;
    color: var(--accent-dark); line-height: 1;
    margin-bottom: 0.35rem;
}

.sn-site .stat-box .stat-label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-light);
}

/* ── Footer ── */
.sn-site .footer {
    background: #302F2E;
    color: rgba(255,255,255,0.5);
    padding: 4rem 0 2rem;
}

.sn-site .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; margin-bottom: 3rem;
}

.sn-site .footer-brand p {
    font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem;
}

.sn-site .footer-certifications {
    display: flex; gap: 1rem; align-items: center;
}

.sn-site .cert-badge {
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}

.sn-site .footer h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 1.25rem;
}

.sn-site .footer-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
}

.sn-site .footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45); transition: color 0.3s;
}

.sn-site .footer-links a:hover { color: var(--accent-light); }

.sn-site .footer-contact-item {
    display: flex; gap: 0.75rem; align-items: flex-start;
    margin-bottom: 1rem; font-size: 0.85rem;
}

.sn-site .footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.sn-site .footer-contact-item a:hover { color: var(--accent-light); }

.sn-site .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between;
    align-items: center; font-size: 0.78rem;
}

.sn-site .footer-legal { display: flex; gap: 1.5rem; }
.sn-site .footer-legal a:hover { color: var(--accent-light); }

/* ── Placeholder Images ── */
.sn-site .img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--border) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--text-light);
    text-align: center; padding: 1rem;
}

/* ── Hero (Startseite) ── */
.sn-site .hero {
    margin-top: 80px; position: relative;
    min-height: 85vh; display: flex; align-items: center;
    background: var(--primary); overflow: hidden;
}

.sn-site .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #302F2E 100%);
}

.sn-site .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(205,180,149,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(205,180,149,0.05) 0%, transparent 50%);
}

.sn-site .hero-pattern {
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%; opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px
    );
}

.sn-site .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    padding: var(--section-padding) 0;
}

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

.sn-site .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(205,180,149,0.3);
    color: var(--accent-light);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.sn-site .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
}

.sn-site .hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600; line-height: 1.2;
    margin-bottom: 1.5rem; color: var(--white);
}

.sn-site .hero h1 em { font-style: normal; color: var(--accent-light); }

.sn-site .hero-desc {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem; max-width: 520px;
}

.sn-site .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.sn-site .hero-visual {
    position: relative;
    display: flex; justify-content: center; align-items: center;
}

.sn-site .hero-video-wrap {
    position: relative; width: 100%; aspect-ratio: 16/10;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.sn-site .play-btn {
    position: absolute;
    width: 72px; height: 72px;
    background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: transform 0.3s, background 0.3s;
}

.sn-site .play-btn:hover { transform: scale(1.08); background: var(--accent-light); }
.sn-site .play-btn svg { margin-left: 3px; }

.sn-site .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(26,35,50,0.85);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06); z-index: 3;
}

.sn-site .hero-stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}

.sn-site .stat {
    padding: 1.75rem 2rem; text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.06);
}

.sn-site .stat:last-child { border-right: none; }

.sn-site .stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 600;
    color: var(--accent-light); line-height: 1;
    margin-bottom: 0.35rem;
}

.sn-site .stat .stat-label {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Trust Section ── */
.sn-site .trust-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.sn-site .trust-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600; color: var(--primary);
    line-height: 1.25; margin-bottom: 1.5rem;
}

.sn-site .trust-content > p {
    font-size: 1rem; color: var(--text-light);
    line-height: 1.75; margin-bottom: 2rem;
}

.sn-site .trust-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.sn-site .trust-list li { display: flex; gap: 1rem; align-items: flex-start; }

.sn-site .trust-check {
    flex-shrink: 0; width: 28px; height: 28px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}

.sn-site .trust-check svg { color: var(--accent-dark); }

.sn-site .trust-list li strong {
    display: block; font-size: 0.9rem;
    color: var(--primary); margin-bottom: 0.15rem;
}

.sn-site .trust-list li span {
    font-size: 0.85rem; color: var(--text-light); line-height: 1.6;
}

.sn-site .trust-visual { position: relative; }

.sn-site .trust-img-main {
    width: 100%; aspect-ratio: 4/5;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.85rem;
}

.sn-site .trust-badge {
    position: absolute; bottom: 2rem; right: -1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center; max-width: 180px;
}

.sn-site .trust-badge-number {
    font-family: var(--font-heading);
    font-size: 2.25rem; font-weight: 700;
    color: var(--accent-dark); line-height: 1;
}

.sn-site .trust-badge-text {
    font-size: 0.72rem; font-weight: 500;
    color: var(--text-light); text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 0.35rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sn-site .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .sn-site .hero-visual { max-width: 600px; }
    .sn-site .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sn-site .services-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-site .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-site .references-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-site .trust-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sn-site .trust-badge { right: 1rem; }
    .sn-site .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-site .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sn-site .content-grid.reverse { direction: ltr; }
    .sn-site .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sn-site .header-inner { height: 64px; }
    .sn-site .hero { margin-top: 64px; min-height: auto; }
    .sn-site .page-hero { margin-top: 64px; }
    .sn-site .nav { display: none; }
    .sn-site .mobile-toggle { display: block; }
    .sn-site .nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    .sn-site .nav.open a { padding: 0.75rem 1.5rem; }
    .sn-site .nav.open a::after { display: none; }
    .sn-site .nav-cta { margin-left: 0 !important; margin: 0.5rem 1.5rem !important; text-align: center; }
    .sn-site .services-grid { grid-template-columns: 1fr; }
    .sn-site .properties-grid { grid-template-columns: 1fr; }
    .sn-site .references-grid { grid-template-columns: 1fr; }
    .sn-site .testimonials-grid { grid-template-columns: 1fr; }
    .sn-site .team-grid { grid-template-columns: 1fr; max-width: 500px; }
    .sn-site .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sn-site .stat { padding: 1.25rem 1rem; }
    .sn-site .hero-actions { flex-direction: column; }
    .sn-site .btn { justify-content: center; }
    .sn-site .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sn-site .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .sn-site .form-grid { grid-template-columns: 1fr; }
    .sn-site .blog-grid { grid-template-columns: 1fr; }
    .sn-site .filter-bar { gap: 0.5rem; }
    .sn-site .steps-grid { grid-template-columns: 1fr; }
}


/* Divi wrapper reset for original HTML-based layouts. */
.et_pb_section.sn-original-wrapper,
.sn-original-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.sn-original-wrapper > .et_pb_row,
.sn-original-wrapper .sn-original-row {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sn-original-wrapper .sn-original-column,
.sn-original-wrapper .sn-original-module,
.sn-original-wrapper .et_pb_text,
.sn-original-wrapper .et_pb_text_inner {
    padding: 0 !important;
    margin: 0 !important;
}

.sn-original-wrapper .et_pb_text_inner > .sn-site {
    width: 100%;
}

.sn-original-wrapper .sn-site {
    min-height: 0;
}
