/* =========================================================
   Beauty à la Küsschen — Stylesheet
   Mobile-first. Design-Tokens unten anpassbar.
   ========================================================= */

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

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

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

/* ---------- Design-Tokens ---------- */
:root {
    /* Farben – Rosé/Koralle, angelehnt an das Studio-Branding */
    --rose-50: #fff7f8;
    --rose-100: #ffeef1;
    --rose-200: #ffdde3;
    --rose-300: #f8bccb;
    --rose-400: #ee94ab;
    --rose-500: #e0708e;
    --rose-600: #c9557a;
    --rose-700: #a63f61;

    --sand-50: #fffaf6;
    --sand-100: #fdf1e8;

    --ink-900: #2a1f24;
    --ink-700: #4d3d44;
    --ink-500: #7b6a71;
    --ink-300: #b4a6ac;

    --white: #ffffff;

    --brand: var(--rose-500);
    --brand-dark: var(--rose-600);
    --brand-soft: var(--rose-200);

    /* Verläufe */
    --grad-warm: linear-gradient(135deg, #ffe3e9 0%, #ffd9cf 55%, #ffeede 100%);
    --grad-brand: linear-gradient(135deg, var(--rose-400) 0%, var(--rose-600) 100%);

    /* Schatten */
    --sh-sm: 0 1px 2px rgba(42, 31, 36, .06), 0 2px 8px rgba(42, 31, 36, .05);
    --sh-md: 0 4px 12px rgba(42, 31, 36, .07), 0 12px 28px rgba(42, 31, 36, .07);
    --sh-lg: 0 8px 20px rgba(42, 31, 36, .09), 0 24px 48px rgba(42, 31, 36, .10);
    --sh-brand: 0 8px 24px rgba(224, 112, 142, .32);

    /* Radien */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-xl: 34px;
    --r-pill: 999px;

    /* Typo */
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Caveat', 'Segoe Script', cursive;

    /* Layout */
    --wrap: 1180px;
    --gutter: clamp(1rem, 4vw, 2rem);
    --nav-h: 68px;
    --section-y: clamp(3.5rem, 9vw, 7rem);
}

/* ---------- Basis ---------- */
html {
    scroll-behavior: smooth;
    /* Sticky-Header + Urlaubsbanner beim Ankersprung berücksichtigen */
    scroll-padding-top: calc(var(--nav-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink-700);
    background: var(--sand-50);
    line-height: 1.65;
    font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink-900);
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
}

a {
    color: var(--brand-dark);
}

.container {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

section {
    padding-block: var(--section-y);
    scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* Sichtbar nur für Screenreader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    z-index: 2000;
    background: var(--white);
    color: var(--brand-dark);
    padding: .75rem 1.5rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    box-shadow: var(--sh-md);
    text-decoration: none;
    font-weight: 600;
    transition: top .2s ease;
}

.skip-link:focus-visible {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--rose-500);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Handschrift-Akzent ---------- */
.script {
    font-family: var(--font-script);
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 1.5em;
    line-height: 1.15;
    display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: var(--grad-brand);
    --btn-fg: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 52px;
    padding: .9rem 2rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: none;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--sh-brand);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(224, 112, 142, .42);
}

.btn:active {
    transform: translateY(0);
}

.btn-ghost {
    --btn-bg: var(--white);
    --btn-fg: var(--brand-dark);
    box-shadow: var(--sh-sm);
    border: 1.5px solid var(--rose-200);
}

.btn-ghost:hover {
    box-shadow: var(--sh-md);
    background: var(--rose-50);
}

.btn-block {
    width: 100%;
}

/* ---------- Urlaubs-Banner ---------- */
.notice-bar {
    position: relative;
    z-index: 1100;
    background: var(--grad-brand);
    color: var(--white);
}

.notice-bar[hidden] {
    display: none;
}

.notice-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .7rem var(--gutter);
    max-width: var(--wrap);
    margin-inline: auto;
}

.notice-text {
    flex: 1;
    font-size: .93rem;
    line-height: 1.45;
}

.notice-text strong {
    font-weight: 700;
}

.notice-dates {
    display: block;
    opacity: .95;
}

.notice-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}

.notice-close:hover {
    background: rgba(255, 255, 255, .32);
}

