:root {
  --color-bg: #f5efe8;
  --color-bg-soft: #fbf7ef;
  --color-surface: #ffffff;
  --color-text: #28221d;
  --color-muted: #6f6259;
  --color-border: rgba(40, 34, 29, 0.14);
  --color-primary: #7a5f43;
  --color-primary-dark: #5d4732;
  --color-primary-hover: #4a3728;
  --color-primary-soft: #e8ddcf;
  --shadow-soft: 0 22px 60px rgba(60, 45, 32, 0.14);
  --shadow-card: 0 14px 42px rgba(60, 45, 32, 0.08);
  --radius-large: 28px;
  --radius-medium: 18px;
  --container: 1180px;
  --font-main: Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(232, 221, 207, 0.9), transparent 36rem),
    linear-gradient(180deg, var(--color-bg), #fffaf3 52%, var(--color-bg-soft));
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 232, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-muted);
}

.main-nav a {
  text-decoration: none;
  color: var(--color-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg-soft);
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
}

.hero {
  padding-top: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 700;
}

h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  letter-spacing: -0.045em;
  max-width: 850px;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
}

.lead {
  margin: 24px 0 0;
  max-width: 690px;
  font-size: 20px;
  color: var(--color-muted);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--color-primary-dark);
  color: #ffffff;
  border-color: var(--color-primary-dark);
  box-shadow: 0 14px 34px rgba(93, 71, 50, 0.25);
}

.button.primary:hover {
  background: var(--color-primary-hover);
  color: #ffffff;
  border-color: var(--color-primary-hover);
}

.button.secondary {
  color: var(--color-primary-dark);
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover {
  background: #ffffff;
  color: var(--color-primary-dark);
}

.trust-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 14px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
  padding: 14px;
}

.hero-card img {
  width: 100%;
  height: min(620px, 58vw);
  object-fit: cover;
  border-radius: 22px;
}

.hero-card-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(36, 32, 29, 0.12);
}

.hero-card-note strong,
.hero-card-note span {
  display: block;
}

.hero-card-note span {
  color: var(--color-muted);
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.split p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card-body p {
  color: var(--color-muted);
  margin: 12px 0 18px;
}

.card-body a {
  color: var(--color-primary-dark);
  font-weight: 900;
  text-decoration: none;
}

.highlight-section {
  background: rgba(255, 255, 255, 0.34);
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 46px;
  padding: 34px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #fffaf3, #ecdfcf);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.highlight p {
  color: var(--color-muted);
  font-size: 18px;
  margin: 18px 0 24px;
}

.highlight img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 22px;
}

.price-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  display: block;
  padding: 30px;
  border-radius: var(--radius-large);
  background: #ffffff;
  border: 1px solid var(--color-border);
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.price-card span {
  display: block;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card strong {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(60, 45, 32, 0.1);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-large);
  background: var(--color-primary-dark);
  color: #ffffff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 16px 0 0;
}

.cta-box .eyebrow {
  color: var(--color-primary-soft);
}

.cta-box .button.primary {
  background: #ffffff;
  color: var(--color-primary-dark);
  border-color: #ffffff;
}

.cta-box .button.primary:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-soft);
}

.legal-page {
  max-width: 920px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-box {
  padding: 34px;
  border-radius: var(--radius-large);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.legal-box h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 28px;
}

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

.legal-box h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 21px;
  color: var(--color-text);
}

.legal-box p,
.legal-box ul {
  color: var(--color-muted);
  font-size: 17px;
}

.legal-box ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.legal-box li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 54px 0;
  background: #211b17;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 38px;
}

