/* ============================================================
   BESTATTUNGEN HAUSER – styles.css
   Dignified · Calm · Muted
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --stone:        #2c2a27;
    --stone-mid:    #4a4640;
    --stone-light:  #7a746d;
    --sand:         #f5f1ea;
    --sand-dim:     #e8e2d8;
    --warm-white:   #faf8f4;
    --sage:         #6b7c6a;
    --sage-light:   #8a9e89;
    --sage-muted:   #d6ddd5;
    --line:         rgba(44,42,39,0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --radius:       4px;
    --shadow:       0 2px 12px rgba(44,42,39,0.10);
    --shadow-lg:    0 6px 32px rgba(44,42,39,0.16);
    --transition:   0.3s ease;
    --container:    1160px;
    --header-h:     72px;
}

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

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--stone);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--stone);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--stone-light);
    font-size: 1rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.btn-light {
    background: var(--warm-white);
    color: var(--stone);
    border-color: var(--warm-white);
}
.btn-light:hover { background: var(--sand); border-color: var(--sand); }

.btn-ghost {
    background: transparent;
    color: var(--warm-white);
    border-color: rgba(250,248,244,0.5);
}
.btn-ghost:hover { background: rgba(250,248,244,0.1); border-color: var(--warm-white); }

.btn-dark {
    background: var(--stone);
    color: var(--warm-white);
    border-color: var(--stone);
}
.btn-dark:hover { background: var(--stone-mid); border-color: var(--stone-mid); }

/* ── FADE-IN ──────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(42,39,35,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 0.85rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--warm-white);
    letter-spacing: 0.01em;
}
.logo-city {
    font-size: 0.7rem;
    color: rgba(250,248,244,0.55);
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(250,248,244,0.75);
    padding: 0.4rem 0.85rem;
    border-radius: 3px;
    transition: color var(--transition);
    letter-spacing: 0.03em;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--warm-white);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(250,248,244,0.65);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    border-left: 1px solid rgba(250,248,244,0.12);
    padding-left: 1.25rem;
}
.header-phone i { color: var(--sage-light); font-size: 0.75rem; }
.header-phone em {
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-light);
    background: rgba(107,124,106,0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--warm-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to left,
        rgba(28,25,22,0.82) 0%,
        rgba(28,25,22,0.40) 60%,
        rgba(28,25,22,0.15) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--sage-light);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(250,248,244,0.75);
    max-width: 440px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-rule {
    width: 48px;
    height: 1px;
    background: rgba(250,248,244,0.35);
    margin-bottom: 1.25rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: rgba(250,248,244,0.55);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
}
.hero-meta i { color: var(--sage-light); margin-right: 0.3rem; }
.hero-meta-sep { color: rgba(250,248,244,0.25); }

.hero-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.55);
    border-bottom: 1px solid rgba(250,248,244,0.2);
    padding-bottom: 0.2rem;
    transition: color var(--transition), border-color var(--transition);
}
.hero-scroll-link:hover {
    color: var(--warm-white);
    border-color: rgba(250,248,244,0.6);
}

.hero-erreichbar {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(28,25,22,0.65);
    backdrop-filter: blur(8px);
    color: rgba(250,248,244,0.85);
    font-size: 0.83rem;
    padding: 0.55rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(250,248,244,0.12);
    white-space: nowrap;
}
.hero-erreichbar i { color: var(--sage-light); }

/* ── WERTE STRIP ──────────────────────────────────────────── */
.werte-strip {
    background: var(--stone);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.wert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2.5rem;
    color: rgba(250,248,244,0.75);
    font-size: 0.88rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: color var(--transition);
}
.wert-item:last-child { border-right: none; }
.wert-item:hover { color: var(--warm-white); }

.wert-item i {
    color: var(--sage-light);
    font-size: 1.05rem;
    width: 1.2rem;
    text-align: center;
}

.wert-item span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.wert-item span em {
    font-style: normal;
    color: var(--warm-white);
    font-weight: 500;
    font-size: 0.92rem;
}

