@charset "UTF-8";

:root {
    --wine: #6d1738;
    --wine-dark: #491026;
    --rose: #bb6d82;
    --blush: #f7ecec;
    --cream: #fffaf6;
    --sand: #eadbd1;
    --ink: #2d2527;
    --muted: #6d6265;
    --white: #fff;
    --line: #e7ded9;
    --shadow: 0 1.25rem 3.75rem rgba(73, 16, 38, .12);
    --radius: 1.5rem;
    --container: 75rem;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Ruhiger Wellness-Bildschirmschoner nach 15 Sekunden Inaktivität */
.wellness-screensaver[hidden] {
    display: none;
}

.wellness-screensaver {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(1rem, 4vw, 3rem);
    background: #2c0713;
    color: #fff;
    opacity: 0;
    transition: opacity .35s ease;
}

.wellness-screensaver.is-active {
    opacity: 1;
}

.wellness-screensaver__image,
.wellness-screensaver__glow {
    position: absolute;
    inset: 0;
}

.wellness-screensaver__image {
    background:
        linear-gradient(115deg, rgba(41, 5, 17, .88), rgba(73, 16, 38, .55) 50%, rgba(22, 5, 11, .82)),
        url("../images/header.jpg") center / cover no-repeat;
    animation: wellness-zoom 20s ease-in-out infinite alternate;
}

.wellness-screensaver__glow {
    background:
        radial-gradient(circle at 25% 25%, rgba(239, 177, 187, .26), transparent 34%),
        radial-gradient(circle at 76% 68%, rgba(187, 109, 130, .3), transparent 38%);
    animation: wellness-glow 10s ease-in-out infinite alternate;
}

.wellness-screensaver__content {
    position: relative;
    width: min(60rem, 100%);
    text-align: center;
    text-shadow: 0 .15rem 1.25rem rgba(20, 0, 8, .7);
    transform: translateY(.75rem);
    opacity: 0;
    transition: opacity .8s ease .15s, transform .8s ease .15s;
}

.wellness-screensaver.is-active .wellness-screensaver__content {
    transform: translateY(0);
    opacity: 1;
}

.wellness-screensaver__logo {
    width: min(23rem, 65vw);
    margin: 0 auto clamp(.8rem, 2vh, 1.4rem);
    filter: brightness(0) invert(1) drop-shadow(0 .25rem .75rem rgba(0, 0, 0, .35));
}

.wellness-screensaver__kicker {
    margin: 0;
    color: #f2d9df;
    font-size: clamp(.65rem, 1.2vw, .8rem);
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.wellness-screensaver__messages {
    position: relative;
    display: grid;
    min-height: clamp(6.5rem, 16vh, 10rem);
    place-items: center;
    margin: .5rem auto;
}

.wellness-screensaver__messages span {
    position: absolute;
    grid-area: 1 / 1;
    width: 100%;
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 4.7rem);
    line-height: 1.04;
    opacity: 0;
    transform: translateY(.7rem);
    animation: wellness-message 16s ease-in-out infinite;
}

.wellness-screensaver__messages span:nth-child(2) { animation-delay: 4s; }
.wellness-screensaver__messages span:nth-child(3) { animation-delay: 8s; }
.wellness-screensaver__messages span:nth-child(4) { animation-delay: 12s; }

.wellness-screensaver__facts {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 7vw, 5rem);
    margin: clamp(.5rem, 2vh, 1.5rem) 0;
}

.wellness-screensaver__facts span {
    display: grid;
    color: #f3dce2;
    font-size: clamp(.7rem, 1.1vw, .85rem);
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.wellness-screensaver__facts strong {
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.1;
}

.wellness-screensaver__phone {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    text-decoration-thickness: .06em;
    text-underline-offset: .28em;
}

.wellness-screensaver__hint {
    margin: clamp(1rem, 3vh, 2rem) 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.7rem, 1.2vw, .85rem);
}

.wellness-screensaver__close {
    position: absolute;
    z-index: 2;
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(45, 5, 18, .45);
    color: #fff;
    font: 300 1.8rem/1 var(--sans);
    cursor: pointer;
}

.wellness-screensaver__close:hover,
.wellness-screensaver__close:focus-visible {
    background: rgba(255, 255, 255, .18);
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@keyframes wellness-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes wellness-glow {
    from { opacity: .65; transform: translate3d(-1%, -1%, 0); }
    to { opacity: 1; transform: translate3d(1%, 1%, 0); }
}

@keyframes wellness-message {
    0%, 100% { opacity: 0; transform: translateY(.7rem); }
    8%, 21% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-.5rem); }
}