.footer-logo {
  width: 110px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 17px;
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-grid {
    gap: 46px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: #fffaf3;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .split,
  .highlight {
    grid-template-columns: 1fr;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  .price-links {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-card img {
    height: 420px;
  }

  .hero-card-note {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .highlight {
    padding: 22px;
  }

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

  .gallery-grid img {
    height: 310px;
  }

  .cta-box {
    padding: 28px;
  }

  .legal-box {
    padding: 24px;
  }

  .legal-box h2 {
    font-size: 24px;
  }
}

.opening-hours {
  padding: 28px;
  border-radius: var(--radius-large);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
}

.opening-hours div:last-child {
  border-bottom: 0;
}

.opening-hours span {
  color: var(--color-muted);
  font-weight: 800;
}

.opening-hours strong {
  color: var(--color-text);
  text-align: right;
}

.opening-note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

@media (max-width: 640px) {
  .opening-hours {
    padding: 22px;
  }

  .opening-hours div {
    flex-direction: column;
    gap: 2px;
  }

  .opening-hours strong {
    text-align: left;
  }
}

.opening-hours {
  padding: 28px;
  border-radius: var(--radius-large);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
}

.opening-hours div:last-child {
  border-bottom: 0;
}

.opening-hours span {
  color: var(--color-muted);
  font-weight: 800;
}

.opening-hours strong {
  color: var(--color-text);
  text-align: right;
}

.opening-note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

@media (max-width: 640px) {
  .opening-hours {
    padding: 22px;
  }

  .opening-hours div {
    flex-direction: column;
    gap: 2px;
  }

  .opening-hours strong {
    text-align: left;
  }
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.cards.two .card img {
  height: 320px;
  object-fit: contain;
  background: #ffffff;
  padding: 24px;
}

@media (max-width: 760px) {
  .cards.two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.gallery-preview .cards.two {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.gallery-preview .section-heading:has(+ .cards.two) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-preview .cards.two .card {
  max-width: 380px;
}

.gallery-preview .cards.two .card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #ffffff;
  padding: 24px;
}

.price-image-cards {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.price-image-cards .card img {
  height: 520px;
  object-fit: contain;
  background: #ffffff;
  padding: 18px;
}

@media (max-width: 760px) {
  .price-image-cards .card img {
    height: 420px;
  }
}

/* Mobile and layout refinement */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .main-nav {
    top: 76px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    gap: 8px;
  }

  .trust-list li {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    padding: 10px;
  }

  .hero-card img {
    height: 360px;
  }

  .hero-card-note {
    position: static;
    margin-top: 10px;
  }

  .cards.two,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .cards.two .card {
    max-width: none;
  }

  .cards.two .card img {
    height: 260px;
  }

  .price-image-cards .card img {
    height: 380px;
  }

  .opening-hours div {
    flex-direction: column;
    align-items: flex-start;
  }

  .opening-hours strong {
    text-align: left;
  }

  .price-card strong {
    font-size: 26px;
  }

  .footer-logo {
    width: 92px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 54px 0;
  }

  .hero-card img {
    height: 320px;
  }

  .gallery-grid img {
    height: 250px;
  }

  .price-image-cards .card img {
    height: 330px;
  }
}

.promo-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, #fff7f8, #f1d7dc);
  border: 1px solid rgba(120, 68, 82, 0.18);
  box-shadow: var(--shadow-soft);
}

.promo-box p {
  color: var(--color-muted);
  font-size: 18px;
  margin: 16px 0 24px;
}

.promo-box img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  border-radius: 22px;
  background: #ffffff;
  padding: 12px;
  box-shadow: var(--shadow-card);
}

.payment-box {
  max-width: 820px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
  border: 1px solid var(--color-border);
}

@media (max-width: 860px) {
  .promo-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.qualification-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.qualification-box,
.certificate-box,
.tech-box {
  padding: 30px;
  border-radius: var(--radius-large);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.qualification-box p,
.certificate-box p,
.tech-box p {
  color: var(--color-muted);
  font-size: 17px;
}

.qualification-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.qualification-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.certificate-box img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  padding: 12px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tech-box strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .qualification-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Soft rose visual refinement */
:root {
  --color-bg: #fff3f5;
  --color-bg-soft: #fff8f8;
  --color-surface: #ffffff;
  --color-text: #2d2427;
  --color-muted: #7a666b;
  --color-border: rgba(105, 58, 72, 0.16);
  --color-primary: #b36b7c;
  --color-primary-dark: #7f4052;
  --color-primary-hover: #673242;
  --color-primary-soft: #f4d8df;
  --shadow-soft: 0 24px 64px rgba(116, 59, 76, 0.15);
  --shadow-card: 0 16px 44px rgba(116, 59, 76, 0.09);
}

body {
  background:
    radial-gradient(circle at top left, rgba(244, 216, 223, 0.95), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(255, 236, 240, 0.9), transparent 30rem),
    linear-gradient(180deg, #fff3f5, #fffafa 48%, #fff7f2);
}

.site-header {
  background: rgba(255, 243, 245, 0.95);
}

.button.primary {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 14px 34px rgba(127, 64, 82, 0.24);
}

.button.primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.hero-card,
.card,
.price-card,
.legal-box,
.opening-hours,
.qualification-box,
.certificate-box,
.tech-box,
.payment-box {
  box-shadow: var(--shadow-card);
}

.highlight,
.promo-box {
  background: linear-gradient(135deg, #fffafa, #f7dfe5);
  border-color: rgba(105, 58, 72, 0.16);
}

.cta-box {
  background: linear-gradient(135deg, #7f4052, #a85f72);
}

.trust-list li,
.qualification-list li,
.payment-methods span {
  background: #fff7f8;
}

.main-nav a:hover,
.main-nav a.active,
.card-body a,
.price-card strong {
  color: var(--color-primary-dark);
}

/* Gallery horizontal slider */
.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gallery-grid img {
  height: 320px;
  scroll-snap-align: start;
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(127, 64, 82, 0.08);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(127, 64, 82, 0.35);
  border-radius: 999px;
}

.gallery-preview .section-heading::after {
  content: "Seitlich scrollen";
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff7f8;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .gallery-grid img {
    height: 280px;
  }
}

/* Final soft feminine rose design */
:root {
  --color-bg: #fff5f7;
  --color-bg-soft: #fffafb;
  --color-surface: #fffefe;
  --color-text: #2c2427;
  --color-muted: #78676c;
  --color-border: rgba(175, 103, 125, 0.18);
  --color-primary: #c87991;
  --color-primary-dark: #a95b75;
  --color-primary-hover: #8d465e;
  --color-primary-soft: #f7dce5;
  --shadow-soft: 0 24px 70px rgba(171, 91, 116, 0.14);
  --shadow-card: 0 16px 46px rgba(171, 91, 116, 0.09);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 220, 231, 0.95), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(255, 238, 243, 0.95), transparent 32rem),
    linear-gradient(180deg, #fff5f7 0%, #fffafb 42%, #fff3ed 100%);
}

.section {
  position: relative;
}

.site-header {
  background: rgba(255, 247, 249, 0.94);
  border-bottom: 1px solid rgba(175, 103, 125, 0.16);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-dark);
}

.hero-card,
.card,
.price-card,
.legal-box,
.opening-hours,
.qualification-box,
.certificate-box,
.tech-box,
.payment-box {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(175, 103, 125, 0.16);
  box-shadow: var(--shadow-card);
}

.card,
.hero-card,
.price-card,
.legal-box,
.opening-hours,
.qualification-box,
.certificate-box,
.tech-box,
.payment-box,
.promo-box,
.highlight {
  backdrop-filter: blur(8px);
}

.hero-card-note {
  background: rgba(255, 248, 250, 0.92);
}

.button.primary {
  background: linear-gradient(135deg, #b76580, #d48a9f);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(180, 93, 121, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #9c4f68, #c87991);
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-dark);
  border-color: rgba(175, 103, 125, 0.2);
}

.highlight,
.promo-box {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 237, 0.95), transparent 24rem),
    linear-gradient(135deg, #fffafb, #f8dfe7);
  border-color: rgba(175, 103, 125, 0.18);
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(255, 231, 238, 0.35), transparent 20rem),
    linear-gradient(135deg, #c87991, #a95b75);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(255, 235, 241, 0.95), transparent 28rem),
    linear-gradient(135deg, #fff6f8, #f4d9e2);
  color: var(--color-text);
  border-top: 1px solid rgba(175, 103, 125, 0.18);
}

.site-footer p,
.site-footer a {
  color: var(--color-muted);
}

.site-footer h3 {
  color: var(--color-primary-dark);
}

.footer-logo {
  box-shadow: var(--shadow-card);
}

.trust-list li,
.qualification-list li,
.payment-methods span,
.gallery-preview .section-heading::after {
  background: rgba(255, 248, 250, 0.86);
  color: var(--color-primary-dark);
  border-color: rgba(175, 103, 125, 0.18);
}

.eyebrow {
  color: var(--color-primary-dark);
}

.card-body a,
.price-card strong {
  color: var(--color-primary-dark);
}

/* Automatic gallery carousel */
.gallery-grid {
  display: flex;
  gap: 22px;
  overflow: hidden;
  padding: 20px 6px 34px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid img {
  flex: 0 0 320px;
  width: 320px;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(171, 91, 116, 0.12);
  transform: scale(0.92);
  opacity: 0.72;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
  filter: saturate(0.92);
}

.gallery-grid img.is-center {
  transform: scale(1.08);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 22px 62px rgba(171, 91, 116, 0.22);
  filter: saturate(1.08);
}

.gallery-grid img.is-near {
  transform: scale(0.98);
  opacity: 0.88;
  filter: saturate(1);
}

.gallery-preview .section-heading::after {
  content: "Automatischer Slider";
}

@media (max-width: 760px) {
  .gallery-grid {
    gap: 16px;
    padding-bottom: 28px;
  }

  .gallery-grid img {
    flex-basis: 76vw;
    width: 76vw;
    height: 280px;
  }

  .gallery-grid img.is-center {
    transform: scale(1.04);
  }
}

/* Slider correction: no label, stronger center effect */
.gallery-preview .section-heading::after {
  content: none !important;
  display: none !important;
}

.gallery-grid {
  display: flex !important;
  gap: 28px !important;
  overflow: hidden !important;
  padding: 38px 8px 48px !important;
  scroll-behavior: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.gallery-grid::-webkit-scrollbar {
  display: none !important;
}

.gallery-grid img {
  flex: 0 0 310px !important;
  width: 310px !important;
  height: 310px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  transform: scale(0.88) !important;
  opacity: 0.58 !important;
  filter: saturate(0.86) brightness(1.04) !important;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease !important;
  box-shadow: 0 12px 34px rgba(171, 91, 116, 0.10) !important;
}

.gallery-grid img.is-near {
  transform: scale(0.97) !important;
  opacity: 0.82 !important;
  filter: saturate(1) brightness(1.02) !important;
}

.gallery-grid img.is-center {
  transform: scale(1.13) !important;
  opacity: 1 !important;
  z-index: 5 !important;
  filter: saturate(1.08) brightness(1) !important;
  box-shadow: 0 24px 64px rgba(171, 91, 116, 0.26) !important;
}

@media (max-width: 760px) {
  .gallery-grid {
    gap: 20px !important;
    padding: 32px 4px 42px !important;
  }

  .gallery-grid img {
    flex-basis: 76vw !important;
    width: 76vw !important;
    height: 280px !important;
  }

  .gallery-grid img.is-center {
    transform: scale(1.06) !important;
  }
}

.gallery-grid {
  overscroll-behavior-x: contain !important;
}

.gallery-grid img {
  user-select: none !important;
  pointer-events: none !important;
}

/* Real infinite marquee slider override */
.gallery-grid {
  display: block !important;
  overflow: hidden !important;
  padding: 44px 0 54px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
  scrollbar-width: none !important;
}

.gallery-grid::-webkit-scrollbar {
  display: none !important;
}

.gallery-track {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  width: max-content !important;
  will-change: transform !important;
  transform: translate3d(0, 0, 0);
}

.gallery-track img {
  flex: 0 0 320px !important;
  width: 320px !important;
  height: 320px !important;
  object-fit: cover !important;
  border-radius: 26px !important;
  transform: scale(0.88) !important;
  opacity: 0.58 !important;
  filter: saturate(0.88) brightness(1.04) !important;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    box-shadow 0.32s ease,
    filter 0.32s ease !important;
  box-shadow: 0 12px 34px rgba(171, 91, 116, 0.10) !important;
  user-select: none !important;
  pointer-events: none !important;
}

.gallery-track img.is-near {
  transform: scale(0.98) !important;
  opacity: 0.82 !important;
  filter: saturate(1) brightness(1.02) !important;
}

.gallery-track img.is-center {
  transform: scale(1.16) !important;
  opacity: 1 !important;
  z-index: 5 !important;
  filter: saturate(1.1) brightness(1) !important;
  box-shadow: 0 26px 68px rgba(171, 91, 116, 0.28) !important;
}

@media (max-width: 760px) {
  .gallery-track {
    gap: 20px !important;
  }

  .gallery-track img {
    flex-basis: 76vw !important;
    width: 76vw !important;
    height: 280px !important;
  }

  .gallery-track img.is-center {
    transform: scale(1.07) !important;
  }
}

/* Static gallery for sections that should not slide */
.static-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.static-gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(171, 91, 116, 0.10);
  background: #ffffff;
}

@media (max-width: 900px) {
  .static-gallery-grid {
    grid-template-columns: 1fr;
  }

  .static-gallery-grid img {
    height: 280px;
  }
}

/* =========================================================
   GLOBAL SOFT PINK BACKGROUND OVERRIDE
   ========================================================= */

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(244, 193, 210, 0.38) 0%, rgba(244, 193, 210, 0.12) 22%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at top right, rgba(236, 184, 205, 0.32) 0%, rgba(236, 184, 205, 0.10) 20%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at center left, rgba(248, 214, 225, 0.22) 0%, rgba(248, 214, 225, 0.08) 25%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(
      180deg,
      #f9edf2 0%,
      #f8e8ef 12%,
      #f7e5ed 28%,
      #f9eef3 45%,
      #f6e4eb 65%,
      #f8edf2 82%,
      #f9f1f5 100%
    ) !important;
  background-attachment: fixed !important;
  color: #2f2327 !important;
}

/* Gro?e Hauptbereiche nicht mehr wei?, sondern weich transparent */
.site-header,
.site-footer,
.hero,
.section,
.page-hero,
main,
.page-content {
  background: transparent !important;
}

/* Optional leicht rosa Schleier ?ber Inhaltsbereichen */
.hero,
.section,
.page-hero {
  position: relative;
}

.hero::before,
.section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(248, 229, 237, 0.18) 50%,
      rgba(255, 255, 255, 0.12) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.hero > *,
.section > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Header etwas weicher rosa */
.site-header {
  background: rgba(250, 240, 245, 0.86) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(190, 132, 154, 0.18) !important;
}

/* Footer unten ebenfalls deutlich heller und rosiger */
.site-footer {
  background:
    linear-gradient(
      180deg,
      rgba(246, 228, 235, 0.92) 0%,
      rgba(241, 213, 224, 0.96) 100%
    ) !important;
  border-top: 1px solid rgba(190, 132, 154, 0.18) !important;
}

/* Karten/Boxen weich und feminin */
.card,
.info-card,
.contact-card,
.price-card,
.qr-card,
.feature-card,
.highlight-card,
.gallery-card,
.cta-card {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(210, 171, 188, 0.28) !important;
  box-shadow: 0 18px 46px rgba(180, 117, 143, 0.10) !important;
  backdrop-filter: blur(10px);
}

/* Hero Bildkarte harmonischer */
.hero-image-card,
.hero-card,
.hero-visual,
.image-card {
  background: rgba(255, 255, 255, 0.64) !important;
  border: 1px solid rgba(212, 180, 194, 0.28) !important;
  box-shadow: 0 24px 60px rgba(183, 116, 143, 0.12) !important;
}

/* Badges / kleine Buttons sanft rosa */
.badge,
.tag,
.chip,
.pill {
  background: rgba(255, 247, 250, 0.78) !important;
  border: 1px solid rgba(205, 160, 180, 0.32) !important;
  color: #9f5e79 !important;
}

/* Textfarben stimmiger */
p,
li,
.small-text,
.meta-text {
  color: #6f5963 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2b2024 !important;
}

.eyebrow {
  color: #b05f80 !important;
  letter-spacing: 0.16em;
}

/* Navigation etwas rosiger */
.main-nav a {
  color: #6f5a63 !important;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #b05f80 !important;
}

/* Sektion mit Preis/Gutschein/Kontakt weicher */
.price-list-card,
.voucher-card,
.payment-card,
.contact-box,
.schedule-card {
  background: rgba(255, 255, 255, 0.74) !important;
  border: 1px solid rgba(211, 177, 190, 0.28) !important;
  box-shadow: 0 18px 44px rgba(180, 117, 143, 0.10) !important;
}

/* Mobile ebenfalls sauber */
@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(244, 193, 210, 0.32) 0%, rgba(244, 193, 210, 0.10) 24%, rgba(255, 255, 255, 0) 42%),
      radial-gradient(circle at top right, rgba(236, 184, 205, 0.26) 0%, rgba(236, 184, 205, 0.08) 22%, rgba(255, 255, 255, 0) 42%),
      linear-gradient(
        180deg,
        #f9edf2 0%,
        #f7e6ed 24%,
        #f8edf2 54%,
        #f6e4eb 100%
      ) !important;
  }

  .site-header {
    background: rgba(250, 241, 245, 0.92) !important;
  }
}

/* =========================================================
   STRONGER ROSE HEADER + BACKGROUND REFINEMENT
   ========================================================= */

body {
  background:
    radial-gradient(circle at 6% 0%, rgba(235, 144, 177, 0.34) 0%, rgba(245, 190, 210, 0.22) 22%, rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 94% 3%, rgba(225, 132, 170, 0.30) 0%, rgba(246, 199, 216, 0.18) 24%, rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 50% 42%, rgba(255, 210, 225, 0.22) 0%, rgba(250, 226, 236, 0.12) 30%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(
      180deg,
      #f7dfe8 0%,
      #f9e5ed 16%,
      #faedf2 34%,
      #f8e1ea 58%,
      #faedf2 78%,
      #f6dfe8 100%
    ) !important;
  background-attachment: fixed !important;
}

.site-header {
  background:
    linear-gradient(
      135deg,
      rgba(248, 219, 230, 0.96) 0%,
      rgba(244, 201, 218, 0.94) 48%,
      rgba(250, 231, 238, 0.96) 100%
    ) !important;
  border-bottom: 1px solid rgba(178, 91, 124, 0.24) !important;
  box-shadow: 0 10px 30px rgba(169, 91, 119, 0.08) !important;
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
}

.brand img {
  background: rgba(255, 248, 250, 0.72);
  box-shadow: 0 10px 28px rgba(169, 91, 119, 0.13);
  border: 1px solid rgba(178, 91, 124, 0.16);
}

.main-nav a {
  color: #6f5660 !important;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: #a84f70 !important;
}

.nav-toggle {
  background: rgba(255, 248, 250, 0.78) !important;
  border-color: rgba(178, 91, 124, 0.22) !important;
}

.nav-toggle span {
  background: #8d465e !important;
}

.hero::before,
.section::before,
.page-hero::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 240, 246, 0.20) 0%,
      rgba(247, 217, 229, 0.22) 52%,
      rgba(255, 246, 249, 0.16) 100%
    ) !important;
}

.card,
.price-card,
.legal-box,
.opening-hours,
.qualification-box,
.certificate-box,
.tech-box,
.payment-box,
.promo-box,
.highlight {
  border-color: rgba(187, 105, 135, 0.22) !important;
}

@media (max-width: 760px) {
  .site-header {
    background:
      linear-gradient(
        135deg,
        rgba(248, 219, 230, 0.98) 0%,
        rgba(244, 201, 218, 0.97) 100%
      ) !important;
  }

  .main-nav {
    background: rgba(255, 244, 248, 0.98) !important;
    border-color: rgba(178, 91, 124, 0.22) !important;
  }
}

/* =========================================================
   READABILITY + CONTACT FORM REFINEMENT
   ========================================================= */

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(255, 228, 238, 0.42), transparent 26rem),
    linear-gradient(135deg, #f5d5df 0%, #e7a9bd 52%, #d48aa3 100%) !important;
  color: #2f2327 !important;
  border: 1px solid rgba(165, 82, 112, 0.18) !important;
  box-shadow: 0 20px 54px rgba(172, 88, 119, 0.16) !important;
}

.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: #2f2327 !important;
}

