:root {
  color-scheme: light;
  --bg: #faf8f5;
  --text: #1a1a1a;
  --muted: #6b6460;
  --accent: #bfa181;
  --accent-dark: #a8875d;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(26, 26, 26, 0.12);
  --radius: 0px;
  --border: rgba(26, 26, 26, 0.12);
  --page-bg:
    radial-gradient(circle at top left, rgba(250, 240, 230, 0.7), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(235, 226, 214, 0.55), transparent 50%),
    linear-gradient(140deg, #faf8f5, #f3ede6 55%, #f7f2ec 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--text);
  backdrop-filter: blur(10px);
  background-color: rgba(250, 248, 245, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}

.salon-header.is-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  z-index: 20;
}

.salon-header.is-overlay .brand-title,
.salon-header.is-overlay .brand-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.salon-header.is-overlay .button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.salon-header.is-overlay .button.primary {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.salon-header.is-overlay .brand-logo--sticky {
  display: none;
}

.salon-header.is-overlay.is-scrolled {
  background: rgba(250, 248, 245, 0.95);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}

.salon-header.is-overlay.is-scrolled .brand-title,
.salon-header.is-overlay.is-scrolled .brand-subtitle {
  color: rgba(26, 26, 26, 0.75);
}

.salon-header.is-overlay.is-scrolled .button.ghost {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.salon-header.is-overlay.is-scrolled .button.primary {
  background: #1a1a1a;
  color: #ffffff;
}

.salon-header.is-overlay.is-scrolled .brand-logo--overlay {
  display: none;
}

.salon-header.is-overlay.is-scrolled .brand-logo--sticky {
  display: block;
}

.salon-header.is-overlay .salon-burger {
  border-color: rgba(255, 255, 255, 0.5);
}

.salon-header.is-overlay.is-scrolled .salon-burger {
  border-color: rgba(26, 26, 26, 0.35);
}

.hero-shell {
  position: relative;
  color: #f7f3f4;
  background-color: #1a1a1a;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.72), rgba(26, 26, 26, 0.25));
  pointer-events: none;
  z-index: 1;  
}

.hero-shell > * {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  height: 48px;
  object-fit: contain;
  width: auto;
  object-fit: contain;  
}

.brand-title {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin: 0;
  color: rgba(26, 26, 26, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;  
}

.salon-nav--startseite {
  gap: 0.6rem;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 26, 26, 0.35);
  padding: 0.55rem 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-link:hover {
  border-color: rgba(26, 26, 26, 0.6);
  background: rgba(191, 161, 129, 0.12);
  transform: translateY(-1px);
}

.salon-header.is-overlay .header-link {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.salon-header.is-overlay .header-link:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.salon-header.is-overlay .salon-language-switcher {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.salon-header.is-overlay .salon-language-switcher .language-pill {
  color: #ffffff;
}

.salon-header.is-overlay .salon-language-switcher .language-pill.is-active {
  background: #ffffff;
  color: #1a1a1a;
}

.salon-header.is-overlay.is-scrolled .header-link {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.salon-header.is-overlay.is-scrolled .header-link:hover {
  border-color: rgba(26, 26, 26, 0.6);
  background: rgba(191, 161, 129, 0.12);
}

.salon-header.is-overlay.is-scrolled .salon-language-switcher {
  border-color: rgba(26, 26, 26, 0.35);
  background: rgba(26, 26, 26, 0.04);
}

.salon-header.is-overlay.is-scrolled .salon-language-switcher .language-pill {
  color: var(--text);
}

.salon-header.is-overlay.is-scrolled .salon-language-switcher .language-pill.is-active {
  background: var(--text);
  color: #ffffff;
}

.salon-menu {
  position: relative;
}

.salon-menu summary {
  list-style: none;
}

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

.salon-menu summary::marker {
  content: "";
}

.salon-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 26, 26, 0.35);
  padding: 0.55rem 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.salon-menu-trigger:hover {
  border-color: rgba(26, 26, 26, 0.6);
  background: rgba(191, 161, 129, 0.12);
  transform: translateY(-1px);
}

.salon-menu-chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.salon-menu[open] .salon-menu-chevron {
  transform: rotate(225deg);
}

.salon-header.is-overlay .salon-menu-trigger {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.salon-header.is-overlay .salon-menu-trigger:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.salon-header.is-overlay.is-scrolled .salon-menu-trigger {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.salon-header.is-overlay.is-scrolled .salon-menu-trigger:hover {
  border-color: rgba(26, 26, 26, 0.6);
  background: rgba(191, 161, 129, 0.12);
}

.salon-menu-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  min-width: min(80vw, 520px);
  background: var(--salon-menu-bg);
  border: 1px solid var(--salon-menu-border);
  border-radius: 0;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 28px 60px rgba(26, 26, 26, 0.18);
  display: grid;
  gap: 0.9rem;
  z-index: 30;
  color: var(--text);
}

.salon-menu[open] .salon-menu-panel {
  animation: salonMenuIn 0.25s ease;
}

.salon-menu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.salon-menu-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--salon-accent-strong);
}

.salon-menu-all {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  padding-bottom: 0.1rem;
}

.salon-menu-all:hover {
  border-color: rgba(26, 26, 26, 0.5);
}

.salon-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.salon-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.salon-menu-item:hover {
  border-color: rgba(26, 26, 26, 0.35);
  box-shadow: 0 12px 22px rgba(26, 26, 26, 0.1);
  transform: translateY(-1px);
}

.salon-menu-title {
  font-weight: 500;
  font-size: 0.9rem;
}

.salon-menu-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
}

.salon-menu-empty {
  color: var(--muted);
  font-size: 0.85rem;
}

@keyframes salonMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-pill {
  background: rgba(15, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.8rem;
  border-radius: 0;
  font-size: 0.9rem;
  color: #fdfbfc;  
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 0;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.3s ease;
}

.button.primary {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.2);
}

.button.primary:hover {
  background: #333333;
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.28);
  transform: translateY(-1px);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.button.ghost:hover {
  border-color: rgba(26, 26, 26, 0.55);
  background: rgba(191, 161, 129, 0.12);
}

.site-header .button.ghost {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.site-header .button.ghost:hover {
  border-color: rgba(26, 26, 26, 0.7);
}

.site-header .button.primary {
  box-shadow: 0 12px 26px rgba(26, 26, 26, 0.2);
}

.hero .button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.page-content {
  position: relative;  
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  background: transparent;
  border-radius: 0;
  color: var(--text);
  box-shadow: none;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;    
  display: grid;
  gap: 2rem;
  text-align: right;  
  flex: 1;
  align-content: center;
}

.hero-shell .hero {
  padding-top: 1.25rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;  
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
  font-weight: 400;
}

.hero-text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;  
}

.hero-panel {
  justify-self: end;
  background: rgba(26, 26, 26, 0.82);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(16, 8, 20, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Inter", sans-serif;  
  text-align: right;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  text-decoration: none;
  z-index: 3;
}

.scroll-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  70% {
    transform: translateY(16px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

.hero-card-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #fdfbfc;  
}

.hero-card-text {
  margin: 0 0 1rem;
  color: rgba(253, 251, 252, 0.75);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;  
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(253, 251, 252, 0.8);  
}

.section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#leistungen,
.contact-section {
  position: relative;
  z-index: 0;
  background: transparent;
  border-radius: 0;
  padding: 3rem 0;
  box-shadow: none;
}

#leistungen::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text);
}

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

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.badge {
  align-self: flex-start;
  background: rgba(191, 161, 129, 0.16);
  border-radius: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(191, 161, 129, 0.35);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text);
}

.service-grid {
  --grid-columns: 1;
  --grid-row: clamp(200px, 60vw, 320px);
  --grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  grid-auto-rows: var(--grid-row);
  grid-auto-flow: dense;
  gap: var(--grid-gap);
  width: 100%;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-flex;
  align-items: flex-end;
  width: 100%;
  box-shadow: 0 20px 45px rgba(26, 26, 26, 0.16);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(26, 26, 26, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-decoration: none;
  color: inherit;  
  grid-column: span 1;
  grid-row: span 1;
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-card--small {
  grid-column: span 1;
  grid-row: span 1;
}

.service-card--medium {
  grid-column: span 2;
  grid-row: span 1;
}

.service-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;  
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 60px rgba(26, 26, 26, 0.2);
  filter: saturate(1.05) brightness(1.05);
}

.service-card:hover::after {
  opacity: 1;  
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.wide {
  grid-column: 1 / -1;
  grid-row: span 1;
}

.voucher-section {
  padding: 1.5rem 0;
}

.voucher-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: linear-gradient(135deg, #1f1d1e, #2b2624 55%, #251f1d 100%);
  color: #f9f4f1;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(14, 12, 12, 0.25);
  overflow: hidden;
}

.voucher-content {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.voucher-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
}

.voucher-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.voucher-form {
  display: grid;
  gap: 1rem;
}

.voucher-options {
  display: grid;
  gap: 0.75rem;
}

.voucher-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.voucher-option input[type="radio"] {
  margin: 0;
  accent-color: var(--accent);
}

.voucher-option span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.voucher-option:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(191, 161, 129, 0.12);
  transform: translateY(-1px);
}

.voucher-option--custom {
  grid-template-columns: 20px 1fr;
  grid-auto-rows: auto;
}

.voucher-custom-input {
  grid-column: 2 / -1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  color: #ffffff;
  margin-top: 0.6rem;
}

.voucher-custom-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.voucher-cta {
  align-self: flex-start;
  min-width: 200px;
}

.voucher-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.voucher-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%);
}

.voucher-media-frame {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.2rem;
}

.voucher-image {
  width: 100%;
  min-height: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(14, 12, 12, 0.35);
}

.voucher-image--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    radial-gradient(circle at 20% 20%, rgba(191, 161, 129, 0.4), transparent 60%),
    #1c1817;
}

.voucher-media-info {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.voucher-tag {
  color: rgba(255, 255, 255, 0.9);
}

.about-section {
  padding-top: 1rem;
}

.section-eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--accent);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  min-height: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.18);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.about-image--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(circle at 20% 20%, rgba(191, 161, 129, 0.35), transparent 60%),
    #ece7e1;
}

