:root {
    --gold: #c9a24d;
    --gold-dark: #907335;
    --ink: #202020;
    --muted: #67635d;
    --line: #e8e1d4;
    --soft: #faf8f4;
    --white: #ffffff;
    --shadow: 0 16px 42px rgba(42, 34, 23, 0.08);
    --radius: 16px;
    --content-small: 960px;
    --content-medium: 1180px;
    --content-large: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

body.content-protection {
    -webkit-user-select: none;
    user-select: none;
}

body.content-protection input,
body.content-protection textarea,
body.content-protection select,
body.content-protection [contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text;
}

body.content-protection img {
    -webkit-user-drag: none;
}

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

a {
    color: var(--gold-dark);
    text-underline-offset: 0.18em;
}

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

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.7em;
    color: var(--gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.22;
}

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

h2 {
    font-size: clamp(1.2rem, 3vw, 1.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.2rem);
}

p {
    margin: 0 0 1rem;
}

ul,
ol {
    padding-left: 1.35rem;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(201, 162, 77, 0.16);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 2rem, 1120px);
    min-height: 112px;
    margin: 0 auto;
    gap: 2rem;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 260px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
}

.nav-link,
.more-menu-panel a {
    display: block;
    color: var(--ink);
    text-decoration: none;
}

.nav-link {
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    white-space: nowrap;
    transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--ink);
    background: var(--gold);
}

.more-menu {
    position: relative;
}

.more-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

.more-menu summary::-webkit-details-marker {
    display: none;
}

.more-menu-label {
    display: none;
}

.more-menu-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.more-menu[open] > summary {
    color: var(--ink);
    background: var(--gold);
}

.more-menu-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    width: min(310px, calc(100vw - 2rem));
    padding: 0.7rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.more-menu-panel .more-menu-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    min-height: 50px;
    padding: 0.55rem 0.75rem;
    border-radius: 7px;
}

.more-menu-panel .more-menu-item:hover,
.more-menu-panel .more-menu-item:focus-visible {
    color: var(--ink);
    background: rgba(201, 162, 77, 0.16);
}

.more-menu-symbol {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.more-menu-brand-logo {
    width: 34px;
    height: 30px;
    object-fit: contain;
}

.more-menu-separator {
    display: block;
    height: 1px;
    margin: 0.4rem 0.35rem;
    background: var(--line);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 24px;
    height: 2px;
    margin: auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle-lines::before {
    top: -7px;
}

.menu-toggle-lines::after {
    top: 7px;
}

.nav-open .menu-toggle-lines {
    background: transparent;
}

.nav-open .menu-toggle-lines::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle-lines::after {
    transform: translateY(-7px) rotate(-45deg);
}

.site-main {
    min-height: 60vh;
    overflow: hidden;
    background: var(--white);
}

.section-root {
    position: relative;
    padding: 1rem 0;
}

.section-geometry-rectangle:nth-of-type(even),
.page-kontakt .section-root:first-child,
.page-preisliste .section-root:first-child {
    background: var(--white);
}

.section-inner-width {
    width: min(100% - 2rem, var(--content-medium));
    margin-inline: auto;
}

.section-inner-width-small {
    max-width: var(--content-small);
}

.section-inner-width-medium {
    max-width: var(--content-medium);
}

.section-inner-width-large {
    max-width: var(--content-large);
}

.section-content {
    position: relative;
}

.grid-row-root {
    min-width: 0;
}

.grid-row-has-columns {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
}

.grid-column-root {
    min-width: 0;
    grid-column: span 12;
    padding: clamp(0.5rem, 1.4vw, 1rem);
}

.grid-column-small-12 {
    grid-column: span 12;
}

.module-container-root {
    margin-bottom: 0.7rem;
}

.heading-root > div,
.text-root > div {
    max-width: 100%;
}

.text-root p:last-child,
.module-container-root:last-child {
    margin-bottom: 0;
}

.image-container {
    display: flex;
    width: 100%;
}

.image-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.image-wrapper .image-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.image-wrapper > a {
    position: absolute;
    inset: 0;
}

.image-wrapper > a .image-img {
    position: absolute;
}

.page-startseite .section-root:first-child .image-wrapper {
    max-width: 960px;
    margin-inline: auto;

}

.page-startseite .section-root:first-child h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.5;
}

.page-startseite .section-root:first-child .text-root {
    text-align: left;
}

.button-button,
.button-primary-button,
.button-fill-filled,
a.button-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.15rem;
    color: var(--white);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 7px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button-button:hover,
.button-button:focus-visible,
.button-primary-button:hover,
.button-primary-button:focus-visible {
    color: var(--white);
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 8px 22px rgba(144, 115, 53, 0.22);
    transform: translateY(-1px);
}

.price-list-page {
    padding: clamp(1.5rem, 3vw, 2.75rem) 0;
    background: var(--white);
}

.price-list-shell {
    width: min(calc(100% - 2rem), 1780px);
    max-width: none;
}

.price-list-header {
    margin-bottom: clamp(3rem, 6vw, 5.25rem);
    text-align: center;
}

.price-list-header h1 {
    margin-bottom: 0.65rem;
    color: var(--gold);
}

.price-list-header p {
    margin-bottom: 0.9rem;
    color: var(--ink);
    font-size: 0.9rem;
}

.price-list-header p a {
    color: inherit;
    text-decoration: none;
}

.price-appointment-link {
    display: inline-block;
    color: var(--gold);
    font-size: 1.08rem;
    font-weight: 750;
    text-decoration: none;
}

.price-appointment-link:hover,
.price-appointment-link:focus-visible {
    color: var(--gold-dark);
    text-decoration: underline;
}

.price-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.7rem, 3.1vw, 3.6rem);
    align-items: start;
}

