/* SW Skinglow – Globales Design-System */

:root {
    --color-accent: #CBB492;
    --color-accent-light: #E5D9C5;
    --color-text: #000000;
    --color-text-muted: #383838;
    --color-label: #5a4a38;
    --color-bg: #F6F1EA;
    --color-surface: #FBF8F3;
    --color-white: #FFFFFF;
    --color-border: #E5D9C5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --font-label: 'Jost', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 7.5rem;

    --radius: 0.5rem;
    --radius-lg: 1rem;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: 0.25s ease;
    --transition-btn: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --btn-shadow: 0 2px 12px rgba(203, 180, 146, 0.2);
    --btn-shadow-hover: 0 6px 22px rgba(203, 180, 146, 0.34);

    --container-max: 72rem;
    --header-height: 4.5rem;
    --shadow-header: 0 10px 40px rgba(203, 180, 146, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.sw-page-home {
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 0.2em;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Typografie */
.sw-heading-1 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 var(--space-md);
}

.sw-heading-2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 var(--space-md);
}

.sw-heading-3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 var(--space-sm);
}

.sw-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 var(--space-md);
}

.sw-body-sm {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 var(--space-sm);
    color: var(--color-text-muted);
}

.sw-label {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-label);
    margin: 0 0 var(--space-sm);
}

.sw-quote {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
}

/* Layout */
.sw-section {
    padding: var(--space-4xl) 0;
}

.sw-section--surface {
    background-color: var(--color-surface);
}

.sw-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.sw-grid {
    display: grid;
    gap: var(--space-xl);
}

.sw-grid--2 {
    grid-template-columns: 1fr;
}

.sw-grid--3 {
    grid-template-columns: 1fr;
}

.sw-section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto var(--space-2xl);
}

/* Skip link */
.sw-skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-text);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius);
}

.sw-skip-link:focus {
    top: var(--space-md);
}

/* Header – Ever-style */
.sw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    min-height: var(--header-height);
    color: var(--color-text);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.sw-header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-md);
    min-height: var(--header-height);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.sw-header__nav {
    justify-self: start;
}

.sw-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.sw-header__nav-link {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: inherit;
    padding: 0.25rem;
    white-space: nowrap;
    transition: color var(--transition), opacity var(--transition);
}

.sw-header__nav-link:hover,
.sw-header__nav-link:focus-visible {
    color: var(--color-accent);
    opacity: 0.9;
}

.sw-header__nav-link.is-active {
    color: var(--color-accent);
}

.sw-header__appointment {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 0 0.5rem 1rem;
    transition: color var(--transition), opacity var(--transition);
}

.sw-header__appointment:hover,
.sw-header__appointment:focus-visible {
    color: var(--color-accent);
    opacity: 0.9;
}

.sw-header__end {
    justify-self: end;
}

.sw-header__logo {
    justify-self: center;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sw-header__logo-img {
    display: block;
    height: 2rem;
    width: auto;
}

.sw-page-home .sw-hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
}

body:not(.sw-page-home) main > .sw-section:first-child {
    padding-top: calc(var(--header-height) + var(--space-4xl));
}

/* Buttons */
.sw-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5625rem 1.25rem;
    min-height: 2.375rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--btn-shadow);
    transition:
        color var(--transition-btn),
        border-color var(--transition-btn),
        box-shadow var(--transition-btn),
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition-btn);
    z-index: -1;
}

.sw-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow-hover);
}

.sw-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--btn-shadow);
}

.sw-btn--primary {
    background: var(--color-accent);
    color: var(--color-text);
    border-color: var(--color-accent);
    padding-inline: 2.25rem;
}

.sw-btn--primary::before {
    background: var(--color-text);
}

.sw-btn--primary::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 1rem;
    font-size: 0.875em;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(0.5rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.sw-btn--primary:hover {
    color: var(--color-white);
    border-color: var(--color-text);
}

.sw-btn--primary:hover::before {
    transform: scaleX(1);
}

.sw-btn--primary:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.sw-btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-accent);
    box-shadow: none;
}