.about-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-style: italic;
  color: var(--text);
}

.about-line {
  width: 42px;
  height: 1px;
  background: rgba(26, 26, 26, 0.4);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.contact-content h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: grid;
  gap: 0.4rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
}

.contact-value {
  color: var(--muted);
  line-height: 1.6;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--text);
}

.contact-map {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.12);
  background: #f5f0eb;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.reviews-section {
  padding-top: 1rem;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.reviews-summary-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-rating {
  font-size: 2.2rem;
  font-weight: 600;
}

.reviews-stars {
  display: inline-flex;
  gap: 0.2rem;
}

.reviews-stars .star {
  color: #d6b25a;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.reviews-stars .star.is-empty {
  opacity: 0.35;
}

.reviews-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  color: var(--muted);
}

.reviews-count {
  font-size: 0.95rem;
}

.reviews-source {
  align-self: flex-start;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(191, 161, 129, 0.4);
  padding: 0.25rem 0.55rem;
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
}

.reviews-empty {
  color: var(--muted);
  grid-column: 1 / -1;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 20px 45px rgba(26, 26, 26, 0.12);
  min-height: 240px;
  height: 100%;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #f4ede6;
  object-fit: cover;
}

.review-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.75);
}

.review-author-name {
  font-weight: 600;
}