.price-card {
    min-width: 0;
    color: #242424;
    background: var(--white);
}

.price-card h2 {
    padding-bottom: 0.4rem;
    margin: 2rem 0 0.85rem;
    color: var(--gold);
    border-bottom: 1px solid #e9e9e9;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 1.6vw, 1.48rem);
    font-weight: 500;
}

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

.price-card .item,
.price-card .item2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.38rem;
    font-size: 0.9rem;
    line-height: 1.35;
}

.price-card .price {
    flex: 0 0 auto;
    color: var(--gold);
    font-weight: 750;
    white-space: nowrap;
}

.price-card .desc,
.price-card .item2 {
    color: #5f5f5f;
    font-size: 0.78rem;
}

.price-card .desc {
    margin: 0.05rem 0 0.8rem;
    line-height: 1.45;
}

.price-card .price-separator {
    height: 0;
    margin: 0.85rem 0;
    border: 0;
    border-top: 1px solid rgba(201, 162, 77, 0.72);
}

.price-group {
    margin-top: 1.35rem;
}

.special-badge-wrap {
    margin: 1rem 0 0.65rem;
}

.special-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    color: var(--white);
    background: var(--gold);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.special-offer-note {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.price-list-note {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.76rem;
}

.price-list-note p {
    margin-bottom: 0.15rem;
}

.html-code-module-root {
    height: 100%;
}

.map-placeholder {
    display: grid;
    place-content: center;
    min-height: 390px;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ec, #eee5d5);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.map-placeholder small {
    display: block;
    max-width: 520px;
    margin: 1rem auto 0;
    color: var(--muted);
}

.splide__track {
    overflow: visible;
}

.splide__list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.splide__slide {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.splide__slide__container {
    aspect-ratio: 4 / 3;
    background: var(--soft);
}

.image-gallery-img-slideshow {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery-title {
    padding: 0.85rem;
    font-size: 0.9rem;
    font-weight: 650;
}

.image-gallery-slideshow-link {
    position: absolute;
    inset: 0;
}

.partner-slider-ready {
    width: min(100%, 980px);
    margin-inline: auto;
}

.partner-slider-ready .splide__track {
    overflow: hidden;
    border-radius: 18px;
}

.partner-slider-ready .splide__list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.partner-slider-ready .splide__slide {
    z-index: 0;
    grid-area: 1 / 1;
    display: grid;
    grid-template-rows: minmax(300px, 1fr) auto;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(4%);
    background: var(--white);
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    transition: opacity 650ms ease, transform 650ms ease, visibility 650ms ease;
}

.partner-slider-ready .splide__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.partner-slider-ready .splide__slide__container {
    display: grid;
    place-items: center;
    width: 100%;
    height: clamp(310px, 55vw, 520px);
    padding: clamp(1rem, 3vw, 2.5rem);
    aspect-ratio: auto;
    background: var(--white);
}

.partner-slider-ready .image-gallery-img-slideshow {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-slider-ready .image-gallery-title {
    position: relative;
    z-index: 2;
    min-height: 3.8rem;
    padding: 0.85rem 1rem;
    text-align: center;
    color: var(--ink);
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    font-weight: 500;
    background: var(--white);
}

.partner-slider-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    min-height: 42px;
    margin-top: 0.45rem;
}

.partner-slider-dot,
.partner-slider-toggle {
    padding: 0;
    border: 0;
    cursor: pointer;
}

.partner-slider-dot {
    width: 11px;
    height: 11px;
    background: #252525;
    border-radius: 999px;
    transition: transform 160ms ease, background 160ms ease;
}

.partner-slider-dot:hover,
.partner-slider-dot:focus-visible,
.partner-slider-dot.is-active {
    background: var(--gold);
    transform: scale(1.16);
}

.partner-slider-toggle {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: 0.3rem;
    color: var(--ink);
    background: transparent;
    border-radius: 50%;
}

.partner-slider-toggle:hover,
.partner-slider-toggle:focus-visible {
    color: var(--white);
    background: var(--gold);
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.image-gallery-wrapper-item,
.image-gallery-wrapper {
    min-width: 0;
}

.image-gallery-wrapper-image {
    overflow: hidden;
    background: var(--soft);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(42, 34, 23, 0.08);
}

.image-gallery-wrapper-image > a {
    display: block;
    aspect-ratio: 1 / 1;
}

.image-gallery-img-grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery-wrapper-item > .image-gallery-title,
.image-gallery-wrapper > .image-gallery-title {
    margin: 0.65rem 0 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 650;
}

.glightbox-desc {
    padding: 0.75rem 0.9rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.glightbox-desc p {
    margin: 0;
}

.image-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.image-gallery-item-masonry {
    position: relative;
    overflow: hidden;
    background: var(--soft);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.image-gallery-link-element-masonry {
    position: absolute;
    inset: 0;
}

.image-gallery-img-masonry {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-downloads .button-button,
.page-dwn1983 .button-button {
    width: 100%;
}

.page-startseite .hero {
    padding: 0.25rem 0;
}

.page-startseite .hero h2 {
    margin: 0.18rem 0;
    color: var(--gold-dark);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(0.72rem, 0.9vw, 0.84rem);
    font-weight: 600;
    line-height: 1.4;
}

.team-page-section {
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.team-page-title {
    margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
    color: var(--gold);
}
.team-page-title {
    font-size: 1.4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 8vw, 5.5rem);
}

.team-member {
    min-width: 0;
}

.team-member-photo {
    width: clamp(180px, 22vw, 210px);
    aspect-ratio: 1;
    margin-bottom: 1.55rem;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.team-member h2 {
    margin-bottom: 1.05rem;
    color: var(--gold);
    font-size: clamp(1.55rem, 3vw, 1.9rem);
    font-weight: 600;
}

.team-member-role {
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.team-member-bio {
    max-width: 430px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
    text-align: justify;
    hyphens: auto;
}

.contact-page-section {
    padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.contact-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.contact-details {
    max-width: 480px;
}

.contact-details h1 {
    margin-bottom: 1.15rem;
    color: var(--gold);
}

.contact-info-block {
    font-size: 0.85rem;
    line-height: 1.55;
}

.contact-info-block h2 {
    margin-bottom: 0.55rem;
    color: var(--ink);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 750;
}

.contact-info-block p {
    margin-bottom: 0.65rem;
}

.contact-info-divided {
    padding-top: 0.9rem;
    margin-top: 0.9rem;
    border-top: 1px solid var(--ink);
}

.opening-hours-list {
    display: grid;
    gap: 0.22rem;
    width: min(100%, 245px);
    margin: 0 0 0.6rem;
}

.opening-hours-list > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.8rem;
}

.opening-hours-list dt,
.opening-hours-list dd {
    margin: 0;
}

.contact-note {
    color: var(--muted);
    font-size: 0.76rem;
}

.contact-symbol {
    color: var(--gold);
}

.contact-phone {
    text-align: center;
}

.contact-phone a {
    color: var(--gold-dark);
    font-size: 1.05rem;
    font-weight: 750;
}

.contact-studio-photo {
    margin: 0;
}

.contact-studio-photo img {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    object-fit: cover;
}

.contact-directions-section {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: var(--white);
    border-top: 1px solid #f1f1f1;
}

.contact-directions-grid {
    display: grid;
    grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.75fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.contact-address h2 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.contact-address p {
    margin-bottom: 0.35rem;
    font-size: 0.86rem;
}

.contact-map-card {
    display: block;
    min-height: 300px;
    padding: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(42, 34, 23, 0.07);
}

.contact-map-consent {
    display: grid;
    place-items: center;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
}

.contact-map-route {
    margin-top: 0.8rem;
    font-size: 0.82rem;
}

.contact-map-frame {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
}

.opening-hours-live {
    width: min(100%, 660px);
    padding: 1.25rem clamp(1rem, 3vw, 1.75rem);
    margin: 1.25rem auto 0;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    text-align: left;
}

.opening-hours-live-compact {
    padding: 1rem 1.15rem;
    margin-top: 0.75rem;
}

.opening-hours-status {
    margin-bottom: 0.8rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-align: center;
}

.opening-hours-status.is-open {
    color: #256b3c;
}

.opening-hours-status.is-closed,
.opening-hours-status.is-error {
    color: #7a342d;
}

.opening-hours-live-list {
    display: grid;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.opening-hours-live-list li {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(0.75rem, 3vw, 1.5rem);
    align-items: baseline;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
}

.opening-hours-live-list li:last-child {
    border-bottom: 0;
}

.opening-hours-day {
    font-weight: 700;
}

.opening-hours-time {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.opening-hours-time-full {
    grid-column: 1 / -1;
    text-align: left;
}

.opening-hours-source {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

.opening-hours-live [hidden] {
    display: none;
}

.page-rezensionen .section-inner-width,
.page-impressum .section-inner-width,
.page-datenschutzerklarung .section-inner-width,
.page-uv-hinweise .section-inner-width,
.page-agb .section-inner-width,
.page-widerrufserklaerung .section-inner-width {
    max-width: 960px;
}

.page-rezensionen .text-root {
    padding: 1rem 0;
}

.page-rezensionen .text-root p,
.page-rezensionen .text-root span,
.page-rezensionen .text-root a,
.page-rezensionen .text-root strong,
.page-rezensionen .heading-root p,
.page-rezensionen .heading-root p span,
.page-rezensionen .heading-root p a,
.page-rezensionen .heading-root h3,
.page-rezensionen .heading-root h3 span,
.page-rezensionen .heading-root h3 a {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
}

.page-rezensionen .grid-row-has-columns + .grid-row-has-columns {
    border-top: 1px solid var(--line);
}

.review-list-content {
    padding: 40px 0;
}

.review-list-intro {
    display: grid;
    justify-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.review-list-intro p {
    margin: 0;
}

.review-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-list-card {
    min-width: 0;
    padding: 1.35rem 1rem;
    border-top: 1px solid var(--line);
}

.review-list-card h3,
.review-list-card p {
    margin-top: 0;
}

.review-list-card .text-root {
    padding: 0.35rem 0 0;
}

.review-list-card .text-root p:last-child {
    margin-bottom: 0;
}

.review-list-card strong {
    color: var(--gold-dark);
}

.review-list-rating {
    letter-spacing: 0.04em;
}

.review-list-empty {
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.review-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2rem;
}

.review-pagination a,
.review-pagination span {
    display: inline-flex;
    min-width: 2.5rem;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
}

.review-pagination span[aria-current="page"] {
    color: var(--white);
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.page-impressum .text-root,
.page-datenschutzerklarung .text-root,
.page-uv-hinweise .text-root,
.page-agb .text-root,
.page-widerrufserklaerung .text-root {
    max-width: 820px;
    margin-inline: auto;
}

.page-pflegeprodukte-wilhelmshaven .grid-row-has-columns {
    align-items: start;
}

.page-pflegeprodukte-wilhelmshaven .image-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(42, 34, 23, 0.08);
}

.review-form-section,
.not-found {
    padding-top: clamp(3rem, 7vw, 6rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
}

.review-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.eyebrow {
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.review-form {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.review-form label:not(.checkbox-row) {
    margin-top: 0.55rem;
    font-weight: 700;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 0.78rem 0.9rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cfc7b9;
    border-radius: 8px;
    outline: none;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.18);
}

.review-form small {
    color: var(--muted);
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    margin: 0.8rem 0;
}

.checkbox-row input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.25rem;
    accent-color: var(--gold-dark);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    padding: 1rem 1.1rem;
    margin: 1.25rem 0;
    border-radius: 9px;
}

.form-message.success {
    color: #205b2f;
    background: #edf8ef;
    border: 1px solid #a8d7b0;
}

.form-message.error {
    color: #7f1d1d;
    background: #fff1f1;
    border: 1px solid #edb5b5;
}

.form-message ul {
    margin-bottom: 0;
}

.review-form-image {
    position: sticky;
    top: 150px;
    padding: 1.5rem;
    margin: 0;
    background: var(--soft);
    border-radius: var(--radius);
}

.empty-page-spacer {
    min-height: 34vh;
}

.not-found {
    text-align: center;
}

.site-footer {
    margin-top: 2rem;
    color: #423d35;
    background: var(--soft);
    border-top: 3px solid var(--gold);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 2rem;
    width: min(100% - 2rem, 1120px);
    padding: 3rem 0;
    margin-inline: auto;
}

.footer-brand img {
    width: 210px;
    margin-bottom: 0.7rem;
}

.footer-brand p {
    margin-bottom: 0.35rem;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.footer-links a {
    color: #423d35;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-dark);
}

.footer-cookie-settings {
    width: fit-content;
    padding: 0;
    color: #423d35;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.social-links {
    display: flex;
    align-content: start;
    align-items: flex-start;
    gap: 0.65rem;
}

.social-link {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    background: rgba(201, 162, 77, 0.16);
    transform: translateY(-2px);
}

.social-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 2rem, 1120px);
    padding: 1.1rem 0;
    margin-inline: auto;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
}

.consent-dialog-open,
.consent-dialog-open body {
    overflow: hidden;
}

.cookie-consent-backdrop {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(0.75rem, 3vw, 2rem);
    overflow-y: auto;
    background: rgba(18, 16, 13, 0.72);
    backdrop-filter: blur(4px);
}

.cookie-consent-backdrop[hidden],
.cookie-consent-dialog [hidden] {
    display: none !important;
}

.cookie-consent-dialog {
    position: relative;
    width: min(100%, 720px);
    max-height: calc(100vh - 1.5rem);
    padding: clamp(1.35rem, 4vw, 2.25rem);
    overflow-y: auto;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 5px solid var(--gold);
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.cookie-consent-dialog h2 {
    padding-right: 2rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
    font-size: clamp(1.45rem, 4vw, 2rem);
}

.cookie-consent-dialog h3 {
    margin-bottom: 0.25rem;
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 750;
}

.cookie-consent-eyebrow {
    margin-bottom: 0.35rem;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-consent-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-consent-actions,
.cookie-consent-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.cookie-consent-button {
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    font-weight: 750;
    cursor: pointer;
}

.cookie-consent-button-primary {
    color: var(--white);
    background: var(--gold-dark);
}

.cookie-consent-button-secondary {
    color: var(--ink);
    background: var(--white);
}

.cookie-consent-button:hover,
.cookie-consent-button:focus-visible {
    outline: 3px solid rgba(201, 162, 77, 0.38);
    outline-offset: 2px;
}

.cookie-consent-settings-link {
    display: block;
    padding: 0.65rem 0;
    margin: 0.55rem auto 0;
    color: var(--gold-dark);
    background: transparent;
    border: 0;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    cursor: pointer;
}

.cookie-consent-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.cookie-consent-category p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.cookie-consent-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-consent-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookie-consent-switch input + span {
    position: relative;
    width: 52px;
    height: 30px;
    background: #77716a;
    border-radius: 999px;
    transition: background 160ms ease;
}

.cookie-consent-switch input + span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 160ms ease;
}

.cookie-consent-switch input:checked + span {
    background: var(--gold-dark);
}

.cookie-consent-switch input:checked + span::after {
    transform: translateX(22px);
}

.cookie-consent-switch input:focus-visible + span {
    outline: 3px solid rgba(201, 162, 77, 0.42);
    outline-offset: 3px;
}

.cookie-consent-switch-fixed {
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 750;
    cursor: default;
}

.cookie-consent-switch-fixed input + span {
    width: auto;
    height: auto;
    background: transparent;
}

.cookie-consent-switch-fixed input + span::after {
    display: none;
}

.cookie-consent-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
}

.privacy-consent-notice {
    padding: 0 0 3rem;
}

.privacy-consent-card {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.privacy-consent-card code {
    padding: 0.08rem 0.3rem;
    background: var(--soft);
    border-radius: 4px;
}

@media (min-width: 720px) {
    .grid-column-medium-3 {
        grid-column: span 3;
    }

    .grid-column-medium-4 {
        grid-column: span 4;
    }

    .grid-column-medium-6 {
        grid-column: span 6;
    }

    .grid-column-medium-8 {
        grid-column: span 8;
    }

    .grid-column-medium-9 {
        grid-column: span 9;
    }

    .grid-column-medium-12 {
        grid-column: span 12;
    }
}

@media (min-width: 1024px) {
    .grid-column-large-2 {
        grid-column: span 2;
    }

    .grid-column-large-3 {
        grid-column: span 3;
    }

    .grid-column-large-4 {
        grid-column: span 4;
    }

    .grid-column-large-6 {
        grid-column: span 6;
    }

    .grid-column-large-8 {
        grid-column: span 8;
    }

    .grid-column-large-10 {
        grid-column: span 10;
    }

    .grid-column-large-12 {
        grid-column: span 12;
    }
}

@media (max-width: 1180px) {
    .price-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem 2.5rem;
    }
}

@media (max-width: 920px) {
    .header-inner {
        min-height: 86px;
        gap: 0.65rem;
    }

    .brand img {
        width: 205px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
        flex: 0 0 44px;
        order: 3;
    }

    .site-header .social-links {
        order: 2;
        margin-left: auto;
        gap: 0.25rem;
    }

    .main-nav {
        position: fixed;
        order: 4;
        inset: 86px 0 auto 0;
        display: none;
        max-height: calc(100vh - 86px);
        padding: 1rem;
        overflow: auto;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(30, 25, 17, 0.12);
    }

    .nav-open .main-nav {
        display: grid;
        align-items: stretch;
        justify-content: stretch;
    }

    .nav-link {
        padding: 0.8rem 0.9rem;
    }

    .more-menu-panel {
        position: static;
        width: auto;
        padding: 0.3rem 0 0.3rem 0.8rem;
        border: 0;
        box-shadow: none;
    }

    .more-menu summary {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        padding: 0.8rem 0.9rem;
        gap: 0.55rem;
    }

    .more-menu-label {
        display: inline;
    }

    .more-menu-icon {
        width: 21px;
        height: 21px;
    }

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

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

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

    .review-form-image {
        position: static;
        order: -1;
    }

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

    .contact-details,
    .contact-studio-photo img {
        max-width: none;
    }
}

@media (max-width: 680px) {
    .section-inner-width,
    .header-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 1.25rem, var(--content-medium));
    }

    .header-inner {
        width: min(100% - 1rem, var(--content-medium));
        min-height: 74px;
        gap: 0.2rem;
    }

    .brand img {
        width: clamp(138px, 43vw, 176px);
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .site-header .social-links {
        gap: 0.05rem;
    }

    .site-header .social-link {
        width: 32px;
        height: 38px;
    }

    .site-header .social-icon {
        width: 28px;
        height: 28px;
    }

    .main-nav {
        inset: 74px 0 auto 0;
        max-height: calc(100vh - 74px);
    }

    .grid-column-root {
        padding: 0.65rem 0.2rem;
    }

    .price-card .item,
    .price-card .item2 {
        gap: 0.7rem;
    }

    .price-list-shell {
        width: min(100% - 1.25rem, 1780px);
    }

    .price-list-header {
        margin-bottom: 2.75rem;
    }

    .price-columns,
    .team-grid,
    .review-list-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        gap: 3.5rem;
    }

    .team-member-bio {
        max-width: none;
        text-align: left;
    }

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

    .image-gallery-grid,
    .image-gallery-masonry {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 2.2rem 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .cookie-consent-actions,
    .cookie-consent-detail-actions {
        grid-template-columns: 1fr;
    }

    .cookie-consent-category {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
