:root {
    --ink: #15211d;
    --muted: #68746f;
    --green: #173c32;
    --green-2: #245448;
    --green-soft: #e8f0ec;
    --sand: #c9a46d;
    --sand-soft: #f5eee3;
    --paper: #fbfaf7;
    --white: #fff;
    --line: rgba(23, 60, 50, .14);
    --shadow: 0 24px 70px rgba(20, 43, 35, .12);
    --radius: 26px;
    --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--green); color: #fff; }

.skip-link {
    position: fixed; top: 10px; left: 10px; transform: translateY(-150%); z-index: 9999;
    background: var(--white); color: var(--green); padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000; height: 86px;
    display: flex; align-items: center; transition: .25s ease;
}
.site-header.scrolled {
    background: rgba(251,250,247,.94); backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--line); height: 76px;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 170px; height: auto; transition: filter .25s ease; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav a { position: relative; color: var(--ink); }
.site-header:not(.scrolled) .main-nav > a:not(.nav-cta) { color: #fff; }
.main-nav > a:not(.nav-cta)::after {
    content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px;
    background: var(--sand); transition: right .2s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--sand); color: #17241f !important; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: var(--ink); transition: .2s ease; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.hero { min-height: 760px; height: min(92vh, 920px); position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/bg-hero-4.jpg') center 35%/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,28,23,.89) 0%, rgba(12,28,23,.72) 42%, rgba(12,28,23,.2) 72%, rgba(12,28,23,.08) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 70px; }
.hero-copy { max-width: 760px; color: #fff; }
.eyebrow { margin: 0 0 16px; color: var(--green-2); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: #e2c79d; }
.hero h1, .section-heading h2, .content-block h2, .booking-info h2, .atmosphere-copy h2 {
    font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em;
}
.hero h1 { margin: 0; font-size: clamp(52px, 6.7vw, 88px); line-height: .98; max-width: 850px; }
.hero h1 span { color: #e0c294; }
.hero-lead { max-width: 660px; margin: 28px 0 0; font-size: 20px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 800; transition: .2s ease; }
.button-primary { background: var(--sand); color: #17241f; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.button-primary:hover { transform: translateY(-2px); filter: brightness(1.04); }
.button-ghost { border: 1px solid rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 56px; max-width: 720px; }
.hero-facts div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.25); display: grid; gap: 2px; }
.hero-facts strong { font-size: 14px; }
.hero-facts span { font-size: 13px; color: rgba(255,255,255,.65); }
.hero-scroll { position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); color: #fff; border-radius: 50%; }

.intro-strip { background: var(--white); padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; padding: 28px 30px 28px 66px; border-right: 1px solid var(--line); }
.feature-card:last-child { border-right: 0; }
.feature-icon { position: absolute; left: 20px; top: 27px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); }
.feature-card h2 { margin: 0 0 4px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.two-col { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 90px; }
.image-stack { position: relative; min-height: 620px; }
.image-main { position: absolute; inset: 0 90px 60px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.image-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.image-detail { position: absolute; width: 240px; height: 310px; right: 0; bottom: 0; border: 10px solid var(--paper); border-radius: 22px; overflow: hidden; }
.image-detail img { width: 100%; height: 100%; object-fit: cover; }
.floating-note { position: absolute; left: -24px; bottom: 34px; width: 260px; padding: 18px 20px; border-radius: 18px; background: var(--green); color: #fff; box-shadow: var(--shadow); display: grid; gap: 4px; }
.floating-note strong { font-size: 14px; }
.floating-note span { font-size: 12px; color: rgba(255,255,255,.7); }
.content-block h2, .section-heading h2, .booking-info h2, .atmosphere-copy h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 1.06; }
.content-block .lead { margin: 28px 0 16px; font-size: 19px; color: #36433e; }
.content-block > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.check-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.check-list span { padding: 9px 13px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 13px; font-weight: 800; }
.check-list span::before { content: "✓"; margin-right: 7px; }
.text-link { color: var(--green); font-weight: 800; display: inline-flex; gap: 10px; align-items: center; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.treatments { background: #eef2ef; }
.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; max-width: 680px; }
.category-list { display: grid; gap: 56px; }
.category-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 24px; }
.category-heading span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.category-heading h3 { margin: 0; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.treatment-card { position: relative; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 32px rgba(25,56,46,.06); transition: .22s ease; }
.treatment-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(25,56,46,.12); }
.treatment-image { height: 170px; overflow: hidden; background: #dfe7e3; }
.treatment-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.treatment-card:hover img { transform: scale(1.04); }
.treatment-body { min-height: 126px; padding: 20px; display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.treatment-body h4 { margin: 0 0 3px; font-size: 17px; line-height: 1.25; }
.treatment-body p { margin: 0; color: var(--muted); font-size: 13px; }
.price { white-space: nowrap; color: var(--green); font-size: 19px; }
.card-link { position: absolute; inset: 0; z-index: 2; }
.notice-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; display: grid; gap: 4px; }
.notice-card span { color: var(--muted); }

.atmosphere { background: var(--green); color: #fff; overflow: hidden; }
.atmosphere::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -180px; top: -220px; }
.atmosphere-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.atmosphere-copy p:last-child { color: rgba(255,255,255,.7); max-width: 520px; }
.gallery-mini { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 12px; height: 410px; align-items: stretch; }
.gallery-mini img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.gallery-mini img:nth-child(2) { transform: translateY(24px); }

.testimonial { text-align: center; background: var(--sand-soft); }
.testimonial-wrap { max-width: 880px; }
.quote-mark { font-family: Georgia, serif; font-size: 120px; height: 74px; line-height: 1; color: rgba(23,60,50,.16); }
.testimonial blockquote { margin: 16px auto 24px; font-family: Georgia, serif; font-size: clamp(28px, 4vw, 45px); line-height: 1.28; color: #23342e; }
.rating { color: #a87b32; letter-spacing: 4px; font-size: 18px; }
.quote-author { margin: 5px 0 0; font-weight: 800; }

.booking-section { background: var(--paper); }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.booking-info { position: sticky; top: 120px; }
.booking-info > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-cards { display: grid; gap: 10px; margin-top: 32px; }
.contact-card { display: flex; gap: 14px; align-items: center; padding: 15px 16px; border: 1px solid var(--line); background: #fff; border-radius: 14px; transition: .2s ease; }
a.contact-card:hover { border-color: rgba(23,60,50,.35); transform: translateX(3px); }
.contact-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-weight: 900; }
.contact-card span:last-child { display: grid; }
.contact-card small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.contact-card strong { font-size: 14px; }

.booking-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(23,60,50,.08); }
.booking-card-head { background: var(--green); color: #fff; padding: 30px 34px 26px; }
.booking-card-head span { text-transform: uppercase; letter-spacing: .13em; font-size: 11px; color: #d9bd92; font-weight: 800; }
.booking-card-head h3 { margin: 5px 0 5px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.booking-card-head p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
#booking-form { padding: 32px 34px 36px; }
.form-row.two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field > span { font-size: 12px; font-weight: 800; color: #43504b; }
.field input, .field select { width: 100%; height: 52px; border: 1px solid #d9dfdc; border-radius: 12px; background: #fff; color: var(--ink); padding: 0 14px; outline: 0; transition: .18s ease; }
.field input:focus, .field select:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(36,84,72,.10); }
.field input:disabled, .field select:disabled { background: #f2f4f3; color: #8b9490; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b84a42; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; margin: 5px 0 20px; color: var(--muted); font-size: 12px; }
.privacy-check input { margin-top: 4px; accent-color: var(--green); }
.privacy-check a { text-decoration: underline; color: var(--green); }
.booking-submit { width: 100%; }
.booking-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.form-feedback { min-height: 22px; margin-top: 12px; font-size: 13px; text-align: center; }
.form-feedback.success { color: #26724f; }
.form-feedback.error { color: #a33b35; }
.form-feedback.info { color: var(--muted); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: #102b24; color: rgba(255,255,255,.72); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1.2fr .75fr; gap: 50px; }
.footer-brand img { width: 170px; margin-bottom: 14px; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.5); }
.footer-grid h2 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; margin: 5px 0 16px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; }
.footer-grid a:hover, .footer-link-button:hover { color: #fff; }
.footer-link-button { background: none; border: 0; color: inherit; padding: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 48px; font-size: 12px; color: rgba(255,255,255,.4); }

.cookie-banner { position: fixed; z-index: 2000; left: 24px; right: 24px; bottom: 24px; max-width: 930px; margin: 0 auto; padding: 18px; border-radius: 20px; background: #fff; box-shadow: 0 24px 80px rgba(13,31,25,.28); border: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; }
.cookie-banner[hidden] { display: none; }
.cookie-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--sand-soft); color: #8e662b; display: grid; place-items: center; font-size: 24px; }
.cookie-copy h2 { margin: 0 0 3px; font-size: 16px; }
.cookie-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie-copy a { display: inline-block; margin-top: 4px; color: var(--green); text-decoration: underline; font-size: 12px; font-weight: 700; }
.cookie-ok { min-height: 44px; padding-inline: 20px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Rechtliche Unterseiten */
.legal-page { background: #f3f5f3; min-height: 100vh; }
.legal-header { background: var(--green); padding: 34px 0; }
.legal-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header img { width: 165px; filter: none; }
.legal-back { color: #fff; font-weight: 800; font-size: 13px; }
.legal-main { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 100px; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px, 6vw, 58px); box-shadow: 0 18px 50px rgba(23,60,50,.07); }
.legal-card h1 { font-family: Georgia, serif; font-size: clamp(38px, 6vw, 60px); font-weight: 500; line-height: 1.05; margin: 0 0 35px; }
.legal-card h2 { margin: 34px 0 10px; font-size: 20px; }
.legal-card h3 { margin: 22px 0 7px; font-size: 16px; }
.legal-card p, .legal-card li { color: #59645f; }
.legal-card a { color: var(--green); text-decoration: underline; }
.legal-card ul { padding-left: 20px; }
.legal-note { padding: 15px 17px; border-radius: 12px; background: var(--sand-soft); color: #5b4d39; font-size: 13px; }

@media (max-width: 980px) {
    .site-header { height: 74px; }
    .nav-toggle { display: block; position: relative; z-index: 1002; }
    .main-nav { position: fixed; inset: 0; background: var(--paper); padding: 110px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; transform: translateX(100%); transition: transform .28s ease; font-size: 20px; }
    .main-nav.open { transform: none; }
    .site-header:not(.scrolled) .main-nav > a:not(.nav-cta) { color: var(--ink); }
    .nav-cta { margin-top: 10px; }
    .nav-toggle.active span { background: var(--ink) !important; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .two-col, .booking-grid, .atmosphere-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 60px; }
    .image-stack { min-height: 560px; max-width: 650px; }
    .treatment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .booking-info { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-mini { height: 360px; }
}

@media (max-width: 700px) {
    :root { --shell: min(100% - 28px, 1180px); --radius: 20px; }
    .section { padding: 78px 0; }
    .brand img { width: 145px; }
    .hero { min-height: 720px; height: auto; padding: 130px 0 80px; }
    .hero-bg { background-position: 66% center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(10,26,21,.91), rgba(10,26,21,.7)); }
    .hero h1 { font-size: clamp(46px, 14vw, 66px); }
    .hero-lead { font-size: 17px; }
    .hero-facts { grid-template-columns: 1fr; gap: 11px; margin-top: 40px; }
    .hero-facts div { display: flex; justify-content: space-between; gap: 20px; }
    .hero-scroll { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 58px; }
    .feature-card:last-child { border-bottom: 0; }
    .feature-icon { left: 10px; }
    .image-stack { min-height: 500px; }
    .image-main { inset: 0 46px 60px 0; }
    .image-detail { width: 170px; height: 230px; border-width: 7px; }
    .floating-note { left: 10px; bottom: 18px; width: 235px; }
    .category-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
    .treatment-grid { grid-template-columns: 1fr; }
    .treatment-image { height: 190px; }
    .gallery-mini { grid-template-columns: 1fr 1fr; height: auto; }
    .gallery-mini img { aspect-ratio: 1 / 1; }
    .gallery-mini img:nth-child(2) { transform: none; }
    .gallery-mini img:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 2 / 1; }
    .form-row.two { grid-template-columns: 1fr; gap: 0; }
    #booking-form, .booking-card-head { padding-left: 22px; padding-right: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; gap: 5px; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: auto 1fr; }
    .cookie-ok { grid-column: 1 / -1; width: 100%; }
    .legal-header .shell { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Font Awesome & Kundenmeinungen-Slider */
.feature-icon i,
.contact-icon i,
.cookie-icon i { line-height: 1; }

.check-list span { display: inline-flex; align-items: center; gap: 7px; }
.check-list span::before { content: none; }
.check-list i { font-size: 12px; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

.testimonial-slider { max-width: 980px; }
.testimonial-slider > .eyebrow { margin-bottom: 12px; }
.testimonial-track { display: grid; width: 100%; }
.testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(28px);
    transition: opacity .42s ease, transform .42s ease, visibility .42s ease;
}
.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.testimonial .quote-mark {
    height: 64px;
    font-family: inherit;
    font-size: 52px;
    display: grid;
    place-items: center;
    color: rgba(23,60,50,.18);
}
.testimonial .rating { display: flex; justify-content: center; gap: 5px; letter-spacing: 0; }
.testimonial .rating i { font-size: 16px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.testimonial-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(23,60,50,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    color: var(--green);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .2s ease;
}
.testimonial-arrow:hover,
.testimonial-arrow:focus-visible { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-1px); }
.testimonial-dots { display: flex; align-items: center; gap: 8px; }
.testimonial-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(23,60,50,.24);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.testimonial-dot.active { width: 25px; background: var(--green); }
.testimonial-dot:focus-visible { outline: 3px solid rgba(23,60,50,.22); outline-offset: 3px; }

.booking-submit { gap: 10px; }
.booking-submit i { font-size: 13px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 700px) {
    .testimonial blockquote { font-size: clamp(25px, 8vw, 34px); }
    .testimonial-controls { margin-top: 24px; }
}
