/* ============================================
   GOBACK — Antje Horvath, Praxis für Rückführung,
   Hypnose & Astrologie. Sage + warmes Beige,
   runde Formen, viel Weissraum, beruhigend.
   Fonts: Fraunces (Display) + Inter (Body)
   ============================================ */

:root {
    --bg:           #F4EFE6;
    --bg-alt:       #FDFCF9;
    --bg-dark:      #2B2B28;
    --bg-deep:      #21211E;
    --surface:      #EAE2D3;
    --ink:          #2B2B28;
    --ink-soft:     #46453F;
    --ink-muted:    #848176;
    --ink-light:    #B5B1A5;
    --line:         #E0D8C8;
    --line-soft:    #EAE4D6;
    --accent:       #6E8A6D;
    --accent-deep:  #4F634E;
    --accent-light: #A9BCA8;
    --sage:         #8FA68E;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Inter', sans-serif;
    --radius:       22px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.08;
    color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 6.5vw, 5.5rem); font-weight: 600; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 600; }

/* Italic-em-Safety: Fraunces hat echtes Italic */
em, .italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--accent-deep);
}
h1 em, h2 em, h3 em, h4 em {
    display: inline-block;
    padding-right: 0.08em;
}

body { background: var(--bg); }
section { padding: 7rem 0; }

.label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.4rem; display: block;
}

/* === NAV === */
.nav { background: transparent; padding: 1.6rem 0; }
.nav.scrolled {
    background: rgba(244, 239, 230, 0.96);
    border-bottom-color: var(--line);
}
.nav-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; }
.nav-logo .accent { color: var(--accent); }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-cta { border-radius: 999px !important; }
/* Pill-Nav: Links in abgerundeter Kapsel (Desktop) */
@media (min-width: 981px) {
    .nav-links {
        background: rgba(253, 252, 249, 0.85);
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 0.4rem 0.45rem 0.4rem 1.9rem;
        gap: 1.9rem;
        backdrop-filter: blur(10px);
    }
    .nav-links .nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.4rem; }
    .nav.scrolled .nav-links { background: var(--bg-alt); }
}
@media (min-width: 1181px) {
    .nav-inner { position: relative; }
    .nav-links {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* === HERO — Beige, weich, runde Formen === */
.hero {
    background: var(--bg);
    color: var(--ink);
    height: 100vh;
    max-height: 100vh;
    min-height: 0;
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg, .hero-bg::after { display: none; }
.hero::before {
    content: '';
    position: absolute;
    right: -12rem; top: 12%;
    width: 38rem; height: 38rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 166, 142, 0.28) 0%, rgba(143, 166, 142, 0.08) 55%, transparent 72%);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease 0.4s both;
}
.hero::after {
    content: '';
    position: absolute;
    right: 8rem; bottom: -10rem;
    width: 22rem; height: 22rem;
    border-radius: 50%;
    border: 1.5px solid rgba(110, 138, 109, 0.3);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease 0.9s both;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--ink-muted);
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeInLeft 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.2s both;
}
.hero-eyebrow::before {
    content: ''; width: 44px; height: 2px; border-radius: 2px; background: var(--accent);
}
.hero h1 { max-width: 17ch; margin-bottom: 1.75rem; }
.hero h1 .h1-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(0.22,0.61,0.36,1) both;
}
.hero h1 .h1-line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .h1-line:nth-child(2) { animation-delay: 0.5s; }
.hero h1 .h1-line em { color: var(--accent-deep); }
.hero .lead {
    color: var(--ink-soft);
    font-size: 1.12rem;
    max-width: 52ch;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 0.95s both;
}
.hero-actions {
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.25s both;
}
.hero-actions .btn {
    background: var(--accent); color: #FDFCF9;
    border-radius: 999px;
    padding: 1.05rem 2.6rem;
    font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.hero-actions .btn:hover { background: var(--accent-deep); transform: none; }
.hero-actions .secondary {
    font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600; color: var(--ink-soft);
    border-bottom: 1px solid var(--ink-soft); padding-bottom: 0.3rem;
}
.hero-actions .secondary:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.hero-themen {
    margin-top: 3rem;
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(0.22,0.61,0.36,1) 1.55s both;
}
.hero-themen .chip {
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 500;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    background: rgba(253, 252, 249, 0.7);
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
}

/* === ZITAT-BAND — sanft, statisch, italic Serif auf Surface === */
.zitat-band {
    background: var(--surface);
    padding: 3.25rem 0;
    text-align: center;
}
.zb-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink-soft);
    max-width: 42ch;
    margin: 0 auto;
}
.zb-quote em {
    color: var(--accent-deep);
    display: inline-block; padding-right: 0.08em;
}