@media (max-width: 40rem) {
    .wellness-screensaver {
        padding: 1.25rem;
    }

    .wellness-screensaver__logo {
        width: min(15rem, 68vw);
    }

    .wellness-screensaver__messages {
        min-height: 8.5rem;
    }

    .wellness-screensaver__messages span {
        font-size: clamp(1.8rem, 9vw, 2.7rem);
    }

    .wellness-screensaver__facts {
        gap: 1rem;
    }

    .wellness-screensaver__facts span {
        letter-spacing: .08em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wellness-screensaver,
    .wellness-screensaver__content,
    .wellness-screensaver__image,
    .wellness-screensaver__glow,
    .wellness-screensaver__messages span {
        animation: none;
        transition: none;
    }

    .wellness-screensaver__messages span {
        display: none;
    }

    .wellness-screensaver__messages span:first-child {
        display: block;
        opacity: 1;
        transform: none;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.screensaver-active {
    overflow: hidden;
}

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

a {
    color: var(--wine);
    text-decoration-thickness: .08em;
    text-underline-offset: .2em;
}

a:hover {
    color: var(--wine-dark);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: .2rem solid #1b74d1;
    outline-offset: .2rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 4.7vw, 4.25rem);
}

h3 {
    line-height: 1.3;
}

svg {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    vertical-align: -.2em;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 55rem;
}

.section {
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    translate: 0 -200%;
    border-radius: .4rem;
    background: var(--white);
    color: var(--wine-dark);
    font-weight: 700;
}

.skip-link:focus {
    translate: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    margin-bottom: .85rem;
    color: var(--wine);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 3.4rem;
    padding: .8rem 1.35rem;
    border: .08rem solid var(--wine);
    border-radius: 999px;
    background: var(--wine);
    box-shadow: 0 .5rem 1.5rem rgba(73, 16, 38, .14);
    color: var(--white);
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .2s, border-color .2s, color .2s, translate .2s;
}

.button:hover {
    translate: 0 -.12rem;
    border-color: var(--wine-dark);
    background: var(--wine-dark);
    color: var(--white);
}

.button--light {
    border-color: rgba(255, 255, 255, .8);
    background: var(--white);
    color: var(--wine-dark);
}

.button--light:hover {
    border-color: var(--white);
    background: var(--cream);
    color: var(--wine-dark);
}

.button--small {
    min-height: 2.85rem;
    padding: .7rem 1.1rem;
    font-size: .9rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--wine);
    font-weight: 750;
    text-decoration: none;
}

.text-link svg {
    transition: translate .2s;
}

.text-link:hover svg {
    translate: .25rem 0;
}

.topbar {
    background: var(--wine-dark);
    color: rgba(255, 255, 255, .88);
    font-size: .8rem;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    min-height: 2.35rem;
    align-items: center;
}

.topbar a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 250, 246, .96);
    box-shadow: 0 .1rem 1rem rgba(45, 37, 39, .06);
    backdrop-filter: blur(.8rem);
}

.nav-wrap {
    display: flex;
    min-height: 5.4rem;
    align-items: center;
    gap: 1.8rem;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .75rem;
    color: var(--ink);
    line-height: 1.05;
    text-decoration: none;
}

.brand:hover {
    color: var(--ink);
}

.brand__mark {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--wine);
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.65rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.brand small {
    margin-top: .25rem;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
}

.main-nav a {
    position: relative;
    display: block;
    padding-block: .7rem;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: .38rem;
    left: 0;
    height: .12rem;
    background: var(--wine);
    content: "";
    scale: 0 1;
    transition: scale .2s;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    scale: 1 1;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
    display: block;
    width: 1.4rem;
    height: .12rem;
    background: currentColor;
    content: "";
    transition: rotate .2s, translate .2s, opacity .2s;
}

.menu-toggle__icon::before {
    translate: 0 -.42rem;
}

.menu-toggle__icon::after {
    translate: 0 .3rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    rotate: 45deg;
    translate: 0 .06rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    rotate: -45deg;
    translate: 0 -.06rem;
}

.hero {
    position: relative;
    min-height: min(48rem, calc(100vh - 7.75rem));
    overflow: hidden;
    background: var(--wine-dark);
    color: var(--white);
}

.hero__image {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(35, 7, 18, .9) 0%, rgba(73, 16, 38, .72) 38%, rgba(73, 16, 38, .12) 72%),
        linear-gradient(0deg, rgba(73, 16, 38, .45), transparent 50%),
        url("../images/header.jpg");
    background-position: center;
    background-size: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: min(44rem, calc(100vh - 7.75rem));
    padding-block: 5rem 8rem;
    flex-direction: column;
    justify-content: center;
}