/* ---------- Navigation ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(1.5) blur(14px);
    -webkit-backdrop-filter: saturate(1.5) blur(14px);
    border-bottom: 1px solid var(--rose-100);
    transition: box-shadow .25s ease;
}

.navbar.is-scrolled {
    box-shadow: var(--sh-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--nav-h);
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(1rem, .9rem + .5vw, 1.2rem);
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: -.01em;
}

.nav-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 500;
    font-size: .96rem;
    padding-block: .35rem;
    transition: color .2s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transition: width .25s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    color: var(--brand-dark);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
    width: 100%;
}

.nav-cta {
    display: none;
    min-height: 44px;
    padding: .6rem 1.4rem;
    font-size: .92rem;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    border-radius: 2px;
    background: var(--ink-900);
    transition: transform .3s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobiles Menü als Panel.
   max-height statt 0fr/1fr-Grid: funktioniert auch in älteren Engines
   zuverlässig. Der Pixelwert wird per JS aus scrollHeight gesetzt. */
.nav-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--rose-100);
    transition: max-height .32s ease;
}

.nav-panel .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1.25rem;
}

.nav-panel .nav-menu a {
    display: block;
    padding: .95rem .25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--rose-100);
}

.nav-panel .nav-menu a::after {
    display: none;
}

.nav-panel .btn {
    margin: 1rem var(--gutter) 1.5rem;
    width: calc(100% - var(--gutter) * 2);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding-block: clamp(2.5rem, 7vw, 5rem);
    background: var(--grad-warm);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    pointer-events: none;
}

.hero::before {
    width: 380px;
    height: 380px;
    top: -140px;
    right: -110px;
    background: var(--rose-300);
}

.hero::after {
    width: 320px;
    height: 320px;
    bottom: -150px;
    left: -120px;
    background: #ffd0b5;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--r-pill);
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand-dark);
    box-shadow: var(--sh-sm);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.2rem, 1.4rem + 4.2vw, 4rem);
    letter-spacing: -.02em;
    margin-bottom: .35rem;
}

.hero-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.6rem);
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem);
    color: var(--ink-700);
    max-width: 46ch;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 1.75rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
    font-size: .95rem;
    color: var(--ink-700);
}

.stars {
    color: #f4b740;
    letter-spacing: 2px;
    font-size: 1.05rem;
}

.hero-media {
    position: relative;
    order: -1;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
}

.hero-chip {
    position: absolute;
    right: clamp(-.5rem, -1vw, 0rem);
    bottom: -1.1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.1rem;
    background: var(--white);
    border-radius: var(--r-pill);
    box-shadow: var(--sh-md);
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink-900);
    white-space: nowrap;
}

.hero-chip .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #43c07c;
    box-shadow: 0 0 0 4px rgba(67, 192, 124, .18);
}

/* ---------- Abschnitts-Köpfe ---------- */
.section-head {
    text-align: center;
    max-width: 62ch;
    margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: .15rem;
}

.section-title {
    font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem);
    letter-spacing: -.015em;
    margin-bottom: .75rem;
}

.section-sub {
    color: var(--ink-500);
}

/* ---------- Über uns ---------- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: clamp(1.75rem, 5vw, 3.5rem);
    align-items: center;
}

.about-text p + p {
    margin-top: 1rem;
}

.about-points {
    list-style: none;
    display: grid;
    gap: .7rem;
    margin-top: 1.75rem;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-weight: 500;
    color: var(--ink-700);
}

.about-points li::before {
    content: '✓';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--rose-100);
    color: var(--brand-dark);
    font-size: .8rem;
    font-weight: 700;
    margin-top: .12rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(.7rem, 2vw, 1rem);
}

.about-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
}

.about-image:first-child {
    margin-top: clamp(.75rem, 3vw, 2rem);
}

/* ---------- Leistungen ---------- */
.services {
    background: linear-gradient(180deg, var(--rose-50) 0%, var(--sand-100) 100%);
}

/* Filter-Chips */
.filter-bar {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .75rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 44px;
    padding: .6rem 1.15rem;
    background: var(--white);
    border: 1.5px solid var(--rose-200);
    border-radius: var(--r-pill);
    color: var(--ink-700);
    font-size: .92rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s ease;
}

.filter-chip:hover {
    border-color: var(--rose-400);
    color: var(--brand-dark);
}

.filter-chip[aria-pressed="true"] {
    background: var(--grad-brand);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--sh-brand);
}

.service-category {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.service-category[hidden] {
    display: none;
}

.category-head {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: .85rem;
    border-bottom: 2px solid var(--rose-200);
}

.category-title {
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
}

.category-count {
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
    background: var(--rose-100);
    padding: .2rem .7rem;
    border-radius: var(--r-pill);
}

.service-grid {
    display: grid;
    gap: clamp(.85rem, 2.5vw, 1.25rem);
    grid-template-columns: 1fr;
}

/* Service-Karte: Tap-freundlich, kein Hover-Flip */
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--rose-100);
    border-radius: var(--r-lg);
    padding: clamp(1.15rem, 3vw, 1.5rem);
    box-shadow: var(--sh-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--rose-200);
}