/* === IMAGINATION — Was ist goback === */
.imagination-section { background: var(--bg-alt); }
.imagination-grid {
    display: grid; grid-template-columns: 1.25fr 1fr;
    gap: 5.5rem; align-items: center;
}
.imagination-content h2 { margin-bottom: 1.75rem; max-width: 20ch; }
.imagination-content p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.4rem; max-width: 58ch; }
.imagination-image { position: relative; }
.imagination-image img {
    width: 100%; max-width: 480px;
    border-radius: var(--radius);
    margin: 0 auto;
}
.imagination-image figcaption {
    font-family: var(--font-display); font-style: italic;
    font-size: 0.95rem; color: var(--ink-muted);
    text-align: center; margin-top: 1.1rem;
}

/* === ANGEBOTE — 3 runde Karten === */
.angebote-section { background: var(--bg); }
.angebote-head {
    text-align: center;
    max-width: 640px; margin: 0 auto 3.5rem;
}
.angebote-head p { font-size: 1.05rem; color: var(--ink-soft); margin-top: 1.25rem; }
.angebote-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.angebot-card {
    background: var(--bg-alt);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 2.75rem 2.5rem 3rem;
    display: flex; flex-direction: column;
    transition: border-color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}
.angebot-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(43, 43, 40, 0.07);
}
.angebot-card .a-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(143, 166, 142, 0.18);
    color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-style: italic;
    font-size: 1.1rem; font-weight: 500;
    margin-bottom: 1.75rem;
}
.angebot-card h3 { margin-bottom: 1rem; }
.angebot-card p { font-size: 0.96rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.angebot-card ul { margin-top: auto; border-top: 1px solid var(--line-soft); }
.angebot-card ul li {
    padding: 0.6rem 0 0.6rem 1.4rem;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9rem; color: var(--ink-soft);
    position: relative;
}
.angebot-card ul li:last-child { border-bottom: none; }
.angebot-card ul li::before {
    content: ''; position: absolute; left: 0; top: 1.05rem;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}

/* === WIRKUNG — dunkles Sage === */
.wirkung-section {
    background: var(--accent-deep);
    color: #F2F1E8;
}
.wirkung-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: center;
}
.wirkung-content .label { color: var(--accent-light); }
.wirkung-content h2 { color: #F2F1E8; margin-bottom: 1.5rem; }
.wirkung-content h2 em { color: #F2F1E8; opacity: 0.92; }
.wirkung-content p { color: rgba(242, 241, 232, 0.8); font-size: 1.05rem; line-height: 1.75; }
.wirkung-list { border-top: 1px solid rgba(242, 241, 232, 0.25); }
.wirkung-list li {
    display: grid; grid-template-columns: 52px 1fr;
    gap: 1.4rem; align-items: baseline;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(242, 241, 232, 0.18);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 500;
    color: #F2F1E8;
}
.wirkung-list li .idx {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.22em; color: var(--accent-light);
}

/* === ABLAUF — 3 Schritte === */
.ablauf-section { background: var(--bg-alt); }
.ablauf-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end;
    margin-bottom: 3.5rem;
}
.ablauf-head p { font-size: 1.05rem; color: var(--ink-soft); }
/* Signature: organischer Pfad — nummerierte Kreise mit verbindender Linie */
.ablauf-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.ablauf-card {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
.ablauf-card .step {
    width: 76px; height: 76px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: var(--bg);
    color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-style: italic;
    font-size: 1.15rem; font-weight: 500;
    margin: 0 auto 1.75rem;
    position: relative; z-index: 1;
    padding-right: 0.08em; /* Italic-Safety */
}
/* verbindende Linie zwischen den Kreisen */
.ablauf-card:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(50% + 50px);
    width: calc(100% + 2.5rem - 100px);
    border-top: 1.5px dashed var(--accent-light);
}
.ablauf-card h3 { margin-bottom: 0.9rem; }
.ablauf-card p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.7; max-width: 34ch; margin: 0 auto; }

/* === ÜBER MICH / QUOTE === */
.about-section {
    background: var(--surface);
    padding: 8rem 0;
}
.about-inner {
    max-width: 820px; margin: 0 auto;
    text-align: center;
}
.about-inner blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.8vw, 2.9rem);
    font-weight: 500; line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 2.25rem;
}
.about-inner cite {
    font-family: var(--font-body); font-style: normal;
    font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600;
}
.about-inner p.about-text {
    font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75;
    max-width: 58ch; margin: 2.5rem auto 0;
    text-align: left;
}