.sw-btn--outline::before {
    background: var(--color-accent);
}

.sw-btn--outline:hover {
    color: var(--color-text);
    border-color: var(--color-accent);
}

.sw-btn--outline:hover::before {
    transform: scaleX(1);
}

.sw-btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.sw-btn--whatsapp::before {
    background: #1da851;
}

.sw-btn--whatsapp:hover {
    color: var(--color-white);
    border-color: #1da851;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.sw-btn--whatsapp:hover::before {
    transform: scaleX(1);
}

.sw-btn--phone {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.sw-btn--phone::before {
    background: var(--color-accent);
}

.sw-btn--phone:hover {
    color: var(--color-text);
    border-color: var(--color-accent);
    box-shadow: var(--btn-shadow-hover);
}

.sw-btn--phone:hover::before {
    transform: scaleX(1);
}

.sw-btn-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

/* Cards */
.sw-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

.sw-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sw-card__link:hover {
    color: inherit;
}

.sw-card__cta {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.sw-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.sw-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--color-accent-light);
}

.sw-card__body {
    padding: var(--space-lg);
}

.sw-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    margin: 0 0 var(--space-sm);
}

.sw-card__text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* Hero */
.sw-hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.sw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sw-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(246, 241, 234, 0.7), rgba(246, 241, 234, 0.95));
    z-index: 1;
}

.sw-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
    max-width: 40rem;
}

.sw-hero__tagline {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 400;
    font-style: italic;
    margin: 0 0 var(--space-xl);
    color: var(--color-text);
    opacity: 0.82;
}

/* Leistungen – Scroll-Slider */
.sw-leistungen-scroll {
    position: relative;
    height: calc(100vh + (var(--slide-count) - 1) * var(--scroll-step-height));
    background: var(--color-bg);
    --slide-width: 78vw;
    --slide-gap: 4vw;
    --slide-step: calc(var(--slide-width) + var(--slide-gap));
    --visible-slots: 1;
    --scroll-step-height: 22vh;
}

.sw-leistungen-scroll__pin {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-xl);
}

.sw-leistungen-scroll__viewport {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    padding: var(--space-md) 0 var(--space-lg);
}

.sw-leistungen-scroll__track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: var(--space-sm) max(5vw, calc((100vw - (var(--slide-width) * var(--visible-slots) + var(--slide-gap) * (var(--visible-slots) - 1))) / 2));
    will-change: transform;
    transform: translate3d(
        calc(
            var(--scroll-progress, 0) *
            (var(--slide-count) - var(--visible-slots)) *
            -1 *
            var(--slide-step)
        ),
        0,
        0
    );
}

.sw-leistungen-scroll__slide {
    flex: 0 0 var(--slide-width);
    width: var(--slide-width);
    margin-right: var(--slide-gap);
    padding: var(--space-xs) 0;
}

.sw-leistungen-scroll__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    width: 100%;
    padding: var(--space-sm) 0 var(--space-md);
    text-align: left;
    transition: transform 0.4s ease;
}

.sw-leistungen-scroll__slide--1 .sw-leistungen-scroll__card {
    transform: translateY(-0.75rem);
}

.sw-leistungen-scroll__slide--2 .sw-leistungen-scroll__card {
    transform: translateY(1rem);
}

.sw-leistungen-scroll__slide--3 .sw-leistungen-scroll__card {
    transform: translateY(0.25rem);
}

.sw-leistungen-scroll__figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 5 / 6;
    max-height: 46vh;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sw-leistungen-scroll__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sw-leistungen-scroll__meta {
    width: 100%;
    padding: var(--space-xs) 0 0;
}

.sw-leistungen-scroll__num {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--color-text-muted);
}

.sw-leistungen-scroll__title {
    margin: var(--space-xs) 0 0;
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.625rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--color-text);
    text-wrap: balance;
}