.cta-box .button.primary {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #a84f70 !important;
  border: 1px solid rgba(165, 82, 112, 0.16) !important;
  box-shadow: 0 12px 30px rgba(130, 62, 88, 0.10) !important;
}

.cta-box .button.primary:hover {
  background: #ffffff !important;
  color: #8d465e !important;
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(190, 132, 154, 0.24);
  box-shadow: 0 20px 56px rgba(180, 117, 143, 0.12);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 800;
  color: #6f5660;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(178, 91, 124, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 252, 0.96);
  color: #2f2327;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(168, 79, 112, 0.72);
  box-shadow: 0 0 0 4px rgba(222, 151, 178, 0.20);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
  color: #6f5963;
  font-size: 15px;
  line-height: 1.55;
}

.form-consent input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: #b05f80;
  flex: 0 0 auto;
}

.hidden-field {
  display: none !important;
}

.form-note {
  margin-top: 14px;
  font-size: 15px;
  color: #7a666b !important;
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px;
  }
}

/* Zahlungsbox optisch an die restlichen Boxen anpassen */
.payment-box,
.payment-card,
.payment-panel,
.payment-methods,
.payment-methods-box,
.payment-note-box,
.payment-info-box {
  border-radius: 28px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.84) !important;
  border: 1px solid rgba(201, 151, 170, 0.18) !important;
  box-shadow: 0 18px 45px rgba(188, 130, 151, 0.10) !important;
  padding: 22px 24px !important;
}

