:root {
    --blue:        #3d52d2;
    --blue-light:  #6b7de8;
    --blue-dark:   #2b3db0;
    --gold:        #c4993a;
    --gold-light:  #e8c46a;
    --text:        #384452;
    --text-light:  #6a7585;
    --bg:          #ffffff;
    --bg-soft:     #f4f5fc;
    --border:      #dde0f4;
    --nav-h:       72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

/* ── Navigation ── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(61,82,210,.08);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin-left: auto;
    flex-wrap: wrap;
}

.nav-links a {
    display: block;
    padding: .45rem .6rem;
    font-family: Arial, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .025em;
    text-transform: uppercase;
    color: var(--text);
    transition: color .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-links a.active {
    border-bottom: 2px solid var(--blue);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: .3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .38;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,61,176,.85) 0%, rgba(61,82,210,.55) 60%, rgba(196,153,58,.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-content p {
    font-size: 1.15rem;
    opacity: .9;
    max-width: 580px;
    line-height: 1.65;
}

.hero-home { min-height: 600px; }

/* ── Sections ── */
.section {
    padding: 5rem 0;
}

.section-soft { background: var(--bg-soft); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--blue);
    margin-bottom: .6rem;
}

.section-subtitle {
    font-family: Arial, sans-serif;
    font-size: .95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: .8rem 0 2.5rem;
}

/* ── Service Cards (Homepage) ── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    background: var(--bg);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(61,82,210,.15);
    color: var(--text);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
}

.card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    color: var(--blue);
    margin-bottom: .5rem;
    font-weight: 400;
}

.card-text {
    font-family: Arial, sans-serif;
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.card-link {
    margin-top: 1.1rem;
    font-family: Arial, sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.card-link::after { content: '→'; }

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-family: Arial, sans-serif;
    font-size: .97rem;
    color: var(--text);
    margin-bottom: 1.1rem;
    line-height: 1.75;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.about-images img {
    border-radius: 6px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-images img:first-child {
    grid-column: 1 / -1;
    height: 280px;
}

/* ── Service Detail Page ── */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-family: Arial, sans-serif;
    font-size: .97rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--text);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.service-list li:last-child { border-bottom: none; }

.service-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(61,82,210,.12);
}

.service-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ── Gallery ── */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .25s, opacity .25s;
}

.gallery img:hover { transform: scale(1.02); opacity: .9; }

.garten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.garten-imgs {
    display: flex;
    gap: .6rem;
}
.garten-imgs img {
    width: calc(33.333% - .4rem);
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    opacity: .85;
}
@media (max-width: 680px) {
    .garten-grid { grid-template-columns: 1fr; }
    .garten-imgs img { aspect-ratio: 4/3; }
}

/* ── Contact Box ── */
.contact-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 2.2rem;
    margin-top: 1.5rem;
}

.contact-box h3 {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: .85rem;
    font-family: Arial, sans-serif;
    font-size: .92rem;
}

.contact-icon {
    width: 22px;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--blue);
    margin-top: .1rem;
}

.contact-row a { color: var(--text); }
.contact-row a:hover { color: var(--blue); }

.contact-box-inner {
    display: block;
}

.btn-sm {
    padding: .45rem 1rem;
    font-size: .82rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.hours-grid {
    font-family: Arial, sans-serif;
    font-size: .9rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .25rem .8rem;
    color: var(--text);
}

/* ── CTA Button ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.8rem;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border: 2px solid var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: #a37d28;
    border-color: #a37d28;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
}

/* ── Coming Soon ── */
.coming-soon {
    text-align: center;
    padding: 6rem 2rem;
}

.coming-soon h2 {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 400;
}

.coming-soon p {
    font-family: Arial, sans-serif;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ── Footer ── */
footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,.85);
    padding: 3.5rem 0 1.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

footer h4 {
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

footer p, footer a, footer li {
    font-family: Arial, sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    list-style: none;
}

footer a:hover { color: #fff; }

.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid,
    .service-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-images { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    /* Querformat-Fotos (z. B. Teamfoto) einspaltig nicht beschneiden */
    .service-img .img-natural-mobile { height: auto; }
}

@media (max-width: 1150px) {
    .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 0; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: .7rem 2rem; font-size: .9rem; }
    .burger { display: block; }
}

@media (max-width: 680px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .cards { grid-template-columns: 1fr; }
}

/* ── Steps Section ── */
.section-steps {
    background: var(--blue-dark);
}

/* ── Steps Slider (Vermögensberatung) ── */
.steps-slider-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.steps-slider {
    overflow: hidden;
    flex: 1;
}

.steps-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.steps-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: .5rem;
}

.steps-slide-inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(61,82,210,.13), 0 1px 4px rgba(61,82,210,.07);
    padding: 3.5rem 3rem 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.steps-slide-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.steps-num {
    font-size: 6rem;
    font-weight: 400;
    color: var(--blue);
    opacity: .08;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: .2rem;
    user-select: none;
}

.steps-slide-inner h3 {
    font-size: 1.45rem;
    color: var(--blue);
    font-weight: 400;
    margin-bottom: 1.1rem;
}

.steps-slide-inner p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
}

.steps-btn {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(61,82,210,.1);
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}

.steps-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(61,82,210,.25);
}

.steps-dots {
    display: flex;
    justify-content: center;
    gap: .7rem;
    margin-top: 2rem;
}

.steps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s, width .25s;
}

.steps-dot.active {
    background: var(--gold);
    transform: scale(1.25);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 680px) {
    .steps-slide-inner { padding: 2.5rem 1.8rem 2rem; }
    .steps-btn { width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .steps-slider-wrap { gap: .6rem; }
    .steps-slide-inner { padding: 2rem 1.2rem 1.8rem; }
    .steps-btn { width: 34px; height: 34px; font-size: .85rem; }
    .steps-num { font-size: 4rem; }
    .steps-slide-inner h3 { font-size: 1.2rem; }
}

/* ── Kartenbilder – Höhe auf mobil ── */
@media (max-width: 680px) {
    .cards .card-img { height: 280px; }
}

@media (max-width: 480px) {
    .cards .card-img { height: 260px; }
}