.sw-leistungen-scroll__title-link {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.sw-leistungen-scroll__title-link:hover {
    color: var(--color-accent);
}

@media (min-width: 48rem) {
    .sw-leistungen-scroll {
        --slide-width: 28vw;
        --slide-gap: 2vw;
        --visible-slots: 3;
        --scroll-step-height: 18vh;
    }

    .sw-leistungen-scroll__figure {
        max-height: 42vh;
    }
}

@media (min-width: 64rem) {
    .sw-leistungen-scroll {
        --slide-width: 24vw;
        --slide-gap: 1.75vw;
        --scroll-step-height: 15vh;
    }

    .sw-leistungen-scroll__figure {
        max-height: 40vh;
    }
}

/* Parallax-Leistungsgalerie */
.sw-parallax-showcase {
    position: relative;
    height: calc(100vh + 55vh);
    background: var(--color-surface);
}

.sw-parallax-showcase__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.sw-parallax-showcase__scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sw-parallax-showcase__item {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    opacity: 0.48;
    transform: translate3d(0, var(--parallax-shift, 0), 0);
    will-change: transform;
}

.sw-parallax-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sw-parallax-showcase__item--1 {
    width: min(34vw, 20rem);
    aspect-ratio: 3 / 4;
    left: 4%;
    top: 52%;
}

.sw-parallax-showcase__item--2 {
    width: min(40vw, 24rem);
    aspect-ratio: 16 / 10;
    right: 3%;
    top: 10%;
}

.sw-parallax-showcase__item--3 {
    width: min(24vw, 14rem);
    aspect-ratio: 1 / 1;
    left: 14%;
    top: 4%;
}

.sw-parallax-showcase__item--4 {
    width: min(30vw, 18rem);
    aspect-ratio: 2 / 3;
    right: 14%;
    top: 58%;
}

.sw-parallax-showcase__item--5 {
    width: min(36vw, 22rem);
    aspect-ratio: 4 / 3;
    left: 38%;
    top: 68%;
}

.sw-parallax-showcase__content {
    position: relative;
    z-index: 2;
    max-width: 44rem;
    padding: var(--space-lg);
    text-align: center;
    pointer-events: none;
}

.sw-parallax-showcase__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--color-text);
    text-wrap: balance;
    text-shadow:
        0 0 32px rgba(246, 241, 234, 0.95),
        0 0 64px rgba(246, 241, 234, 0.85),
        0 2px 24px rgba(246, 241, 234, 0.7);
}

/* Über mich */
.sw-ueber-mich {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 12% 88%, rgba(203, 180, 146, 0.14), transparent 62%),
        radial-gradient(ellipse 55% 45% at 92% 18%, rgba(229, 217, 197, 0.35), transparent 58%),
        var(--color-bg);
}

.sw-ueber-mich__inner {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.sw-ueber-mich__visual {
    position: relative;
    max-width: 26rem;
    margin-inline: auto;
}

.sw-ueber-mich__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(203, 180, 146, 0.18),
        0 16px 48px rgba(90, 74, 56, 0.08);
}

.sw-ueber-mich__figure img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.sw-ueber-mich__frame {
    position: absolute;
    inset: -0.75rem -0.75rem 0.75rem 0.75rem;
    border: 1px solid rgba(203, 180, 146, 0.55);
    border-radius: calc(var(--radius-lg) + 0.25rem);
    pointer-events: none;
}

.sw-ueber-mich__content {
    max-width: 36rem;
}

.sw-ueber-mich__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: var(--space-lg);
}

.sw-ueber-mich__lead {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
}

.sw-ueber-mich__quote {
    position: relative;
    margin: 0 0 var(--space-xl);
    padding: 0 0 0 var(--space-lg);
    border: 0;
    border-left: 2px solid var(--color-accent);
}

.sw-ueber-mich__quote p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--color-text-muted);
    text-wrap: pretty;
}