.service-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.service-name {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
    text-wrap: pretty;
}

.service-price {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}

.service-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .6rem;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .86rem;
    color: var(--ink-500);
    background: var(--rose-50);
    border-radius: var(--r-pill);
    padding: .22rem .7rem;
}

.service-tag {
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: var(--rose-100);
    border-radius: var(--r-pill);
    padding: .22rem .65rem;
}

.service-tag.is-muted {
    color: var(--ink-500);
    background: #f0ebe8;
}

/* Details ein-/ausklappbar */
.service-toggle {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 44px;
    margin-top: .5rem;
    padding: .35rem 0;
    background: none;
    border: none;
    color: var(--brand-dark);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}

.service-toggle .chev {
    display: inline-block;
    transition: transform .25s ease;
    font-size: .75rem;
}

.service-toggle[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.service-details p {
    font-size: .94rem;
    color: var(--ink-500);
    padding-top: .5rem;
}

.service-card.is-request {
    background: var(--rose-50);
    border-style: dashed;
    border-color: var(--rose-200);
}

.services-note {
    margin-top: 1rem;
    font-size: .92rem;
    color: var(--ink-500);
}

.services-cta {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

/* ---------- Team ---------- */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.team-card {
    width: 100%;
    max-width: 340px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--grad-warm);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
}

.team-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.45rem;
    margin-bottom: .2rem;
}

.team-role {
    color: var(--brand-dark);
    font-weight: 500;
}

.team-bio {
    margin-top: .85rem;
    font-size: .95rem;
    color: var(--ink-700);
}

/* ---------- Bewertungen ---------- */
.reviews {
    background: linear-gradient(180deg, var(--sand-100) 0%, var(--rose-50) 100%);
}

.reviews-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    background: var(--white);
    padding: 1.6rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--rose-100);
}

.review-header {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.review-initial {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--grad-brand);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 600;
    color: var(--ink-900);
}

.review-date {
    font-size: .85rem;
    color: var(--ink-500);
}

.review-service {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.review-text {
    color: var(--ink-700);
    font-style: italic;
    flex: 1;
}

.review-stars {
    color: #f4b740;
    letter-spacing: 2px;
}

/* ---------- Kontakt ---------- */
.contact {
    /* leichter Tonwechsel, damit FAQ (weiß) und Kontakt nicht ineinanderlaufen */
    background: linear-gradient(180deg, var(--rose-50) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    gap: clamp(1.75rem, 5vw, 3rem);
    align-items: start;
}

.contact-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    margin-bottom: 1.75rem;
}

.info-card {
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    border-radius: var(--r-lg);
    padding: 1.5rem;
}

.info-card + .info-card {
    margin-top: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: .9rem;
}

.info-card p {
    color: var(--ink-700);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-dark);
}

.info-link:hover {
    text-decoration: underline;
}

.hours-list {
    display: grid;
    gap: .1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--rose-200);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.is-closed .time {
    color: var(--ink-300);
}

.hours-item.is-today {
    font-weight: 600;
}

.hours-item.is-today .day::after {
    content: 'heute';
    margin-left: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--brand);
    border-radius: var(--r-pill);
    padding: .12rem .5rem;
    vertical-align: middle;
}

.day {
    color: var(--ink-900);
}

.time {
    color: var(--ink-500);
    font-variant-numeric: tabular-nums;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars-large {
    color: #f4b740;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-900);
}

/* Buchungs-/Formularbox */
.booking-box {
    background: var(--grad-warm);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: var(--sh-sm);
}

.booking-box h3 {
    font-size: 1.4rem;
    margin-bottom: .6rem;
}

.booking-box > p {
    color: var(--ink-700);
    margin-bottom: 1.5rem;
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-block: 2rem;
    color: var(--ink-500);
    font-size: .88rem;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rose-300);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-row {
    display: grid;
    gap: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: .8rem 1rem;
    background: var(--white);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    font-size: 1rem; /* verhindert Auto-Zoom auf iOS */
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(224, 112, 142, .15);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .88rem;
    color: var(--ink-500);
    margin-bottom: 1.25rem;
}

.form-consent input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-height: 0;
    margin-top: .18rem;
    accent-color: var(--brand);
}

.form-status {
    margin-top: 1rem;
    padding: .85rem 1rem;
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--brand-dark);
    font-size: .93rem;
    font-weight: 500;
}