.review-time {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: #d6b25a;
}

.review-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  min-height: 6.4em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  min-height: 0;
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}

.review-readmore {
  align-self: flex-start;
  margin-top: 0.15rem;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.review-readmore:hover {
  border-color: rgba(26, 26, 26, 0.5);
  background: rgba(191, 161, 129, 0.12);
}

.review-reply {
  display: none;
  gap: 0.35rem;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(191, 161, 129, 0.6);
  color: var(--muted);
  font-size: 0.85rem;
}

.review-card.is-expanded .review-reply {
  display: grid;
}

.review-reply-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}

.review-reply-time {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: auto;
}

.service-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  color: #fff;
  padding: 1.2rem;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;  
}

.service-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.service-subtitle {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.service-manicure {
  background-image:
    url("https://dollea.de/wp-content/uploads/2026/01/SnapInsta.to_618652354_17905473030340972_6860753611484447501_n.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-pedicure {
  background-image:
    url("https://dollea.de/wp-content/uploads/2026/01/openart-image_LdatR3Cz_1769174393742_raw.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-lashes {
  background-image:
    url("https://dollea.de/wp-content/uploads/2026/01/openart-image_S3yoXUZf_1769174586823_raw.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-brows {
  background-image:
    url("https://dollea.de/wp-content/uploads/2024/12/Augenbrauen.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-permanent {
  background-image:
    url("https://dollea.de/wp-content/uploads/2024/12/PMU-small.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-waxing {
  background-image:
    url("https://dollea.de/wp-content/uploads/2024/12/IMG_5115.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-sugaring {
  background-image:
    url("https://dollea.de/wp-content/uploads/2024/12/c6638662-7ca8-41f3-a85d-ded725ca4d1f.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-electro {
  background-image:
    url("https://dollea.de/wp-content/uploads/2024/12/IMG_5118.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-facial {
  background-image:
    url("https://dollea.de/wp-content/uploads/2016/10/blog-home3-img-15.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-massage {
  background-image:
    url("https://dollea.de/wp-content/uploads/2025/10/Dollea-Massagen-7.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split {
  display: grid;
  gap: 2rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
}

.step-number {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.step h3 {
  margin: 0 0 0.35rem;
}

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

.info-panel {
  background: #1a1a1a;
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-title {
  margin: 0;
  font-size: 1.4rem;
}

.info-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.info-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.metric-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.metric-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.booking-callout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.booking-callout p {
  margin: 0;
  color: #3b2a35;
}

.booking-callout h2 {
  margin: 0;
  color: #2a1a26;
}

.page-content .button.primary {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(26, 26, 26, 0.2);
}

.page-content .button.primary:hover {
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.28);
}

.page-content .button.ghost {
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.35);
}

.page-content .button.ghost:hover {
  border-color: rgba(26, 26, 26, 0.6);
}

@media (min-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .hero-content {
    grid-column: 3 / -1;
  }

  .hero-panel {
    grid-column: 3 / -1;
  }  

  .section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .service-grid {
    --grid-columns: 3;
    --grid-row: clamp(170px, 24vw, 240px);
    --grid-gap: 1.25rem;
  }

  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .booking-callout {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

@media (max-width: 767px) {
  .hero-shell {
    background-position: 70% center;
  }

  .hero-video {
    object-position: left center;
  }

  #leistungen,
  .contact-section {
    padding: 2.5rem 0;
    border-radius: 0;
  }

  .hero-shell {
    padding-top: 88px;
  }
}

@media (max-width: 860px) {
  .salon-nav--startseite {
    gap: 0.75rem;
  }

  .salon-menu {
    width: 100%;
  }

  .salon-menu-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .header-link {
    width: 100%;
    justify-content: center;
  }

  .salon-menu-panel {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: 1px solid rgba(26, 26, 26, 0.12);
  }

  .salon-menu-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .salon-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .salon-menu-panel {
    min-width: 520px;
  }

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

@media (min-width: 640px) {
  .service-grid {
    --grid-columns: 2;
    --grid-row: clamp(180px, 32vw, 260px);
    --grid-gap: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    --grid-columns: 4;
    --grid-row: clamp(160px, 18vw, 220px);
    --grid-gap: 1.5rem;
  }
}

@media (max-width: 639px) {
  .service-card--medium,
  .service-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .voucher-content {
    padding: 2rem 1.5rem;
  }

  .voucher-media {
    padding: 1.5rem;
  }

  .voucher-cta {
    width: 100%;
  }
}