.sw-ueber-mich__text {
    max-width: 38ch;
}

.sw-ueber-mich__text .sw-body:last-child {
    margin-bottom: 0;
}

/* Termin */
.sw-termin {
    position: relative;
    background:
        radial-gradient(ellipse 75% 55% at 50% 0%, rgba(229, 217, 197, 0.38), transparent 68%),
        radial-gradient(ellipse 45% 35% at 88% 92%, rgba(203, 180, 146, 0.12), transparent 62%),
        var(--color-surface);
    text-align: center;
}

.sw-termin__inner {
    max-width: 38rem;
    margin: 0 auto;
}

.sw-termin__header {
    margin: 0 auto var(--space-2xl);
}

.sw-termin__heading {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: var(--space-xl);
}

.sw-termin__intro {
    max-width: 38ch;
    margin-inline: auto;
    margin-bottom: 0;
    line-height: 1.75;
    text-wrap: pretty;
}

.sw-termin__divider {
    width: 2.5rem;
    height: 1px;
    margin: 0 auto var(--space-2xl);
    background: rgba(203, 180, 146, 0.55);
}

.sw-termin__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.sw-termin__btn-group {
    gap: var(--space-lg);
    width: 100%;
}

.sw-termin__note {
    max-width: 32ch;
    margin: 0;
    line-height: 1.65;
    text-wrap: pretty;
}

/* Kontakt */
.sw-kontakt__grid {
    display: grid;
    gap: var(--space-2xl);
}

.sw-kontakt__item {
    margin-bottom: var(--space-md);
}

.sw-kontakt__item strong {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

/* Breadcrumbs */
.sw-breadcrumbs {
    margin-bottom: var(--space-xl);
}

.sw-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
}

.sw-breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: var(--space-xs);
    color: var(--color-text-muted);
}

.sw-breadcrumbs__link {
    text-decoration: none;
    color: var(--color-text-muted);
}

.sw-breadcrumbs__link:hover {
    color: var(--color-accent);
}

.sw-breadcrumbs__current {
    color: var(--color-text);
}