/* ── LEISTUNGEN ───────────────────────────────────────────── */
.leistungen-section {
    padding: 6rem 0;
    background: var(--warm-white);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.leistung-card {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.leistung-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.leistung-icon {
    width: 44px;
    height: 44px;
    background: var(--sage-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.leistung-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.leistung-card p {
    font-size: 0.9rem;
    color: var(--stone-light);
    line-height: 1.7;
}

/* ── PARALLAX BREAK ───────────────────────────────────────── */
.parallax-break {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -30%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 23, 20, 0.72);
    z-index: 1;
}

.parallax-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.parallax-zitat {
    text-align: center;
    max-width: 680px;
}

.parallax-zitat p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: var(--warm-white);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.parallax-zitat cite {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--sage-light);
    text-transform: uppercase;
    font-style: normal;
}

.begleitung-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.begleitung-card {
    background: rgba(250,248,244,0.07);
    border: 1px solid rgba(250,248,244,0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: background var(--transition);
}
.begleitung-card:hover { background: rgba(250,248,244,0.12); }

.begleitung-card i {
    font-size: 1.5rem;
    color: var(--sage-light);
    margin-bottom: 1rem;
    display: block;
}

.begleitung-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--warm-white);
    margin-bottom: 0.75rem;
}

.begleitung-card p {
    font-size: 0.88rem;
    color: rgba(250,248,244,0.65);
    line-height: 1.7;
}

/* ── ABLAUF / ÜBER UNS ────────────────────────────────────── */
.ablauf-section {
    padding: 6rem 0;
    background: var(--sand);
}

.ablauf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.ablauf-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--stone);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ablauf-text p {
    font-size: 0.97rem;
    color: var(--stone-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.ablauf-text p:last-of-type { margin-bottom: 1.75rem; }

.ablauf-schritte {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schritt {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}
.schritt:first-child { padding-top: 0; }
.schritt:last-child  { border-bottom: none; }

.schritt-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    padding-top: 0.1rem;
}

.schritt-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}
.schritt-text p {
    font-size: 0.88rem;
    color: var(--stone-light);
    line-height: 1.65;
}

/* ── KONTAKT ──────────────────────────────────────────────── */
.kontakt-section {
    position: relative;
    padding: 8rem 0 7rem;
    overflow: hidden;
    background: var(--stone);
}

.kontakt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.kontakt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(60%);
    opacity: 0.18;
}

.kontakt-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(44,42,39,0.65) 0%,
        rgba(44,42,39,0.80) 100%
    );
}

.kontakt-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.kontakt-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.kontakt-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1.5rem;
}

.kontakt-nummer {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    color: var(--warm-white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
    transition: color var(--transition);
}
.kontakt-nummer:hover { color: var(--sage-light); }

.kontakt-versprechen {
    font-size: 0.88rem;
    color: rgba(250,248,244,0.4);
    letter-spacing: 0.06em;
    font-style: italic;
}

.kontakt-linie {
    width: 100%;
    max-width: 640px;
    height: 1px;
    background: rgba(250,248,244,0.1);
    margin: 0 auto 2.5rem;
}

.kontakt-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 640px;
}

.kontakt-col {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(250,248,244,0.08);
}
.kontakt-col:last-child { border-right: none; }

.kontakt-col-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.6rem;
}

.kontakt-col-val {
    font-size: 0.87rem;
    color: rgba(250,248,244,0.6);
    line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--stone);
    color: rgba(250,248,244,0.55);
    font-size: 0.82rem;
    padding: 2rem 0;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250,248,244,0.75);
    margin-right: auto;
}
.footer-logo i { color: var(--sage-light); }

.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(250,248,244,0.45);
    transition: color var(--transition);
}
.footer-links a:hover { color: rgba(250,248,244,0.8); }

.footer-copy a {
    color: rgba(250,248,244,0.45);
    transition: color var(--transition);
}
.footer-copy a:hover { color: rgba(250,248,244,0.8); }

/* ── DISCLAIMER ───────────────────────────────────────────── */
.escape-disclaimer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 0.85rem 1.5rem;
}

.escape-disclaimer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.6;
}

.escape-disclaimer__inner i {
    color: #666;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.escape-disclaimer__inner a {
    color: #aaa;
    text-decoration: underline;
}
.escape-disclaimer__inner a:hover { color: #ccc; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
    .ablauf-layout { gap: 3rem; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }

    .nav-menu { display: none; flex-direction: column; gap: 0; }
    .nav-menu.open {
        display: flex;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: rgba(30,27,24,0.98);
        backdrop-filter: blur(12px);
        padding: 2rem;
        align-items: flex-start;
        gap: 0.25rem;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-menu.open a {
        font-size: 1.4rem;
        font-family: var(--font-display);
        font-weight: 300;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: rgba(250,248,244,0.8);
    }

    .menu-toggle { display: flex; }
    .header-phone { display: none; }

    .leistungen-grid   { grid-template-columns: 1fr; }
    .begleitung-cards  { grid-template-columns: 1fr; }
    .ablauf-layout     { grid-template-columns: 1fr; gap: 2.5rem; }
    .kontakt-cols      { grid-template-columns: 1fr; max-width: 320px; }
    .kontakt-col       { border-right: none; border-bottom: 1px solid rgba(250,248,244,0.08); padding: 1.25rem 0; }
    .kontakt-col:last-child { border-bottom: none; }

    .werte-strip { flex-direction: column; }
    .wert-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .wert-item:last-child { border-bottom: none; }

    .hero-erreichbar { width: calc(100% - 4rem); justify-content: center; }

    .parallax-bg { background-attachment: scroll; inset: 0; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .footer-logo  { margin-right: 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.6rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}