.hero .eyebrow,
.cta .eyebrow {
    color: #f0cbd4;
}

.hero h1 {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: #f3c7d2;
    font-weight: 400;
}

.hero__lead {
    max-width: 42rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.hero__facts {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(54rem, 70%);
    padding: 1.65rem 2rem;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 1.5rem 0 0 0;
    background: var(--cream);
    color: var(--ink);
}

.hero__facts div {
    padding-inline: 1.5rem;
    border-left: .08rem solid var(--line);
}

.hero__facts div:first-child {
    border-left: 0;
}

.hero__facts strong,
.hero__facts span {
    display: block;
}

.hero__facts strong {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.hero__facts span {
    margin-top: .25rem;
    color: var(--muted);
    font-size: .78rem;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.split--top {
    align-items: start;
}

.prose {
    color: var(--muted);
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose h2 {
    margin-top: 2.8rem;
    color: var(--ink);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

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

.prose a {
    overflow-wrap: anywhere;
}

.lead-copy {
    font-size: 1.1rem;
}

.section-heading {
    display: flex;
    margin-bottom: 2.5rem;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.section-heading h2 {
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card {
    display: flex;
    min-height: 24rem;
    padding: 2rem;
    flex-direction: column;
    border: .08rem solid rgba(109, 23, 56, .11);
    border-radius: var(--radius);
    background: var(--cream);
    transition: translate .2s, box-shadow .2s;
}

.service-card:hover {
    translate: 0 -.35rem;
    box-shadow: var(--shadow);
}

.service-card > span {
    color: var(--rose);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.service-card h3 {
    margin: auto 0 1rem;
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 400;
}

.service-card p {
    color: var(--muted);
    font-size: .95rem;
}

.service-card a {
    margin-top: auto;
    font-weight: 750;
    text-decoration: none;
}

.service-card--accent {
    background: var(--wine);
    color: var(--white);
}

.service-card--accent > span,
.service-card--accent p,
.service-card--accent a {
    color: #f7dce3;
}

.feature {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.feature__visual {
    display: grid;
    min-height: 32rem;
    padding: 3rem;
    place-items: center;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.35), transparent 28%),
        var(--sand);
}

.portrait-card {
    position: relative;
    width: min(21rem, 100%);
}

.portrait-card img {
    width: 100%;
    border: .7rem solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    filter: drop-shadow(0 1.2rem 2rem rgba(73, 16, 38, .18));
}

.portrait-card span {
    position: absolute;
    right: -2rem;
    bottom: 1rem;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    background: var(--wine);
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.05rem;
    rotate: -4deg;
}

.feature__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    margin-block: .85rem;
    align-items: center;
    gap: .8rem;
    font-weight: 650;
}

.check-list svg {
    flex: 0 0 auto;
    color: var(--wine);
}

.cta {
    padding-block: clamp(4.5rem, 8vw, 7rem);
    background:
        radial-gradient(circle at 88% 15%, rgba(255,255,255,.11), transparent 20%),
        var(--wine);
    color: var(--white);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p:not(.eyebrow) {
    max-width: 43rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
}

.cta .button {
    flex: 0 0 auto;
}

.page-hero {
    padding-block: clamp(5rem, 10vw, 9rem);
    background:
        radial-gradient(circle at 85% 30%, rgba(187, 109, 130, .18), transparent 25%),
        linear-gradient(135deg, var(--blush), var(--cream));
    text-align: center;
}

.page-hero--small {
    padding-block: clamp(4rem, 7vw, 6rem);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
    color: var(--wine-dark);
}

.page-hero p:not(.eyebrow) {
    max-width: 45rem;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.15rem;
}

.page-hero .button {
    margin-top: 2rem;
}

.price-sections {
    max-width: 66rem;
}

.price-section {
    padding: clamp(2rem, 6vw, 4rem);
    border-bottom: .08rem solid var(--line);
    scroll-margin-top: 8rem;
}

.price-section:nth-child(odd) {
    border-radius: var(--radius);
    background: rgba(247, 236, 236, .6);
}

.price-section header {
    display: flex;
    margin-bottom: 2rem;
    align-items: start;
    gap: 1.4rem;
}

.price-section header > span {
    flex: 0 0 auto;
    color: var(--rose);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.price-section h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.price-section > p {
    max-width: 48rem;
    color: var(--muted);
}

.price-list {
    margin-top: 2.2rem;
    border-top: .08rem solid var(--line);
}

.price-list > div {
    display: flex;
    padding-block: 1.5rem;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: .08rem solid var(--line);
}

.price-list h3 {
    margin-bottom: .35rem;
    font-size: 1.05rem;
}

.price-list p,
.price-list small {
    display: block;
    max-width: 43rem;
    margin: 0;
    color: var(--muted);
}

.price-list strong {
    flex: 0 0 auto;
    color: var(--wine);
    font-size: 1.05rem;
}

.price-list--compact > div {
    align-items: baseline;
}

.price-list--compact h3 {
    margin: 0;
}

.two-column-prices {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.price-note {
    padding: 2rem;
    border-left: .25rem solid var(--wine);
    background: var(--blush);
    font-weight: 650;
}

.benefit-grid {
    display: grid;
    margin-top: 5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-grid article {
    padding: 2.2rem;
    border: .08rem solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.benefit-grid span {
    color: var(--rose);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.benefit-grid h3 {
    margin-block: 2.5rem 1rem;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.team-card {
    display: grid;
    min-height: 34rem;
    padding: clamp(2rem, 5vw, 4rem);
    align-content: end;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blush);
}

.team-card img {
    width: min(16rem, 70%);
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    filter: drop-shadow(0 1rem 2rem rgba(73, 16, 38, .14));
}

.team-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.team-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.team-card--text {
    position: relative;
    background: var(--wine);
    color: var(--white);
}

.team-card--text .eyebrow,
.team-card--text p:last-child {
    color: #f0cbd4;
}

.team-card__year {
    position: absolute;
    top: -1.2rem;
    right: 1rem;
    color: rgba(255, 255, 255, .1);
    font-family: var(--serif);
    font-size: clamp(6rem, 14vw, 11rem);
    line-height: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-card {
    min-height: 29rem;
    padding: clamp(2rem, 4vw, 3rem);
    border: .08rem solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.contact-card__icon {
    display: grid;
    width: 3.8rem;
    height: 3.8rem;
    margin-bottom: 4rem;
    place-items: center;
    border-radius: 50%;
    background: var(--blush);
    color: var(--wine);
    font-size: 1.35rem;
}

.contact-card h2 {
    font-size: 2rem;
}

.contact-card p,
.contact-card address {
    color: var(--muted);
    font-style: normal;
}

.contact-card .hours,
.contact-phone {
    color: var(--wine);
    font-family: var(--serif);
    font-size: 1.55rem;
    line-height: 1.5;
}

.contact-phone {
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-card--accent {
    background: var(--wine);
    color: var(--white);
}

.contact-card--accent .contact-card__icon {
    background: rgba(255,255,255,.12);
    color: var(--white);
}

.contact-card--accent .eyebrow,
.contact-card--accent p,
.contact-card--accent .contact-phone {
    color: #f4d6de;
}

.legal {
    min-height: 40vh;
}

.faq-section {
    background:
        radial-gradient(circle at 90% 8%, rgba(187, 109, 130, .11), transparent 24rem),
        var(--cream);
}

.faq-list {
    display: grid;
    gap: .85rem;
}

.faq-item {
    overflow: clip;
    border: .08rem solid #e6d8d4;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 .5rem 1.5rem rgba(73, 16, 38, .04);
}

.faq-item summary {
    position: relative;
    padding: 1.35rem 4rem 1.35rem 1.5rem;
    color: var(--wine-dark);
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 1.35rem;
    display: grid;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border-radius: 50%;
    background: var(--blush);
    content: "+";
    font-family: var(--sans);
    font-size: 1.35rem;
    font-weight: 400;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary:hover {
    background: rgba(247, 236, 236, .45);
}

.faq-item summary:focus-visible {
    outline: .18rem solid var(--wine);
    outline-offset: -.25rem;
}

.faq-item__answer {
    padding: 0 1.5rem 1.4rem;
    color: var(--muted);
}

.faq-item__answer p {
    margin: 0;
}

.faq-contact {
    margin-top: 2.5rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-left: .25rem solid var(--wine);
    background: var(--blush);
    text-align: center;
}

.faq-contact h2 {
    margin-bottom: .5rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.faq-contact p {
    margin-bottom: 1.25rem;
    color: var(--muted);
}

@media (max-width: 40rem) {
    .faq-item summary {
        padding: 1.1rem 3.4rem 1.1rem 1.1rem;
    }

    .faq-item summary::after {
        right: .9rem;
    }

    .faq-item__answer {
        padding: 0 1.1rem 1.2rem;
    }
}

.site-footer {
    padding-top: 5rem;
    background: #251d20;
    color: rgba(255, 255, 255, .7);
}

.footer-grid {
    display: grid;
    padding-bottom: 4rem;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 3rem;
}

.brand--footer {
    color: var(--white);
}

.brand--footer:hover {
    color: var(--white);
}

.brand--footer small {
    color: rgba(255,255,255,.55);
}

.footer-grid > div:first-child p {
    max-width: 23rem;
    margin-top: 1.6rem;
}

.footer-grid h2 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-grid address {
    font-style: normal;
}

.site-footer a {
    color: var(--white);
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: .55rem;
}

.footer-bottom {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: .08rem solid rgba(255,255,255,.12);
    font-size: .8rem;
}

@media (max-width: 70rem) {
    .nav-cta {
        display: none;
    }

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

    .service-card {
        min-height: 20rem;
    }

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

    .contact-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 64rem) {
    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        z-index: -1;
        top: 7.75rem;
        right: 0;
        left: 0;
        display: none;
        height: calc(100vh - 7.75rem);
        padding: 2rem 1.25rem;
        background: var(--cream);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        width: min(100%, 35rem);
        margin-inline: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav a {
        padding: 1rem .5rem;
        border-bottom: .08rem solid var(--line);
        font-family: var(--serif);
        font-size: 1.8rem;
        font-weight: 400;
    }

    .main-nav a::after {
        display: none;
    }

    .feature,
    .split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature__visual {
        min-height: 27rem;
    }

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

@media (max-width: 48rem) {
    html {
        scroll-padding-top: 5.4rem;
    }

    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .topbar {
        display: none;
    }

    .nav-wrap {
        min-height: 4.8rem;
    }

    .main-nav {
        top: 4.8rem;
        height: calc(100vh - 4.8rem);
    }

    .brand strong {
        font-size: 1.05rem;
    }

    .brand small {
        font-size: .55rem;
    }

    .brand__mark {
        width: 2.5rem;
        height: 2.5rem;
    }

    .brand > img {
        height: 2.85rem;
    }

    .hero {
        min-height: auto;
    }

    .hero__image {
        background-image:
            linear-gradient(90deg, rgba(35, 7, 18, .88), rgba(73, 16, 38, .5)),
            linear-gradient(0deg, rgba(73, 16, 38, .75), transparent 50%),
            url("../images/header.jpg");
        background-position: 60% center;
    }

    .hero__content {
        min-height: 39rem;
        padding-block: 4rem 7rem;
    }

    .hero__facts {
        position: relative;
        width: 100%;
        padding: 1.25rem .8rem;
        border-radius: 0;
    }

    .hero__facts div {
        padding-inline: .65rem;
    }

    .hero__facts strong {
        font-size: 1rem;
    }

    .hero__facts span {
        font-size: .66rem;
        line-height: 1.35;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .section-heading,
    .cta__inner {
        align-items: start;
        flex-direction: column;
    }

    .service-grid,
    .benefit-grid,
    .team-grid,
    .contact-grid,
    .two-column-prices {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 18rem;
    }

    .feature__visual {
        min-height: 22rem;
        padding: 2rem;
    }

    .portrait-card span {
        right: -.5rem;
    }

    .price-section {
        padding-inline: 1rem;
    }

    .price-section header {
        gap: .8rem;
    }

    .price-list > div {
        gap: 1rem;
    }

    .price-list strong {
        font-size: .95rem;
        text-align: right;
    }

    .team-card {
        min-height: 30rem;
    }

    .contact-card,
    .contact-card:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .contact-card__icon {
        margin-bottom: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-bottom {
        padding-block: 1.3rem;
        align-items: start;
        flex-direction: column;
        justify-content: center;
        gap: .4rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .topbar,
    .main-nav,
    .menu-toggle,
    .nav-cta,
    .button,
    .cta,
    .site-footer {
        display: none !important;
    }

    .site-header {
        position: static;
        box-shadow: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}

/* Originalgetreuer Seitenaufbau */
a {
    text-decoration: none;
}

.topbar {
    background: #410e0d;
}

.topbar__inner {
    justify-content: flex-end;
}

.topbar__inner > span {
    display: none;
}

.site-header {
    background: rgba(255, 255, 255, .97);
}

.nav-wrap {
    min-height: 5.75rem;
}

.brand > img {
    width: auto;
    height: 3.4rem;
    object-fit: contain;
}

.main-nav ul {
    gap: 1.35rem;
}

.main-nav a {
    font-size: .86rem;
}

.main-nav a::after {
    background: #410e0d;
}

.nav-cta {
    display: none;
}

.classic-main {
    padding-block: clamp(3rem, 5vw, 5.25rem);
    background: #fff;
}

.classic-main--short {
    padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.classic-main__inner {
    max-width: 78rem;
    text-align: center;
}

.classic-main h1 {
    max-width: 70rem;
    margin: 0 auto 1.25rem;
    color: #2f292a;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 5vw, 4.15rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.classic-logo {
    display: flex;
    width: min(32rem, 100%);
    margin: 0 auto clamp(3rem, 7vw, 6rem);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #410e0d;
    line-height: 1.1;
}

.classic-logo-image {
    width: min(22.4375rem, 90%);
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.classic-logo > span {
    display: grid;
    width: 4.6rem;
    height: 4.6rem;
    margin-right: 1rem;
    place-items: center;
    border: .15rem solid #410e0d;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 2.6rem;
}

.classic-logo strong {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 4vw, 2.35rem);
    font-weight: 400;
}

.classic-logo small {
    width: 100%;
    margin-top: .75rem;
    color: #786b6d;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.classic-subtitle {
    margin-bottom: 2.75rem;
    color: #410e0d;
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    font-weight: 700;
}

.classic-kicker {
    margin-bottom: 1rem;
    color: #8a3d3b;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.classic-intro {
    position: relative;
    max-width: 76rem;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem);
    overflow: hidden;
    border: .08rem solid #eaded9;
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 100% 0, rgba(138, 61, 59, .1), transparent 32%),
        #fbf7f5;
    box-shadow: 0 1.25rem 3.5rem rgba(65, 14, 13, .08);
    color: #554b4d;
    font-size: 1.08rem;
    text-align: left;
}

.classic-intro::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: .35rem;
    background: #410e0d;
    content: "";
}

.classic-intro__lead {
    display: grid;
    max-width: 66rem;
    margin: 0 auto 2rem;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.35rem;
}

.classic-intro__lead > span {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    place-items: center;
    border-radius: 50%;
    background: #410e0d;
    color: #fff;
    font-family: var(--serif);
    font-size: 2rem;
}

.classic-intro h2 {
    margin: 0 0 .75rem;
    color: #410e0d;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    font-weight: 400;
}

.classic-intro p {
    margin-bottom: 0;
}

.classic-intro__columns {
    display: grid;
    padding-top: 1.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    border-top: .08rem solid #e5d6d1;
}

.classic-intro__columns p {
    padding: 1.25rem;
    border: .08rem solid #eaded9;
    border-radius: .85rem;
    background: rgba(255, 255, 255, .72);
    font-size: .98rem;
    line-height: 1.65;
}

.classic-intro__closing {
    margin-top: 2rem !important;
    color: #410e0d;
    font-weight: 750;
    text-align: center;
}

.confidence-counters {
    display: grid;
    max-width: 52rem;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.confidence-counter {
    display: flex;
    min-height: 8.75rem;
    padding: 1.35rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: .08rem solid #e5d6d1;
    border-radius: 1rem;
    background: #fff;
}

.confidence-counter strong {
    color: #410e0d;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.confidence-counter > span {
    margin-top: .65rem;
    color: #5f5355;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.classic-home .classic-phone {
    margin: 1.5rem 0 2.5rem;
}

.mobile-mood,
.mobile-scroll-cue {
    display: none;
}

.classic-phone {
    margin: 2.5rem 0 0;
    color: #2f292a;
    font-size: clamp(1.3rem, 3vw, 2rem);
    text-align: center;
}

.classic-phone a {
    color: #410e0d;
    font-weight: 700;
}

.classic-article {
    max-width: 62rem;
    color: #51484a;
    font-size: 1.08rem;
    text-align: left;
}

.classic-article h1 {
    text-align: center;
}

.classic-article p {
    margin-bottom: 1.35rem;
}

.classic-closing {
    color: #410e0d;
    font-weight: 700;
    text-align: center;
}

.classic-values {
    display: grid;
    margin-top: 3rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.classic-team-photo {
    width: min(56.25rem, 100%);
    margin: 2.5rem auto 0;
}

.classic-contact-logo {
    width: 19.25rem;
    max-width: 80%;
    margin: 0 auto 2.5rem;
}

.classic-values div {
    padding: 2rem 1rem;
    border: .08rem solid #e6d8d4;
}

.classic-values strong,
.classic-values span {
    display: block;
}

.classic-values strong {
    color: #410e0d;
    font-family: var(--serif);
    font-size: 1.6rem;
}

.classic-values span {
    margin-top: .4rem;
    color: #6d6265;
    font-size: .85rem;
}

.classic-contact__grid {
    display: grid;
    max-width: 48rem;
    margin: 2.5rem auto;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.classic-contact__grid > div,
.classic-contact__grid address {
    padding: 2rem;
    border: .08rem solid #e6d8d4;
    background: #faf6f4;
    font-style: normal;
}

.classic-hours {
    color: #410e0d;
    font-size: 1.25rem;
}

.classic-services {
    background: #fff;
}

.classic-services .price-sections {
    max-width: 70rem;
}

.classic-services .price-section {
    margin-bottom: 2rem;
    border: .08rem solid #e6d8d4;
    border-radius: 0;
    background: #fff;
}

.classic-services .price-section:nth-child(odd) {
    border-radius: 0;
    background: #faf6f4;
}

.classic-services .price-section header > span,
.classic-services .price-list strong {
    color: #410e0d;
}

.classic-services .price-section h2 {
    font-family: var(--sans);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
}

.service-photo {
    width: 100%;
    max-height: 24rem;
    margin: 1.5rem 0 2rem;
    object-fit: cover;
}

.service-photo-row {
    display: grid;
    margin-block: 1.5rem 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-photo-row .service-photo {
    height: 17rem;
    margin: 0;
}

.two-column-prices > div > .service-photo {
    height: 14rem;
}

.team-band {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: #410e0d;
    color: #fff;
}

.team-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.team-person {
    text-align: center;
}

.team-person h3 {
    margin-bottom: .4rem;
    font-family: var(--sans);
    font-size: 1.6rem;
}

.team-person__qualification {
    min-height: 2rem;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.team-person img,
.team-person__placeholder {
    width: 14.8125rem;
    height: 14.75rem;
    margin: 1.75rem auto;
    border: .35rem solid rgba(255, 255, 255, .92);
    border-radius: 50%;
}

.team-person__placeholder {
    display: grid;
    place-items: center;
    background: #fff;
    color: #410e0d;
    font-family: var(--serif);
    font-size: 4rem;
}

.team-person > p:last-child {
    max-width: 32rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, .9);
    font-size: 1.05rem;
}

.fixed-image {
    position: relative;
    min-height: clamp(24rem, 40vw, 34rem);
    background-color: #d8d3d0;
    background-image: url("../images/header.jpg");
    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.fixed-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(65, 14, 13, .08), transparent 40%);
    content: "";
    pointer-events: none;
}

.original-details {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: #fff;
}

.original-details .prose {
    max-width: 68rem;
    color: #51484a;
    font-size: 1.05rem;
}

.original-details h2 {
    margin-top: 2.7rem;
    color: #410e0d;
    font-family: var(--sans);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 600;
}

.original-details h2:first-child {
    margin-top: 0;
}

.original-footer {
    padding: 0;
    background: #410e0d;
    color: #fff;
}

.original-footer__address {
    padding-block: 2.5rem;
    text-align: center;
}

.original-footer__address p {
    margin-bottom: 1.5rem;
}

.original-footer nav {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 9vw, 8rem);
}

.original-footer a {
    color: #fff;
}

.original-footer__credit {
    margin: 2rem 0 0 !important;
    padding-top: 1.5rem;
    border-top: .08rem solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .65);
    font-size: .76rem;
}

.original-footer__credit a {
    text-decoration: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: .2em;
}

@media (max-width: 64rem) {
    .main-nav a {
        font-size: 1.65rem;
    }

    .classic-intro__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 48rem) {
    .classic-main {
        padding-block: 2rem 2.75rem;
    }

    .classic-home {
        padding-block: 0 2.75rem;
        background:
            radial-gradient(circle at 92% 2%, rgba(138, 61, 59, .1), transparent 14rem),
            linear-gradient(180deg, #fff 0, #fff 26rem, #fdf9f7 100%);
    }

    .classic-home .classic-main__inner {
        padding-inline: 1.15rem;
    }

    .classic-home__hero {
        display: flex;
        min-height: calc(100svh - 4.75rem);
        padding-block: 1.4rem 1.1rem;
        align-items: center;
        flex-direction: column;
    }

    .classic-logo {
        margin-bottom: 3.5rem;
    }

    .classic-logo-image {
        width: min(17rem, 76%);
        margin-bottom: 1.5rem;
    }

    .classic-home .classic-logo-image {
        display: none;
    }

    .classic-kicker {
        margin-bottom: .7rem;
        font-size: .65rem;
        letter-spacing: .15em;
    }

    .classic-home .classic-kicker {
        display: inline-flex;
        margin: 0 auto 1.15rem;
        padding: .5rem .8rem;
        border: .08rem solid #ead8d2;
        border-radius: 999px;
        background: #fbf4f1;
        line-height: 1.2;
    }

    .classic-main h1 {
        max-width: 30rem;
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 6.5vw, 2.15rem);
        line-height: 1.08;
    }

    .classic-home h1 {
        max-width: 24rem;
        margin-bottom: 1.15rem;
        font-size: clamp(2rem, 8vw, 2.35rem);
        letter-spacing: -.045em;
        line-height: 1.02;
        text-wrap: balance;
    }

    .classic-subtitle {
        margin-bottom: 1.6rem;
        padding-inline: .4rem;
        font-size: .98rem;
        line-height: 1.45;
    }

    .classic-home .classic-subtitle {
        max-width: 21rem;
        margin-inline: auto;
        margin-bottom: 1.8rem;
        color: #55494b;
        font-size: 1rem;
        font-weight: 650;
    }

    .classic-logo > span {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 2rem;
    }

    .classic-intro {
        padding: 1.5rem;
    }

    .classic-home .classic-intro {
        margin-top: .35rem;
        padding: 1.35rem 1.2rem 1.5rem;
        border-radius: 1.15rem;
        box-shadow: 0 .9rem 2.4rem rgba(65, 14, 13, .08);
    }

    .classic-intro__lead {
        grid-template-columns: 1fr;
    }

    .classic-intro__lead > span {
        width: 3rem;
        height: 3rem;
        font-size: 1.65rem;
    }

    .classic-intro__columns {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .classic-intro__columns p {
        padding: 1rem;
    }

    .confidence-counters {
        gap: .65rem;
    }

    .classic-home .confidence-counters {
        max-width: 22rem;
        gap: .7rem;
    }

    .confidence-counter {
        min-height: 6.5rem;
        padding: 1rem .6rem;
    }

    .classic-home .confidence-counter {
        min-height: 7rem;
        border-color: #dfcbc5;
        border-radius: 1.1rem;
        box-shadow: 0 .4rem 1.2rem rgba(65, 14, 13, .045);
    }

    .confidence-counter strong {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .confidence-counter > span {
        font-size: .68rem;
        letter-spacing: .1em;
    }

    .classic-home .classic-phone {
        display: inline-flex;
        margin: 1.25rem auto 2rem;
        padding: .7rem 1.15rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #410e0d;
        color: #fff;
        font-size: 1rem;
        box-shadow: 0 .55rem 1.4rem rgba(65, 14, 13, .18);
    }

    .classic-home .classic-phone a {
        color: #fff;
        text-underline-offset: .18em;
    }

    .mobile-mood {
        display: block;
        width: 100%;
        margin: .15rem auto 0;
    }

    .mobile-mood__messages {
        position: relative;
        display: grid;
        width: min(22rem, 100%);
        min-height: 3.7rem;
        margin: 0 auto;
        place-items: center;
    }

    .mobile-mood__messages span {
        position: absolute;
        width: 100%;
        color: #6d3a3a;
        font-family: var(--serif);
        font-size: 1.15rem;
        font-style: italic;
        line-height: 1.35;
        opacity: 0;
        transform: translateY(.35rem);
        transition: opacity .45s ease, transform .45s ease;
    }

    .mobile-mood__messages span.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-scroll-cue {
        display: inline-flex;
        margin-top: auto;
        padding: .65rem 1rem .15rem;
        align-items: center;
        flex-direction: column;
        color: #5f5355;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .13em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-scroll-cue span:last-child {
        color: #410e0d;
        font-size: 1.35rem;
        line-height: 1;
        animation: mobile-scroll-hint 1.8s ease-in-out infinite;
    }

    @keyframes mobile-scroll-hint {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(.3rem); }
    }

    .classic-values,
    .classic-contact__grid,
    .team-band__grid {
        grid-template-columns: 1fr;
    }

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

    .team-band__grid {
        gap: 4rem;
    }

    .fixed-image {
        min-height: 22rem;
        background-attachment: fixed;
        background-position: 55% center;
        background-size: auto 100%;
    }

    .original-footer nav {
        align-items: center;
        flex-direction: column;
        gap: .8rem;
    }
}

@media (max-width: 48rem) and (prefers-reduced-motion: reduce) {
    .mobile-mood__messages span {
        transition: none;
    }

    .mobile-scroll-cue span:last-child {
        animation: none;
    }
}