/* Leistung Detail */
.sw-leistung-detail__hero {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.sw-leistung-detail__image {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sw-leistung-detail__lead {
    font-size: var(--text-lg);
    line-height: 1.7;
}

.sw-leistung-detail__content {
    max-width: 48rem;
}

.sw-leistung-detail__section {
    margin-bottom: var(--space-2xl);
}

.sw-leistung-detail__section h2 {
    margin-bottom: var(--space-md);
}

.sw-leistung-detail__list {
    margin: var(--space-md) 0 0;
    padding-left: 1.25rem;
}

.sw-leistung-detail__list li {
    margin-bottom: var(--space-sm);
}

.sw-leistung-detail__related {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.sw-leistung-detail__related-list {
    list-style: none;
    margin: var(--space-md) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.sw-leistung-detail__related-link {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.sw-leistung-detail__related-link:hover {
    background: var(--color-accent-light);
    color: var(--color-text);
}

/* FAQ */
.sw-faq__list {
    max-width: 48rem;
    margin: 0 auto var(--space-3xl);
}

.sw-faq__item {
    border-bottom: 1px solid var(--color-border);
}

.sw-faq__item:first-child {
    border-top: 1px solid var(--color-border);
}

.sw-faq__question {
    padding: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.sw-faq__question::-webkit-details-marker {
    display: none;
}

.sw-faq__question::after {
    content: "+";
    font-size: var(--text-xl);
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.sw-faq__item[open] .sw-faq__question::after {
    content: "−";
}

.sw-faq__answer {
    padding: 0 0 var(--space-lg);
}

.sw-faq__cta {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.sw-faq__cta .sw-btn-group {
    margin-top: var(--space-lg);
}

/* Footer Nav */
.sw-footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.sw-footer__nav a {
    font-size: var(--text-sm);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.sw-footer__nav a:hover {
    color: var(--color-accent);
}

/* Maps */
.sw-maps {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: clamp(16rem, 40vw, 28rem);
}

.sw-maps iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Legal */
.sw-legal {
    max-width: 48rem;
    margin: 0 auto;
}

.sw-legal__content h2 {
    margin: var(--space-xl) 0 var(--space-md);
}

.sw-legal__content h2:first-child {
    margin-top: 0;
}

.sw-legal__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    margin: var(--space-lg) 0 var(--space-sm);
}

.sw-legal__content h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    margin: var(--space-md) 0 var(--space-sm);
}

.sw-legal__content p {
    margin: 0 0 var(--space-md);
}

.sw-legal__list {
    margin: 0 0 var(--space-md);
    padding-left: 1.25rem;
}

.sw-legal__list li {
    margin-bottom: var(--space-sm);
}

.sw-legal__placeholder {
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 2px dashed var(--color-accent);
    border-radius: var(--radius-lg);
    text-align: center;
}

/* Footer */
.sw-footer {
    background: var(--color-text);
    color: var(--color-white);
    margin-top: var(--space-3xl);
}

main:has(.sw-maps) + .sw-footer {
    margin-top: 0;
}

.sw-footer a {
    color: var(--color-white);
    text-decoration-color: var(--color-accent);
}

.sw-footer a:hover {
    color: var(--color-accent);
}

.sw-footer__inner {
    display: grid;
    gap: var(--space-2xl);
    padding: var(--space-3xl) var(--space-lg);
}

.sw-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sw-footer__logo {
    height: 6.5rem;
    width: auto;
    margin-bottom: var(--space-md);
}

.sw-footer__label {
    color: var(--color-accent);
}

.sw-footer .sw-body-sm {
    color: rgba(255, 255, 255, 0.8);
}

.sw-footer__title {
    color: var(--color-white);
    font-size: var(--text-lg);
}

.sw-footer__address {
    font-style: normal;
}

.sw-footer__col--social {
    display: flex;
    align-items: flex-start;
}

.sw-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.sw-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}

.sw-footer__social-link:hover,
.sw-footer__social-link:focus-visible {
    color: var(--color-accent);
    transform: translateY(-1px);
}

.sw-footer__social-icon {
    display: block;
    width: 2rem;
    height: 2rem;
}

.sw-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-lg) 0;
}

.sw-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.sw-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.sw-footer__legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sw-footer__legal a {
    font-size: var(--text-sm);
    text-decoration: none;
}

.sw-footer__legal a + a::before {
    content: "·";
    margin-right: var(--space-md);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Responsive – Mobile */
@media (max-width: 47.9375rem) {
    .sw-section {
        padding: var(--space-3xl) 0;
    }

    body.sw-page-sub main > .sw-section:first-child {
        padding-top: calc(var(--header-height) + var(--space-3xl));
    }

    .sw-container {
        padding: 0 var(--space-md);
    }

    .sw-heading-1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
    }

    .sw-header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--space-md);
        gap: var(--space-md);
    }

    .sw-header__nav {
        display: none;
    }

    .sw-header__logo {
        justify-self: auto;
    }

    .sw-header__end {
        justify-self: auto;
        flex-shrink: 0;
    }

    .sw-header__appointment {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
        white-space: nowrap;
    }

    .sw-header__logo-img {
        height: 2.125rem;
    }

    .sw-hero__content {
        padding: var(--space-xl) var(--space-md) var(--space-2xl);
    }

    .sw-btn {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .sw-btn--primary {
        padding-inline: 1.75rem;
    }

    .sw-termin__btn-group .sw-btn {
        width: 100%;
        max-width: 18rem;
        padding-block: 0.75rem;
        min-height: auto;
    }

    .sw-parallax-showcase {
        height: calc(100vh + 55vh);
    }

    .sw-parallax-showcase__pin {
        height: 100vh;
    }

    .sw-parallax-showcase__item {
        opacity: 0.42;
    }

    .sw-parallax-showcase__item--1 {
        width: 11.5rem;
        left: -6%;
        top: 64%;
    }

    .sw-parallax-showcase__item--2 {
        width: 12.5rem;
        right: -6%;
        top: 4%;
    }

    .sw-parallax-showcase__item--3 {
        width: 9.5rem;
        left: auto;
        right: -4%;
        top: 48%;
    }

    .sw-parallax-showcase__item--4 {
        width: 10.5rem;
        left: -6%;
        top: 2%;
    }

    .sw-parallax-showcase__item--5 {
        width: 11rem;
        left: auto;
        right: -5%;
        top: 74%;
    }

    .sw-parallax-showcase__content {
        padding: var(--space-lg);
    }

    .sw-parallax-showcase__title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
        text-shadow:
            0 0 28px rgba(246, 241, 234, 1),
            0 0 56px rgba(246, 241, 234, 0.95),
            0 2px 20px rgba(246, 241, 234, 0.85);
    }

    .sw-leistungen-scroll {
        --slide-width: 82vw;
        --slide-gap: 5vw;
        --scroll-step-height: 28vh;
    }

    .sw-leistungen-scroll__figure {
        max-height: 52vh;
    }

    .sw-footer__inner {
        padding: var(--space-2xl) var(--space-md);
        justify-items: center;
        text-align: center;
    }

    .sw-footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .sw-footer__col--social {
        align-items: center;
        justify-content: center;
    }

    .sw-footer__social {
        justify-content: center;
    }

    .sw-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sw-footer__legal {
        justify-content: center;
    }
}

@media (min-width: 48rem) {
    .sw-heading-1 {
        font-size: 3rem;
    }

    .sw-header__nav-list {
        gap: var(--space-xl);
    }

    .sw-header__nav-link,
    .sw-header__appointment {
        font-size: 0.875rem;
    }

    .sw-btn-group {
        flex-direction: row;
        justify-content: center;
    }

    .sw-termin__btn-group {
        gap: var(--space-xl);
        width: auto;
    }

    .sw-ueber-mich__inner {
        grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: start;
    }

    .sw-ueber-mich__visual {
        margin-inline: 0;
        margin-top: var(--space-xl);
    }

    .sw-ueber-mich__content {
        max-width: none;
        padding-top: var(--space-md);
    }

    .sw-parallax-showcase__item--1 {
        width: 28vw;
    }

    .sw-parallax-showcase__item--2 {
        width: 34vw;
    }

    .sw-parallax-showcase__item--3 {
        width: 20vw;
    }

    .sw-parallax-showcase__item--4 {
        width: 26vw;
    }

    .sw-parallax-showcase__item--5 {
        width: 30vw;
    }

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

    .sw-footer__inner {
        grid-template-columns: 1.2fr 1fr 0.8fr;
    }

    .sw-leistung-detail__hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (min-width: 64rem) {
    .sw-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .sw-leistungen-scroll {
        height: auto;
    }

    .sw-leistungen-scroll__pin {
        position: relative;
        height: auto;
    }

    .sw-leistungen-scroll__track {
        flex-direction: column;
        transform: none !important;
    }

    .sw-leistungen-scroll__slide {
        width: 100%;
        flex: none;
        min-height: auto;
        margin-right: 0;
        margin-bottom: var(--space-xl);
        padding: 0;
    }

    .sw-leistungen-scroll__slide .sw-leistungen-scroll__card {
        transform: none !important;
    }

    .sw-leistungen-scroll__track {
        padding-left: 0;
        padding-right: 0;
    }

    .sw-parallax-showcase {
        height: auto;
    }

    .sw-parallax-showcase__pin {
        position: relative;
        height: auto;
        padding: var(--space-3xl) var(--space-lg);
    }

    .sw-parallax-showcase__scene {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }

    .sw-parallax-showcase__item {
        position: relative;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        transform: none !important;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