.form-status[hidden] {
    display: none;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink-900);
    color: rgba(255, 255, 255, .78);
    padding-block: clamp(2.5rem, 6vw, 3.5rem);
    /* Platz für die mobile Sticky-Leiste */
    padding-bottom: calc(clamp(2.5rem, 6vw, 3.5rem) + env(safe-area-inset-bottom));
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: .75rem;
}

.footer-brand img {
    height: 42px;
    width: auto;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: .85rem;
}

.footer p,
.footer li {
    font-size: .93rem;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .2s ease;
}

.footer a:hover {
    color: var(--rose-300);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .88rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ---------- Qualifikationen ---------- */
.credentials {
    max-width: 640px;
    margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    border-radius: var(--r-lg);
}

.credentials-title {
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.credentials-intro {
    font-size: .92rem;
    color: var(--ink-500);
    margin-bottom: 1.25rem;
}

.credentials-list {
    list-style: none;
    display: grid;
    gap: .85rem;
}

.credentials-list li {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--rose-200);
    font-size: .96rem;
}

.credentials-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.credentials-year {
    flex-shrink: 0;
    min-width: 62px;
    font-weight: 700;
    color: var(--brand-dark);
    font-variant-numeric: tabular-nums;
}

/* ---------- Bewertungsquelle ---------- */
.reviews-source {
    text-align: center;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
    font-size: .93rem;
    color: var(--ink-500);
}

.reviews-source a {
    display: inline-block;
    margin-left: .35rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 780px;
    margin-inline: auto;
    display: grid;
    gap: .75rem;
}

.faq-item {
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .2s ease;
}

.faq-item[open] {
    border-color: var(--rose-300);
}

.faq-item summary,
.form-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--ink-900);
    cursor: pointer;
    list-style: none;
}

/* Standard-Dreieck ausblenden (auch in Safari) */
.faq-item summary::-webkit-details-marker,
.form-details summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after,
.form-details summary::after {
    content: '+';
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rose-200);
    color: var(--brand-dark);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .25s ease, background .2s ease;
}

.faq-item[open] summary::after,
.form-details[open] summary::after {
    content: '−';
    background: var(--brand);
    color: var(--white);
}

.faq-item summary:hover,
.form-details summary:hover {
    color: var(--brand-dark);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--ink-700);
    font-size: .96rem;
}

/* ---------- Direktkontakt in der Buchungsbox ---------- */
.direct-contact {
    display: grid;
    gap: .6rem;
    margin-top: 1rem;
}

.direct-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 56px;
    padding: .75rem 1.1rem;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--white);
    border-radius: var(--r-md);
    color: var(--ink-900);
    text-decoration: none;
    font-size: .94rem;
    line-height: 1.35;
    transition: background .2s ease, transform .2s ease;
}

.direct-link:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.direct-link strong {
    color: var(--brand-dark);
}

.direct-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--rose-200);
    color: var(--brand-dark);
    font-size: 1.05rem;
}

/* Kontaktformular – bewusst untergeordnet */
.form-details {
    margin-top: 1.75rem;
    border-top: 1px solid var(--rose-300);
}

.form-details summary {
    padding-inline: 0;
    font-size: .96rem;
    color: var(--ink-700);
}

.form-details-hint {
    font-size: .9rem;
    color: var(--ink-500);
    margin-bottom: 1.25rem;
}

.info-contact {
    display: grid;
    gap: .1rem;
    margin-top: .75rem;
}

/* ---------- Mobile Sticky-CTA ---------- */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    gap: .6rem;
    padding: .7rem var(--gutter);
    padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--rose-100);
    transform: translateY(120%);
    transition: transform .3s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta .btn {
    flex: 1;
    min-height: 48px;
    padding-inline: 1rem;
    font-size: .95rem;
}

.sticky-cta .btn-ghost {
    flex: 0 0 auto;
    width: 52px;
    padding: 0;
}

/* ---------- Scroll-Animationen ----------
   Nur ausblenden, wenn JavaScript läuft (html.js). Ohne JS bleibt der
   Inhalt sichtbar, statt für immer auf opacity: 0 stehen zu bleiben. */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================================
   Breakpoints
   ========================================================= */

/* ≥ 560px — zwei Spalten für Karten */
@media (min-width: 560px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ≥ 768px — Tablet */
@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1.05fr 1fr;
    }

    .hero-media {
        order: 0;
    }

    .about-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

/* ≥ 960px — Desktop */
@media (min-width: 960px) {
    .nav-menu {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-toggle,
    .nav-panel {
        display: none;
    }

    .sticky-cta {
        display: none;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Druck ---------- */
@media print {
    .navbar,
    .sticky-cta,
    .notice-bar,
    .hero-actions,
    .booking-box {
        display: none !important;
    }

    body {
        background: #fff;
    }
}