.payment-box strong,
.payment-card strong,
.payment-panel strong,
.payment-methods strong,
.payment-methods-box strong,
.payment-note-box strong,
.payment-info-box strong {
  display: block !important;
  margin-bottom: 14px !important;
  color: #3a2a31 !important;
}

.payment-box p,
.payment-card p,
.payment-panel p,
.payment-methods p,
.payment-methods-box p,
.payment-note-box p,
.payment-info-box p {
  margin-bottom: 18px !important;
  color: #6f5963 !important;
}

.payment-box .pill-list,
.payment-card .pill-list,
.payment-panel .pill-list,
.payment-methods .pill-list,
.payment-methods-box .pill-list,
.payment-note-box .pill-list,
.payment-info-box .pill-list {
  margin-top: 8px !important;
}

/* =========================================================
   COOKIE BANNER + FORM PRIVACY LINK
   ========================================================= */

.form-consent a {
  color: #a84f70 !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent a:hover {
  color: #8d465e !important;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner-inner {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 233, 241, 0.96), transparent 28rem),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(178, 91, 124, 0.22);
  box-shadow: 0 22px 70px rgba(122, 66, 87, 0.20);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 8px;
  color: #2f2327;
  font-size: 18px;
}

.cookie-banner-text p {
  margin: 0 0 8px;
  color: #6f5963 !important;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-banner-text a {
  color: #a84f70;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-actions .button {
  min-height: 46px;
  white-space: nowrap;
}

.cookie-banner-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .button {
    width: 100%;
  }
}