/* === KONTAKT — sanfte zentrierte Karte, kein Final-CTA-Strip === */
.contact-section {
    background: linear-gradient(rgba(169, 188, 168, 0.22), rgba(169, 188, 168, 0.22)), var(--bg);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    left: -10rem; bottom: -14rem;
    width: 30rem; height: 30rem;
    border-radius: 50%;
    border: 1.5px solid rgba(110, 138, 109, 0.25);
    pointer-events: none;
}
.contact-card {
    position: relative; z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-alt);
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: 0 24px 60px rgba(43, 43, 40, 0.08);
    padding: 4rem 4.5rem 3.5rem;
    text-align: center;
}
.contact-card .label { margin-bottom: 1.1rem; }
.contact-card h2 { margin-bottom: 1.25rem; }
.contact-lead {
    font-size: 1.02rem; color: var(--ink-soft);
    max-width: 48ch; margin: 0 auto 2.25rem;
}
.contact-rows { border-top: 1px solid var(--line); text-align: left; }
.contact-row {
    display: grid; grid-template-columns: 150px 1fr;
    gap: 2rem; padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.contact-row .label-sm {
    font-family: var(--font-body);
    font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600;
}
.contact-row .value {
    font-family: var(--font-display);
    font-size: 1.25rem; color: var(--ink); font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}
.contact-row .value a:hover { color: var(--accent-deep); }
.contact-card .btn-row {
    display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
    margin-top: 2.5rem;
}
.btn-call {
    background: var(--accent); color: #FDFCF9;
    border-radius: 999px;
    padding: 1.05rem 2.7rem;
    font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    transition: background 250ms, color 250ms;
}
.btn-call:hover { background: var(--accent-deep); color: #FDFCF9; }
.btn-mail {
    border: 1px solid var(--line); color: var(--ink-soft);
    border-radius: 999px;
    padding: 1.05rem 2.7rem;
    font-family: var(--font-body);
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
    transition: all 250ms;
}
.btn-mail:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.contact-card .placeholder-banner { text-align: left; margin-top: 2.5rem; }

/* === FOOTER === */
.footer { background: var(--bg); color: var(--ink-soft); border-top: 1px solid var(--line); padding: 4.5rem 0 2rem; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr; padding-bottom: 2.5rem; }
.footer h4 { color: var(--ink); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.footer h4 .accent { color: var(--accent); }
.footer h5 { color: var(--ink-muted); letter-spacing: 0.26em; }
.footer p { color: var(--ink-muted); }
.footer ul li { color: var(--ink-soft); font-size: 0.92rem; padding: 0.35rem 0; }
.footer ul a { color: var(--ink-soft); }
.footer ul a:hover { color: var(--accent-deep); }
.footer-bottom { border-top: 1px solid var(--line); color: var(--ink-muted); }
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--accent-deep); }

/* === PLACEHOLDER === */
.placeholder-banner {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0;
    margin-top: 2.5rem;
}
.placeholder-banner strong { color: var(--accent-deep); }
.contact-section .placeholder-banner, .ablauf-section .placeholder-banner { background: var(--bg); }
.about-section .placeholder-banner { background: var(--bg-alt); text-align: left; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(0.22,0.61,0.36,1), transform 900ms cubic-bezier(0.22,0.61,0.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
/* Kurze Desktop-Viewports (z.B. 1280×800): Hero kompakter */
@media (min-width: 981px) and (max-height: 860px) {
    .hero { padding-top: 7rem; padding-bottom: 2rem; }
    .hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); margin-bottom: 1.25rem; }
    .hero-eyebrow { margin-bottom: 1.5rem; }
    .hero .lead { font-size: 1.02rem; margin-bottom: 1.9rem; }
    .hero-themen { margin-top: 2.1rem; }
}
@media (max-width: 1180px) {
    .imagination-grid, .wirkung-grid { gap: 3.5rem; }
    .angebote-grid { gap: 1.25rem; }
    .ablauf-grid { gap: 1.75rem; }
    .ablauf-card:not(:last-child)::before {
        left: calc(50% + 48px);
        width: calc(100% + 1.75rem - 96px);
    }
}
@media (max-width: 980px) {
    section { padding: 5rem 0; }
    .hero { height: auto; max-height: none; min-height: 0; padding-top: 6.5rem; padding-bottom: 2.5rem; }
    .hero::after { display: none; }
    .imagination-grid { grid-template-columns: 1fr; gap: 3rem; }
    .imagination-image img { max-width: 420px; max-height: 320px; object-fit: cover; }
    .angebote-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .wirkung-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ablauf-head { grid-template-columns: 1fr; gap: 1.5rem; }
    .ablauf-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 0; }
    /* Pfad wird vertikal: Linie unter dem Kreis statt zur Seite */
    .ablauf-card { padding-bottom: 2.75rem; }
    .ablauf-card:not(:last-child)::before {
        left: 50%; top: auto; bottom: 0.4rem;
        width: 0; height: 1.9rem;
        border-top: none;
        border-left: 1.5px dashed var(--accent-light);
    }
    .zitat-band { padding: 2.5rem 0; }
}
@media (max-width: 560px) {
    section { padding: 4.5rem 0; }
    .hero { padding-top: 5.5rem; }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    .hero-themen { margin-top: 2.5rem; }
    .imagination-image img { max-height: 240px; }
    .contact-card { padding: 2.5rem 1.5rem 2rem; }
    .contact-row { grid-template-columns: 1fr; gap: 0.35rem; }
    .contact-card .btn-row { flex-direction: column; align-items: center; }
    .btn-call, .btn-mail { width: 100%; max-width: 320px; text-align: center; }
}
