:root {
  --black: #030201;
  --black-soft: #080604;
  --card: #100b06;
  --card-soft: #171008;
  --white: #ffffff;
  --text: #f7f2e8;
  --muted: #d8cfc0;
  --gold: #d4af37;
  --gold-light: #f7d774;
  --gold-dark: #8a6116;
  --gold-border: rgba(212, 175, 55, 0.55);
}

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

html,
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  margin: 0 0 0.7rem;
}

p,
li {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
  border-radius: 8px;
}

.gold-dust-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.gold-dust-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, rgba(247, 215, 116, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(212, 175, 55, 0.5) 0 0.8px, transparent 1.4px);
  background-size: 100px 100px, 180px 180px;
  animation: dustDrift 30s linear infinite;
}

.gold-dust-layer--near::before {
  opacity: 0.12;
  background-size: 180px 180px, 280px 280px;
}

.gold-dust-layer--far::before {
  opacity: 0.1;
  background-size: 70px 70px, 130px 130px;
}

@keyframes dustDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(30px, -25px, 0); }
}

header,
main,
footer,
section {
  position: relative;
  z-index: 2;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section,
.site-section {
  padding: clamp(56px, 7vw, 110px) 0;
  background: transparent;
}

.section-divider {
  text-align: center;
  color: var(--gold-light);
}

.welcome-section {
  padding: clamp(48px, 6vw, 90px) clamp(20px, 5vw, 90px);
}

.welcome-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  background: linear-gradient(180deg, rgba(16, 11, 6, 0.98), rgba(5, 3, 2, 0.99));
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 48px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 26px rgba(212, 175, 55, 0.12);
}

.welcome-text h2 {
  color: #ffffff;
  margin: 0 0 18px;
}

.welcome-text p {
  color: #e8ddc8;
  line-height: 1.7;
}

.welcome-image {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  position: static !important;
  min-height: 0 !important;
}

.welcome-image img {
  width: 100% !important;
  height: auto !important;
  max-height: 380px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 30px rgba(212, 175, 55, 0.22),
    0 18px 46px rgba(0, 0, 0, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(3, 2, 1, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

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

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

.logo-wrap {
  position: relative;
}

.brand-logo,
.footer-logo,
.splash-logo,
.hero-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo-fallback {
  display: none;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-mark {
  color: var(--white);
  font-weight: 800;
}

.brand-subline {
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--white);
}

.site-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  background: rgba(8, 6, 4, 0.98);
  border-bottom: 1px solid var(--gold-border);
  display: none;
  z-index: 20;
  padding: 1rem;
  gap: 0.8rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 700;
  display: block;
  padding: 0.5rem 0.25rem;
}

.hero-section {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 80px clamp(24px, 5vw, 90px);
  background: #030201;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.4rem 0 0.9rem;
}

.hero-brand-title {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.hero-brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-tagline,
.hero-family,
.hero-services,
.hero-status,
.hero-address {
  color: var(--muted) !important;
}

.hero-content h1 {
  margin: 24px 0 18px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.95rem 0 0.65rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.48);
  color: var(--white) !important;
  font-weight: 800;
}

.pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
}

.contact-pill--whatsapp img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  border: 1px solid var(--gold-light);
}

.hero-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 44px rgba(212, 175, 55, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.65);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  display: block;
}

button,
.btn,
.button,
.cta-button,
.contact-button,
.contact-link,
.contact-actions a,
.contact-actions button,
a.button,
a.btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  padding: 12px 20px;
}

.button-ghost {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
  color: var(--white) !important;
  border: 1px solid var(--gold-border);
}

.section-heading .eyebrow,
.eyebrow {
  color: var(--gold-light) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.dark-card,
.service-card,
.team-card,
.product-card,
.lotto-card,
.review-card,
.gallery-card,
.contact-card,
.hours-card,
.why-card,
.home-visit-note,
.before-after-card {
  background: linear-gradient(180deg, rgba(16, 11, 6, 0.98), rgba(5, 3, 2, 0.99));
  color: var(--text);
  border: 1px solid var(--gold-border);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 26px rgba(212, 175, 55, 0.12);
}

.trust-strip-grid,
.services-grid,
.products-grid,
.team-grid,
.gallery-grid,
.reviews-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.services-grid,
.products-grid,
.team-grid,
.gallery-grid,
.reviews-grid {
  grid-template-columns: 1fr;
}

.service-card,
.product-card,
.review-card,
.why-card,
.contact-card,
.hours-card,
.before-after-card {
  padding: 24px;
}

.service-chips,
.team-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chips span,
.team-chips span,
.gallery-chip,
.before-after-chip,
.chip,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-light) !important;
  font-weight: 800;
}

.team-card,
.gallery-card,
.before-after-card,
.lotto-card {
  position: relative;
  isolation: isolate;
}

.team-card::before,
.gallery-card::before,
.before-after-card::before,
.lotto-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 30px;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 215, 116, 0.4), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.28), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(247, 215, 116, 0.18), transparent 34%);
  filter: blur(14px);
}

.team-photo-wrap,
.lotto-media {
  background: transparent;
}

.team-card img,
.gallery-card img,
.before-after-card img,
.lotto-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  border-radius: 22px;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 22px rgba(212, 175, 55, 0.22),
    0 0 52px rgba(247, 215, 116, 0.13),
    0 18px 46px rgba(0, 0, 0, 0.55);
}

.gallery-card {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.gallery-card .gallery-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(3, 2, 1, 0.88);
  color: var(--white) !important;
}

.before-after-images {
  display: grid;
  gap: 12px;
}

.before-after-item {
  margin: 0;
}

.hours-grid .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.5rem 0;
}

.hours-grid .hours-row strong {
  color: var(--gold-light) !important;
}

.contact-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

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

.contact-line {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.social-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-logo-link {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  background: radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.24), rgba(3, 2, 1, 0.95));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(212, 175, 55, 0.18);
}

.social-logo-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.home-visit-note {
  padding: 18px 20px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: rgba(3, 2, 1, 0.9);
  border-top: 1px solid var(--gold-border);
  z-index: 30;
}

.mobile-cta a {
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
  color: var(--white) !important;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(3, 2, 1, 0.85);
}

.footer-grid {
  grid-template-columns: 1fr;
  padding: 2rem 0 6rem;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-hours {
  margin-top: 6px;
  display: grid;
  gap: 2px;
}

.footer-hours p {
  margin: 0;
  color: #e8edf7 !important;
  line-height: 1.35;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: inline-flex !important;
    align-items: center;
    gap: 0.9rem;
    background: transparent;
    border: 0;
    inset: auto;
    padding: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }

  .site-nav a {
    padding: 0.25rem 0.45rem;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .before-after-images {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

  .lotto-card {
    grid-template-columns: minmax(220px, 360px) 1fr;
    align-items: center;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 20px;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-image-wrap img {
    max-height: 420px;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 800px) {
  .welcome-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .welcome-image {
    max-width: 100%;
    justify-self: center;
  }

  .welcome-image img {
    max-height: 280px !important;
  }
}

/* Compact premium polish */
.luxury-diamonds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(247, 215, 116, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(192, 192, 192, 0.7) 0 1px, transparent 2px);
  background-size: 160px 160px, 230px 230px, 310px 310px;
  background-position: 20px 40px, 80px 120px, 140px 70px;
  animation: diamondDrift 18s linear infinite;
}

@keyframes diamondDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-80px, 80px, 0); }
}

.section {
  padding-top: clamp(42px, 5vw, 78px);
  padding-bottom: clamp(42px, 5vw, 78px);
}

.section-heading {
  margin-bottom: clamp(22px, 3vw, 36px);
}

.gallery-grid,
.team-grid,
.products-grid,
.services-grid,
.contact-grid,
.review-grid,
.reviews-grid {
  gap: clamp(18px, 2.4vw, 30px);
}

.card,
.dark-card,
.team-card,
.product-card,
.review-card,
.contact-card,
.service-card,
.welcome-card,
.lotto-card {
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(18, 12, 6, 0.9), rgba(5, 3, 2, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-radius: 26px;
}

.image-card,
.gallery-card,
.team-image,
.welcome-image,
.lotto-image,
.before-after-image {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.image-card img,
.gallery-card img,
.team-card img,
.welcome-image img,
.lotto-card img,
.before-after-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: none;
  outline: none;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55), 0 0 28px rgba(212, 175, 55, 0.2);
}

.image-fusion,
.gallery-card,
.team-media,
.welcome-image,
.lotto-media,
.before-after-media {
  position: relative;
  isolation: isolate;
}

.image-fusion::before,
.gallery-card::before,
.team-media::before,
.welcome-image::before,
.lotto-media::before,
.before-after-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 215, 116, 0.32), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(192, 192, 192, 0.16), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(212, 175, 55, 0.18), transparent 34%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.gallery-card::after,
.team-media::after,
.welcome-image::after,
.lotto-media::after,
.before-after-media::after {
  content: "✦";
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 2;
  color: #f7d774;
  font-size: 18px;
  text-shadow:
    0 0 10px rgba(247, 215, 116, 0.85),
    -28px 22px 0 rgba(192, 192, 192, 0.72),
    -54px -6px 0 rgba(212, 175, 55, 0.65),
    34px 42px 0 rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-section {
  min-height: auto;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.hero-content h1 {
  margin-top: 18px;
  margin-bottom: 16px;
}

.hero-actions {
  margin-top: 22px;
  gap: 14px;
}

.hero-image-wrap img {
  max-height: 620px;
}

.welcome-card {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.welcome-image img {
  max-height: 320px !important;
}

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

.gallery-card img {
  max-height: 330px;
  object-fit: contain;
}

.image-label,
.gallery-label,
.gallery-chip {
  background: rgba(3, 2, 1, 0.78);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
}

.team-card img {
  max-height: 380px;
  object-fit: contain;
}

.team-content,
.team-card-content {
  padding-top: 20px;
}

@media (max-width: 800px) {
  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .gallery-grid,
  .team-grid,
  .products-grid,
  .services-grid,
  .contact-grid,
  .review-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card img,
  .team-card img,
  .welcome-image img,
  .lotto-card img {
    max-height: 300px !important;
  }
}

/* Final premium compact polish */
section,
.section {
  padding-top: clamp(36px, 4vw, 64px);
  padding-bottom: clamp(36px, 4vw, 64px);
}

.section-header,
.section-heading {
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.section-header h2,
.section-heading h2 {
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}

p,
li {
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.65;
}

.services-grid,
.gallery-grid,
.team-grid,
.products-grid,
.review-grid,
.reviews-grid,
.contact-grid {
  gap: clamp(16px, 2vw, 26px);
}

.card,
.service-card,
.product-card,
.team-card,
.review-card,
.contact-card,
.welcome-card,
.lotto-card,
.before-after-card {
  padding: clamp(18px, 2.4vw, 30px);
}

.card,
.dark-card,
.service-card,
.product-card,
.review-card,
.contact-card,
.team-card,
.welcome-card,
.lotto-card {
  background: linear-gradient(180deg, rgba(18, 12, 6, 0.9), rgba(5, 3, 2, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-radius: 26px;
}

.hero-section {
  min-height: auto;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.hero-content h1 {
  margin-top: 18px;
  margin-bottom: 16px;
}

.hero-actions {
  margin-top: 22px;
  gap: 14px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
}

.hero-image-wrap img {
  max-height: 620px;
}

.welcome-card {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.welcome-image img {
  max-height: 320px !important;
}

.gallery-card,
.team-media,
.welcome-image,
.lotto-media,
.before-after-media {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.gallery-card:hover,
.team-media:hover,
.welcome-image:hover,
.lotto-media:hover,
.before-after-media:hover {
  transform: translateY(-4px);
}

.btn,
button,
.contact-button {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
button:hover,
.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(247, 215, 116, 0.6), 0 14px 34px rgba(212, 175, 55, 0.24);
}

.lotto-compact-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 12, 6, 0.92), rgba(5, 3, 2, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.lotto-media img {
  width: 100%;
  max-height: 180px !important;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  display: block;
}

.lotto-content h2 {
  color: #ffffff;
  margin: 4px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.lotto-content p {
  color: #e8ddc8;
  line-height: 1.6;
}

.before-after-section {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.before-after-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(18, 12, 6, 0.92), rgba(5, 3, 2, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after-media {
  position: relative;
}

.before-after-media img,
.before-after-item img {
  width: 100%;
  max-height: 220px !important;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.before-after-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(3, 2, 1, 0.78);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.contact-area {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-actions a,
.contact-actions .btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #030201 !important;
  border: 1px solid rgba(247, 215, 116, 0.8);
}

.btn-dark {
  background: rgba(3, 2, 1, 0.72);
  color: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.55);
}

.gallery-card img {
  max-height: 320px !important;
}

.hair-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: clamp(20px, 3vw, 34px) auto;
  max-width: 520px;
  color: #d4af37;
}

.hair-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
}

.hair-divider strong {
  font-size: 22px;
  color: #f7d774;
  text-shadow: 0 0 16px rgba(247, 215, 116, 0.55);
}

.hair-ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  color: #d4af37;
  font-size: clamp(42px, 8vw, 110px);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.25));
  transform: rotate(-12deg);
  z-index: 0;
}

.hair-ornament--welcome {
  right: 1rem;
  bottom: 1rem;
}

.hair-ornament--services {
  left: 0.5rem;
  top: 2rem;
}

.welcome-card,
.services .container,
.contact .container {
  position: relative;
  z-index: 1;
}

.luxury-sparkle {
  position: absolute;
  pointer-events: none;
  color: #f7d774;
  opacity: 0.7;
  font-size: 14px;
  text-shadow: 0 0 10px rgba(247, 215, 116, 0.65), 18px 12px 0 rgba(192, 192, 192, 0.45), -22px 20px 0 rgba(212, 175, 55, 0.45);
}

@media (max-width: 850px) {
  .contact-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 700px) {
  .lotto-compact-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .lotto-media img {
    max-height: 160px !important;
  }
}

@media (max-width: 650px) {
  .before-after-images {
    grid-template-columns: 1fr;
  }

  .before-after-media img,
  .before-after-item img {
    max-height: 210px !important;
  }
}

@media (max-width: 800px) {
  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .gallery-grid,
  .team-grid,
  .products-grid,
  .services-grid,
  .contact-grid,
  .review-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card img,
  .team-card img,
  .welcome-image img,
  .lotto-card img {
    max-height: 300px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Final live polish */
.image-fallback {
  display: none !important;
}

.hero-tagline {
  display: none;
}

.hero-family {
  color: #f3ebdd !important;
  font-weight: 700;
}

.hero-actions .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.gallery-grid.salon-insights-grid {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  gap: clamp(16px, 2.2vw, 26px) !important;
  align-items: start !important;
}

.gallery-grid.salon-insights-grid .gallery-card {
  width: 100% !important;
  max-width: none !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: linear-gradient(145deg, rgba(10, 7, 3, 0.92), rgba(3, 2, 1, 0.98)) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  padding: 0 !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
}

.gallery-grid.salon-insights-grid .gallery-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 0 !important;
  background: #050302 !important;
}

.gallery-grid.salon-insights-grid .gallery-card::after,
.gallery-grid.salon-insights-grid .gallery-chip,
.gallery-grid.salon-insights-grid figcaption {
  display: none !important;
}

/* keep haircut framing readable */
.gallery-grid.salon-insights-grid img[src*="styling-1"],
.gallery-grid.salon-insights-grid .gallery-photo--schnitt {
  object-position: center 70% !important;
}

.review-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.review-cta p {
  color: #f3ebdd !important;
}

/* consistent premium cards/buttons */
.service-card,
.product-card,
.team-card,
.review-card,
.contact-card,
.welcome-card,
.lotto-card,
.before-after-card,
.hours-card {
  border-radius: 24px !important;
}

.btn,
.button,
.contact-actions a {
  border-radius: 999px !important;
}

@media (max-width: 900px) {
  .gallery-grid.salon-insights-grid {
    grid-template-columns: 1fr !important;
    width: min(100%, calc(100% - 24px)) !important;
  }

  .gallery-grid.salon-insights-grid .gallery-card {
    aspect-ratio: 16 / 10;
  }
}

/* ==================================================
   Final premium salon image refinement
   - better framing for people/hair
   - warmer color mood
   - modern card look + hover
================================================== */

/* shared premium treatment for real salon photos */
.hero-image-wrap img,
.welcome-image img,
.team-card img,
.lotto-media img,
.before-after-item img,
.gallery-grid.salon-insights-grid .gallery-card img {
  filter: saturate(1.06) contrast(1.03) brightness(1.02) sepia(0.06);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(212, 175, 55, 0.16);
}

/* hero / welcome / team: show more people and hair */
.hero-image-wrap img {
  object-fit: cover !important;
  object-position: center 42% !important;
  max-height: 620px !important;
}

.welcome-image img {
  object-fit: cover !important;
  object-position: center 50% !important;
  max-height: 340px !important;
}

.team-card {
  height: auto !important;
}

.team-media,
.team-photo-wrap {
  background: linear-gradient(160deg, rgba(8, 6, 4, 0.92), rgba(3, 2, 1, 0.98)) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  min-height: 0 !important;
}

.team-card img,
.team-media img,
.team-photo {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 18px !important;
  background: transparent !important;
}

/* lotto + before/after should stay clean and readable */
.lotto-media img,
.lotto-card img {
  object-fit: cover !important;
  object-position: center 52% !important;
  max-height: 220px !important;
}

.before-after-item img,
.before-after-media img {
  object-fit: cover !important;
  object-position: center 42% !important;
  max-height: 240px !important;
}

/* modern premium gallery cards (bigger visuals, no distortion) */
.gallery-grid.salon-insights-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
  gap: clamp(18px, 2.1vw, 28px) !important;
}

.gallery-grid.salon-insights-grid .gallery-card {
  aspect-ratio: 4 / 5 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 175, 55, 0.28) !important;
  background: linear-gradient(150deg, rgba(15, 10, 6, 0.94), rgba(3, 2, 1, 0.98)) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(212, 175, 55, 0.16) !important;
}

.gallery-grid.salon-insights-grid .gallery-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 42% !important;
  border-radius: 0 !important;
  transition: transform 320ms ease, filter 320ms ease, box-shadow 320ms ease;
}

/* image-specific focus tuning to avoid cut heads/hair */
.gallery-grid.salon-insights-grid .gallery-photo--beratung,
.gallery-grid.salon-insights-grid img[src*="beratung"] {
  object-position: center 40% !important;
}

.gallery-grid.salon-insights-grid .gallery-photo--schnitt,
.gallery-grid.salon-insights-grid img[src*="styling-1"] {
  object-position: center 58% !important;
}

.gallery-grid.salon-insights-grid .gallery-photo--farbe,
.gallery-grid.salon-insights-grid img[src*="styling-2"] {
  object-position: center 44% !important;
}

.gallery-grid.salon-insights-grid .gallery-photo--styling-3,
.gallery-grid.salon-insights-grid .gallery-photo--styling-4 {
  object-position: center 40% !important;
}

.gallery-grid.salon-insights-grid .gallery-photo--styling-5,
.gallery-grid.salon-insights-grid img[src*="hochsteck"] {
  object-position: center 36% !important;
}

/* desktop hover: premium lift and glow */
@media (hover: hover) and (pointer: fine) {
  .gallery-grid.salon-insights-grid .gallery-card:hover img,
  .team-card:hover img,
  .welcome-image:hover img,
  .hero-image-wrap:hover img {
    transform: scale(1.035);
    filter: saturate(1.1) contrast(1.04) brightness(1.03) sepia(0.08);
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.5),
      0 0 34px rgba(212, 175, 55, 0.24);
  }
}

/* mobile: keep images large but controlled */
@media (max-width: 1024px) {
  .gallery-grid.salon-insights-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  }

  .hero-image-wrap img {
    max-height: 420px !important;
  }

  .team-card img,
  .team-media img {
    max-height: none !important;
  }
}

@media (max-width: 700px) {
  .gallery-grid.salon-insights-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .gallery-grid.salon-insights-grid .gallery-card {
    aspect-ratio: 4 / 5 !important;
  }

  .hero-image-wrap img {
    max-height: 320px !important;
  }

  .welcome-image img {
    max-height: 260px !important;
  }

  .team-card img,
  .team-media img {
    max-height: none !important;
  }

  .lotto-media img,
  .lotto-card img {
    max-height: 170px !important;
  }

  .before-after-item img,
  .before-after-media img {
    max-height: 190px !important;
  }
}

/* Responsive final fix: compact mobile + laptop */
section,
.section {
  padding-top: clamp(28px, 4vw, 56px) !important;
  padding-bottom: clamp(28px, 4vw, 56px) !important;
}

.section-header,
.section-heading {
  margin-bottom: clamp(16px, 2.4vw, 28px) !important;
}

.section-header h2,
.section-title {
  margin-bottom: 8px !important;
}

.section-header p,
.section-lead {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

p {
  margin-top: 0 !important;
}

.section + .section {
  margin-top: 0 !important;
}

.container,
.section-inner,
.content-wrap,
.wrapper {
  width: min(100% - 40px, 1180px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1200px) {
  .container,
  .section-inner,
  .content-wrap,
  .wrapper {
    width: min(100% - 32px, 1040px) !important;
  }
}

.hero-section {
  min-height: auto !important;
  padding-top: clamp(42px, 5vw, 72px) !important;
  padding-bottom: clamp(36px, 5vw, 68px) !important;
  gap: clamp(24px, 4vw, 44px) !important;
}

.hero-content h1 {
  font-size: clamp(42px, 5.2vw, 72px) !important;
  margin-top: 16px !important;
  margin-bottom: 14px !important;
}

.hero-content p {
  margin-bottom: 10px;
}

.hero-actions {
  margin-top: 18px !important;
  gap: 12px !important;
}

.hero-image-wrap img {
  max-height: 520px !important;
}

.welcome-card {
  gap: clamp(20px, 3vw, 32px) !important;
  padding-top: clamp(18px, 3vw, 30px) !important;
  padding-bottom: clamp(18px, 3vw, 30px) !important;
}

.welcome-text h2 {
  margin-bottom: 10px !important;
}

.welcome-text p {
  line-height: 1.55 !important;
}

.welcome-image img {
  max-height: 280px !important;
}

.services-grid,
.products-grid,
.team-grid,
.gallery-grid,
.review-grid,
.reviews-grid,
.contact-grid,
.before-after-images {
  gap: clamp(14px, 2vw, 24px) !important;
}

.card,
.dark-card,
.service-card,
.product-card,
.team-card,
.review-card,
.contact-card,
.welcome-card,
.lotto-card,
.before-after-card {
  padding: clamp(16px, 2.3vw, 26px) !important;
}

.team-grid {
  align-items: start !important;
}

.team-card img {
  max-height: 330px !important;
}

.team-content,
.team-card-content {
  padding-top: 16px !important;
}

.team-content h3,
.team-card-content h3 {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.team-content p,
.team-card-content p {
  line-height: 1.55 !important;
  margin-bottom: 10px !important;
}

.lotto-compact-card,
.lotto-card {
  max-width: 760px !important;
  padding: 18px !important;
  gap: 20px !important;
}

.lotto-media img,
.lotto-card img {
  max-height: 150px !important;
}

.before-after-card {
  max-width: 680px !important;
  padding: 18px !important;
}

.before-after-media img,
.before-after-card img {
  max-height: 190px !important;
}

.before-after-card h3 {
  margin-top: 14px !important;
  margin-bottom: 6px !important;
}

.before-after-card p {
  margin-bottom: 0 !important;
}

.gallery-grid {
  gap: clamp(14px, 2vw, 22px) !important;
}

.gallery-card img {
  max-height: 280px !important;
}

.gallery-label,
.image-label {
  font-size: 13px !important;
  padding: 6px 11px !important;
}

.contact-area,
.contact-grid {
  gap: clamp(18px, 3vw, 30px) !important;
  align-items: start !important;
}

.contact-card {
  padding: clamp(18px, 2.5vw, 28px) !important;
}

.contact-actions {
  gap: 10px !important;
}

.contact-actions a,
.contact-actions .btn {
  min-height: 50px !important;
  padding: 0 20px !important;
}

@media (max-width: 700px) {
  section,
  .section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .container,
  .section-inner,
  .content-wrap,
  .wrapper {
    width: min(100% - 24px, 100%) !important;
  }

  .section-header,
  .section-heading {
    margin-bottom: 18px !important;
  }

  .section-header h2,
  .section-title {
    font-size: clamp(28px, 9vw, 42px) !important;
    line-height: 1.05 !important;
  }

  p,
  li {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-section {
    grid-template-columns: 1fr !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
    gap: 24px !important;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 56px) !important;
    line-height: 0.98 !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 50px !important;
  }

  .hero-image-wrap img {
    max-height: 300px !important;
  }

  .welcome-card,
  .contact-area,
  .contact-grid,
  .team-grid,
  .products-grid,
  .services-grid,
  .review-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .card,
  .dark-card,
  .service-card,
  .product-card,
  .team-card,
  .review-card,
  .contact-card,
  .welcome-card,
  .lotto-card,
  .before-after-card {
    padding: 18px !important;
  }

  .welcome-image img {
    max-height: 240px !important;
  }

  .team-card img {
    max-height: 280px !important;
  }

  .gallery-card img {
    max-height: 240px !important;
  }

  .lotto-compact-card,
  .lotto-card {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    padding: 16px !important;
    gap: 14px !important;
  }

  .lotto-media img,
  .lotto-card img {
    max-height: 130px !important;
  }

  .before-after-card {
    max-width: 100% !important;
    padding: 16px !important;
  }

  .before-after-images {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .before-after-media img {
    max-height: 180px !important;
  }

  .contact-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-actions a,
  .contact-actions .btn {
    width: 100% !important;
    min-height: 50px !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  section,
  .section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .hero-section {
    gap: 30px !important;
  }

  .hero-image-wrap img {
    max-height: 420px !important;
  }

  .team-card img {
    max-height: 300px !important;
  }

  .gallery-card img {
    max-height: 260px !important;
  }

  .lotto-media img,
  .lotto-card img {
    max-height: 150px !important;
  }
}

/* Less blocky premium editorial finish */
.card,
.service-card,
.team-card,
.product-card,
.review-card,
.contact-card,
.lotto-card,
.before-after-card,
.welcome-card {
  background: linear-gradient(145deg, rgba(12, 7, 3, 0.76), rgba(3, 2, 1, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}

.section-diagonal {
  position: relative;
}

.section-diagonal::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75), transparent);
  transform: rotate(-1deg);
  transform-origin: center;
  opacity: 0.75;
}

.services-grid .service-card:nth-child(2),
.gallery-grid .gallery-card:nth-child(2),
.team-grid .team-card:nth-child(2) {
  transform: translateY(18px);
}

.services-grid .service-card:nth-child(4),
.gallery-grid .gallery-card:nth-child(4) {
  transform: translateY(-10px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.gallery-card {
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.gallery-card:nth-child(1) { grid-column: span 5; }
.gallery-card:nth-child(2) { grid-column: span 4; margin-top: 34px; }
.gallery-card:nth-child(3) { grid-column: span 3; }
.gallery-card:nth-child(4) { grid-column: span 4; }
.gallery-card:nth-child(5) { grid-column: span 4; margin-top: -22px; }
.gallery-card:nth-child(6) { grid-column: span 4; }

.gallery-card img {
  width: 100%;
  max-height: 340px !important;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.65), 0 0 34px rgba(212, 175, 55, 0.2);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 215, 116, 0.2), transparent 34%),
    radial-gradient(circle at 88% 85%, rgba(192, 192, 192, 0.12), transparent 30%);
  filter: blur(14px);
  z-index: -1;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 3px;
  height: 140px;
  background: linear-gradient(180deg, #f7d774, transparent);
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(247, 215, 116, 0.45);
}

.hero-image-wrap {
  transform: rotate(0.4deg);
}

.hero-image-wrap::after {
  content: "✂";
  position: absolute;
  left: -22px;
  bottom: 22px;
  color: #f7d774;
  font-size: 28px;
  text-shadow: 0 0 18px rgba(247, 215, 116, 0.7);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.service-card::after {
  content: "✦";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(247, 215, 116, 0.35);
  font-size: 26px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.58), 0 0 30px rgba(212, 175, 55, 0.16);
}

.welcome-card {
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 34px;
  align-items: center;
}

.welcome-text {
  position: relative;
  padding: 28px 0 28px 30px;
  border-left: 2px solid rgba(212, 175, 55, 0.65);
}

.welcome-text::after {
  content: "✂";
  position: absolute;
  right: 8%;
  bottom: -18px;
  color: rgba(212, 175, 55, 0.18);
  font-size: 88px;
  transform: rotate(-14deg);
}

.team-card {
  overflow: visible;
}

.team-media {
  margin: -10px -10px 0;
}

.team-media img,
.team-card img {
  border-radius: 28px;
  max-height: 360px !important;
  object-fit: contain;
}

.team-content {
  padding-top: 18px;
}

.team-grid .team-card:nth-child(2) {
  margin-top: 34px;
}

.lotto-compact-card {
  max-width: 760px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.before-after-card {
  max-width: 680px;
}

.contact-area {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.contact-actions {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.contact-actions .btn {
  min-height: 54px;
  justify-content: center;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-image-wrap,
.welcome-image,
.lotto-media {
  animation: softFloat 7s ease-in-out infinite;
}

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

  .gallery-card,
  .gallery-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

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

  .contact-actions {
    position: static;
  }
}

@media (max-width: 800px) {
  .services-grid .service-card,
  .gallery-grid .gallery-card,
  .team-grid .team-card {
    transform: none !important;
    margin-top: 0 !important;
  }

  .hero-image-wrap {
    transform: none;
  }

  .hero-content::before {
    display: none;
  }

  .welcome-card {
    grid-template-columns: 1fr;
  }

  .welcome-text {
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap,
  .welcome-image,
  .lotto-media {
    animation: none !important;
  }
}

/* Salon-Einblicke: runde, kompakte Bilder */
.salon-insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(160px, 220px)) !important;
  gap: clamp(18px, 2.2vw, 30px) !important;
  justify-content: center !important;
  align-items: start !important;
  margin-top: 24px;
}

.salon-insight-circle {
  width: clamp(145px, 16vw, 220px) !important;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  background: #030201 !important;
  display: grid !important;
  place-items: center !important;
  margin-top: 0 !important;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 0 26px rgba(212, 175, 55, 0.20),
    0 18px 42px rgba(0, 0, 0, 0.55) !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.salon-insight-circle img {
  width: 88% !important;
  height: 88% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.salon-insight-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(247, 215, 116, 0.38), transparent 34%),
    radial-gradient(circle at 80% 85%, rgba(192, 192, 192, 0.16), transparent 30%);
  filter: blur(14px);
  opacity: 0.75;
}

.salon-insight-circle::after {
  content: "✦";
  position: absolute;
  top: 8px;
  right: 18px;
  color: #f7d774;
  font-size: 14px;
  text-shadow:
    0 0 10px rgba(247, 215, 116, 0.75),
    -20px 20px 0 rgba(192, 192, 192, 0.45);
  pointer-events: none;
}

  .salon-insight-circle:hover {
    transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.55),
    0 0 34px rgba(212, 175, 55, 0.28),
    0 22px 48px rgba(0, 0, 0, 0.62) !important;
}

.salon-insight-circle img,
.salon-insights-grid .gallery-card img,
.salon-insights-grid .image-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* gezielte Motivkorrektur: Schnitt-Bild */
.salon-insights-grid .gallery-photo--schnitt,
.salon-insights-grid img[alt*="Schnitt"],
.salon-insights-grid img[src*="styling-1"] {
  object-position: center 70% !important;
}

.salon-insights-grid .gallery-photo--farbe,
.salon-insights-grid .gallery-photo--styling-1,
.salon-insights-grid .gallery-photo--styling-2,
.salon-insights-grid .gallery-photo--styling-3,
.salon-insights-grid .gallery-photo--styling-4,
.salon-insights-grid .gallery-photo--styling-5,
.salon-insights-grid .gallery-photo--beratung {
  object-position: center center !important;
}

/* Labels nur in diesem Bereich entfernen */
.salon-insights-grid .gallery-chip,
.salon-insights-grid .gallery-label,
.salon-insights-grid .image-label,
.salon-insights-grid .salon-label,
.salon-insights-grid .insight-label,
.salon-insights-grid .card-label,
.salon-insights-grid .badge,
.salon-insights-grid .tag {
  display: none !important;
}

/* Kartenregeln für Kreisbereich neutralisieren */
.salon-insights-grid .gallery-card,
.salon-insights-grid .image-card {
  padding: 0 !important;
  min-height: auto !important;
  max-height: none !important;
}

.salon-insights-grid .gallery-card img,
.salon-insights-grid .image-card img {
  max-height: none !important;
}

/* dezenter Diamant */
.salon-insight-circle::after,
.salon-insights-grid .gallery-card::after,
.salon-insights-grid .image-card::after {
  content: "✦";
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(247, 215, 116, 0.85);
  font-size: 13px;
  text-shadow: 0 0 10px rgba(247, 215, 116, 0.75);
  pointer-events: none;
}

@media (max-width: 1000px) {
  .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(150px, 210px)) !important;
  }
}

@media (max-width: 700px) {
  .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr)) !important;
    gap: 16px !important;
  }

  .salon-insight-circle {
    width: min(42vw, 170px) !important;
    margin: 0 auto !important;
  }

  .salon-insight-circle img {
    width: 88% !important;
    height: 88% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .salon-insight-circle {
    transition: none !important;
  }

  .salon-insight-circle:hover {
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr)) !important;
    gap: 16px !important;
  }

  .salon-insight-circle,
  .salon-insights-grid .gallery-card,
  .salon-insights-grid .image-card {
    width: min(42vw, 170px) !important;
  }
}

@media (max-width: 380px) {
  .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Salon insights hard final override (must stay at end) */
#galerie .salon-insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(160px, 220px)) !important;
  gap: clamp(18px, 2.2vw, 30px) !important;
  justify-content: center !important;
  align-items: start !important;
  margin-top: 24px !important;
}

#galerie .salon-insight-circle,
#galerie .salon-insights-grid .gallery-card,
#galerie .salon-insights-grid .image-card {
  width: clamp(145px, 16vw, 220px) !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  margin: 0 auto !important;
  background: #030201 !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  padding: 0 !important;
  min-height: auto !important;
  max-height: none !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.10),
    0 0 24px rgba(212, 175, 55, 0.20),
    0 16px 38px rgba(0, 0, 0, 0.55) !important;
}

#galerie .salon-insight-circle img,
#galerie .salon-insights-grid .gallery-card img,
#galerie .salon-insights-grid .image-card img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  display: block !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* label cleanup only in salon-insights circle area */
#galerie .salon-insights-grid .gallery-chip,
#galerie .salon-insights-grid .gallery-label,
#galerie .salon-insights-grid .image-label,
#galerie .salon-insights-grid .salon-label,
#galerie .salon-insights-grid .insight-label,
#galerie .salon-insights-grid .card-label,
#galerie .salon-insights-grid .badge,
#galerie .salon-insights-grid .tag {
  display: none !important;
}

/* motif tuning */
#galerie .salon-insights-grid .gallery-photo--schnitt,
#galerie .salon-insights-grid img[alt*="Schnitt"],
#galerie .salon-insights-grid img[src*="styling-1"] {
  object-position: center 70% !important;
}

#galerie .salon-insights-grid .gallery-photo--beratung,
#galerie .salon-insights-grid .gallery-photo--farbe,
#galerie .salon-insights-grid .gallery-photo--styling-2,
#galerie .salon-insights-grid .gallery-photo--styling-3,
#galerie .salon-insights-grid .gallery-photo--styling-4,
#galerie .salon-insights-grid .gallery-photo--styling-5 {
  object-position: center center !important;
}

/* subtle sparkle only */
#galerie .salon-insight-circle::after,
#galerie .salon-insights-grid .gallery-card::after,
#galerie .salon-insights-grid .image-card::after {
  content: "✦" !important;
  position: absolute !important;
  top: 10px !important;
  right: 14px !important;
  color: rgba(247, 215, 116, 0.85) !important;
  font-size: 13px !important;
  text-shadow: 0 0 10px rgba(247, 215, 116, 0.75) !important;
  pointer-events: none !important;
}

@media (max-width: 1000px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(150px, 210px)) !important;
  }
}

@media (max-width: 560px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr)) !important;
    gap: 16px !important;
  }

  #galerie .salon-insight-circle,
  #galerie .salon-insights-grid .gallery-card,
  #galerie .salon-insights-grid .image-card {
    width: min(42vw, 170px) !important;
  }
}

@media (max-width: 380px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final visibility fixes: before/after, mobile dust, compact why-cards */
#vorher-nachher .before-after-card {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: clamp(18px, 2.4vw, 26px) !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(10, 7, 3, 0.96), rgba(2, 2, 2, 0.98)) !important;
  box-shadow:
    0 0 34px rgba(212, 175, 55, 0.12),
    0 22px 55px rgba(0, 0, 0, 0.55) !important;
}

#vorher-nachher .before-after-images {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
  align-items: start !important;
}

#vorher-nachher .before-after-item,
#vorher-nachher .before-after-media {
  position: relative !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: #050402 !important;
  min-height: 0 !important;
}

#vorher-nachher .before-after-item img,
#vorher-nachher .before-after-media img {
  width: 100% !important;
  height: clamp(160px, 20vw, 230px) !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: #050402 !important;
}

#vorher-nachher .before-after-label {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: rgba(3, 2, 1, 0.86) !important;
  color: #f7d774 !important;
  border: 1px solid rgba(247, 215, 116, 0.75) !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.22) !important;
}

#vorher-nachher .before-after-text h3,
#vorher-nachher .before-after-text p {
  color: #ffffff !important;
}

#vorher-nachher .before-after-text h3 {
  margin: 16px 0 6px !important;
}

#vorher-nachher .before-after-text p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Mobile gold dust safety */
@media (max-width: 760px) {
  .gold-dust-layer,
  .gold-dust-layer--near,
  .gold-dust-layer--far {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .gold-dust-layer::before {
    opacity: 0.48 !important;
    background-size: 90px 90px, 150px 150px !important;
  }
}

/* Why cards compact premium on mobile */
.why-grid,
.benefits-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.why-card,
.benefit-card,
.reason-card {
  padding: clamp(16px, 2vw, 24px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  background:
    radial-gradient(circle at 15% 12%, rgba(212, 175, 55, 0.10), transparent 32%),
    linear-gradient(145deg, rgba(12, 8, 3, 0.92), rgba(2, 2, 2, 0.96)) !important;
  min-height: auto !important;
}

.why-card h3,
.benefit-card h3,
.reason-card h3 {
  color: #ffffff !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.1 !important;
  margin: 0 0 10px !important;
}

.why-card p,
.benefit-card p,
.reason-card p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* Mobile header spacing safety */
@media (max-width: 760px) {
  header,
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  main {
    padding-top: 0;
  }

  section:first-of-type {
    padding-top: 28px !important;
  }
}

@media (max-width: 760px) {
  .why-grid,
  .benefits-grid,
  .reason-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .why-card,
  .benefit-card,
  .reason-card {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .why-card h3,
  .benefit-card h3,
  .reason-card h3 {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }

  .why-card p,
  .benefit-card p,
  .reason-card p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
}

@media (min-width: 430px) and (max-width: 760px) {
  .why-grid,
  .benefits-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #vorher-nachher .before-after-card {
    max-width: calc(100% - 24px) !important;
    padding: 16px !important;
    border-radius: 24px !important;
  }

  #vorher-nachher .before-after-images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  #vorher-nachher .before-after-item img,
  #vorher-nachher .before-after-media img {
    height: 150px !important;
  }

  #vorher-nachher .before-after-label {
    font-size: 12px !important;
    padding: 5px 9px !important;
    min-height: 26px !important;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Final hard fix: salon circles + single mobile menu */
#galerie .salon-insights-grid img,
#galerie .round-gallery img,
#galerie .salon-circle-gallery img,
#galerie .salon-insight-circle img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

/* Individual image framing */
#galerie .salon-insights-grid .gallery-photo--schnitt,
#galerie .salon-insights-grid img[src*="schnitt"],
#galerie .salon-insights-grid img[src*="haircut"],
#galerie .salon-insights-grid img[src*="styling-2"] {
  object-position: center 85% !important;
}

#galerie .salon-insights-grid .gallery-photo--farbe,
#galerie .salon-insights-grid img[src*="farbe"],
#galerie .salon-insights-grid img[src*="color"],
#galerie .salon-insights-grid img[src*="styling-3"] {
  object-position: center center !important;
}

#galerie .salon-insights-grid .gallery-photo--beratung,
#galerie .salon-insights-grid img[src*="beratung"],
#galerie .salon-insights-grid img[src*="team"],
#galerie .salon-insights-grid img[src*="styling-1"] {
  object-position: center center !important;
}

#galerie .salon-insights-grid img[src*="hochsteck"],
#galerie .salon-insights-grid img[src*="styling-4"],
#galerie .salon-insights-grid img[src*="styling-5"] {
  object-position: center center !important;
}

/* Remove all circle labels in this area only */
#galerie .salon-insights-grid .badge,
#galerie .salon-insights-grid .tag,
#galerie .salon-insights-grid .gallery-label,
#galerie .salon-insights-grid .image-label,
#galerie .salon-insights-grid .card-label,
#galerie .salon-insights-grid figcaption,
#galerie .salon-insights-grid .gallery-chip {
  display: none !important;
}

/* One menu behavior on mobile */
.desktop-nav {
  display: flex;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    background: rgba(5, 3, 1, 0.88);
    color: #f7d774;
    font-size: 24px;
    z-index: 1001;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height, 72px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 22px;
    background: rgba(3, 2, 1, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
    z-index: 1000;
  }

  .mobile-nav.is-open {
    display: flex !important;
  }

  .mobile-nav a {
    color: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    text-decoration: none;
    font-weight: 800;
  }

  header,
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  section:first-of-type {
    padding-top: 28px !important;
  }
}

/* Final polish: salon circles side-by-side + mobile M menu button */
#galerie .salon-insights-grid,
#galerie .round-gallery,
#galerie .salon-circle-gallery,
#galerie .insights-grid,
#galerie .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(160px, 220px)) !important;
  gap: clamp(22px, 3vw, 38px) !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (min-width: 1000px) {
  #galerie .salon-insights-grid,
  #galerie .round-gallery,
  #galerie .salon-circle-gallery,
  #galerie .insights-grid,
  #galerie .gallery-grid {
    grid-template-columns: repeat(3, minmax(170px, 230px)) !important;
  }
}

@media (max-width: 999px) {
  #galerie .salon-insights-grid,
  #galerie .round-gallery,
  #galerie .salon-circle-gallery,
  #galerie .insights-grid,
  #galerie .gallery-grid {
    grid-template-columns: repeat(2, minmax(140px, 190px)) !important;
  }
}

@media (max-width: 420px) {
  #galerie .salon-insights-grid,
  #galerie .round-gallery,
  #galerie .salon-circle-gallery,
  #galerie .insights-grid,
  #galerie .gallery-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
    gap: 16px !important;
  }
}

#galerie .salon-insight-circle,
#galerie .round-gallery-item,
#galerie .salon-circle-card,
#galerie .insight-circle,
#galerie .salon-insights-grid .gallery-card,
#galerie .salon-insights-grid .image-card {
  width: clamp(155px, 15vw, 220px) !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  background: #050302 !important;
  border: 1px solid rgba(212, 175, 55, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.12),
    0 0 28px rgba(212, 175, 55, 0.25),
    0 18px 42px rgba(0, 0, 0, 0.55) !important;
}

#galerie .salon-insights-grid img,
#galerie .round-gallery img,
#galerie .salon-circle-gallery img,
#galerie .insights-grid img,
#galerie .gallery-grid img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

/* Problem image: push framing down so hair/head is visible */
#galerie .salon-insights-grid img[src*="schnitt"],
#galerie .salon-insights-grid img[src*="Schnitt"],
#galerie .salon-insights-grid img[src*="haircut"],
#galerie .salon-insights-grid img[src*="styling-2"],
#galerie .round-gallery img[src*="schnitt"],
#galerie .round-gallery img[src*="Schnitt"],
#galerie .round-gallery img[src*="haircut"],
#galerie .round-gallery img[src*="styling-2"],
#galerie .salon-circle-gallery img[src*="schnitt"],
#galerie .salon-circle-gallery img[src*="Schnitt"],
#galerie .salon-circle-gallery img[src*="haircut"],
#galerie .salon-circle-gallery img[src*="styling-2"],
#galerie .salon-insights-grid .gallery-photo--schnitt,
#galerie .salon-insights-grid img[src*="styling-1"] {
  object-position: center 95% !important;
}

/* Mobile menu button with clear M */
.mobile-menu-toggle .menu-letter {
  display: none;
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(247, 215, 116, 0.85) !important;
    background:
      radial-gradient(circle at 35% 25%, rgba(247, 215, 116, 0.22), transparent 36%),
      rgba(3, 2, 1, 0.96) !important;
    color: #f7d774 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    font-family: inherit !important;
    box-shadow:
      0 0 0 1px rgba(247, 215, 116, 0.12),
      0 0 22px rgba(212, 175, 55, 0.38),
      0 10px 24px rgba(0, 0, 0, 0.45) !important;
    z-index: 1001 !important;
  }

  .mobile-menu-toggle .menu-letter {
    display: block !important;
    color: #f7d774 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    transform: translateY(-1px);
  }

  .mobile-menu-toggle svg,
  .mobile-menu-toggle .hamburger,
  .mobile-menu-toggle .lines {
    display: none !important;
  }
}

/* Final salon-insights flow after removing faulty circle */
#galerie .salon-insights-grid,
#galerie .round-gallery,
#galerie .salon-circle-gallery,
#galerie .insights-grid,
#galerie .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(150px, 220px)) !important;
  gap: clamp(18px, 2.5vw, 34px) !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 520px) {
  #galerie .salon-insights-grid,
  #galerie .round-gallery,
  #galerie .salon-circle-gallery,
  #galerie .insights-grid,
  #galerie .gallery-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
    gap: 16px !important;
  }
}

/* Final one-fix: opening hours formatting */
.hours-list {
  display: grid;
  gap: 0;
  width: 100%;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

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

.hours-day {
  color: #f3ebdd;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hours-times {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: #f7d774;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.2;
  white-space: nowrap;
}

.hours-times span {
  display: block;
}

@media (max-width: 520px) {
  .hours-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .hours-times {
    align-items: flex-start;
    white-space: normal;
  }
}

/* FINAL one-fix: salon insights must be side-by-side on laptop/desktop */
.salon-insights-grid {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(180px, 240px)) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: clamp(22px, 3vw, 42px) !important;
}

@media (min-width: 1200px) {
  .salon-insights-grid {
    grid-template-columns: repeat(4, minmax(170px, 220px)) !important;
  }
}

@media (max-width: 1023px) {
  .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(145px, 200px)) !important;
    gap: 22px !important;
  }
}

@media (max-width: 430px) {
  .salon-insights-grid {
    width: min(100%, calc(100% - 24px)) !important;
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
    gap: 16px !important;
  }
}

section .salon-insights-grid,
main .salon-insights-grid {
  display: grid !important;
}

.salon-insights-grid > * {
  width: clamp(150px, 18vw, 220px) !important;
  max-width: 220px !important;
  justify-self: center !important;
}

.salon-insights-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.salon-insights-grid figure,
.salon-insights-grid .circle,
.salon-insights-grid .gallery-item,
.salon-insights-grid .insight-item,
.salon-insights-grid .round-image {
  width: clamp(150px, 18vw, 220px) !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  margin: 0 !important;
}

/* Release polish: premium clarity without structural rebuild */
:root {
  --release-black: #030201;
  --release-black-soft: #080604;
  --release-gold: #d4af37;
  --release-gold-light: #f7d774;
  --release-white: #ffffff;
  --release-text: #f3ebdd;
  --release-dark-on-gold: #0b0703;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--release-black);
  color: var(--release-text);
  font-family: var(--font-body);
}

h1,
h2,
h3,
.section-title {
  font-family: var(--font-head);
  color: var(--release-white);
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

section,
.section {
  padding-top: clamp(28px, 4vw, 56px) !important;
  padding-bottom: clamp(28px, 4vw, 56px) !important;
}

.section-heading {
  margin-bottom: clamp(16px, 2.4vw, 28px) !important;
}

.section-heading h2 {
  margin-bottom: 8px !important;
}

.hero-section {
  min-height: auto !important;
  padding-top: clamp(42px, 5vw, 72px) !important;
  padding-bottom: clamp(36px, 5vw, 68px) !important;
}

.hero-content p {
  margin-bottom: 10px;
}

.hero-actions {
  margin-top: 18px !important;
  gap: 12px !important;
}

.btn,
.button {
  font-weight: 800;
}

.btn-gold,
.button-primary,
.hero-actions .btn {
  color: var(--release-dark-on-gold) !important;
}

.btn-dark,
.button-ghost {
  color: var(--release-white) !important;
}

.services-grid,
.products-grid,
.team-grid,
.gallery-grid,
.reviews-grid,
.contact-grid {
  gap: clamp(14px, 2vw, 24px) !important;
}

.service-card,
.product-card,
.team-card,
.review-card,
.contact-card,
.welcome-card,
.lotto-card,
.before-after-card {
  padding: clamp(16px, 2.3vw, 26px) !important;
}

.team-card img {
  max-height: 330px !important;
}

.gallery-card img {
  max-height: 280px !important;
}

.lotto-media img,
.lotto-card img {
  max-height: 150px !important;
}

.before-after-item img,
.before-after-media img {
  max-height: 190px !important;
}

/* Menu reliability: one desktop nav, one mobile nav */

/* ==================================================
   FINAL TEAM PHOTO VISIBILITY FIX
   Ensure full original team photos are visible.
================================================== */
.team-card {
  height: auto !important;
}

.team-media,
.team-photo-wrap {
  background: linear-gradient(160deg, rgba(8, 6, 4, 0.92), rgba(3, 2, 1, 0.98)) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  min-height: 0 !important;
}

.team-card img,
.team-media img,
.team-photo {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 18px !important;
  background: transparent !important;
}

@media (max-width: 1100px) {
  .team-card img,
  .team-media img,
  .team-photo {
    max-height: none !important;
  }
}

/* ==================================================
   PREMIUM TEAM SECTION REWORK
================================================== */
#team .team-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr) !important;
  gap: clamp(16px, 2.2vw, 30px) !important;
  align-items: stretch !important;
}

#team .team-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: clamp(18px, 2vw, 26px) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  border-radius: 28px !important;
  background: linear-gradient(170deg, rgba(11, 8, 5, 0.95), rgba(2, 2, 2, 0.98)) !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.14),
    0 20px 48px rgba(0, 0, 0, 0.56),
    0 0 24px rgba(212, 175, 55, 0.15) !important;
  transition: transform 260ms ease, box-shadow 260ms ease !important;
}

#team .team-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.25),
    0 24px 54px rgba(0, 0, 0, 0.62),
    0 0 30px rgba(212, 175, 55, 0.24) !important;
}

#team .team-photo-wrap {
  width: 100% !important;
  min-height: clamp(300px, 33vw, 430px) !important;
  display: grid !important;
  place-items: center !important;
  padding: clamp(10px, 1.2vw, 16px) !important;
  border-radius: 22px !important;
  background: radial-gradient(circle at 20% 18%, rgba(247, 215, 116, 0.12), transparent 40%), #070503 !important;
}

#team .team-card img,
#team .team-media img,
#team .team-photo {
  width: 100% !important;
  height: 100% !important;
  max-height: clamp(280px, 32vw, 420px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 18px !important;
  background: transparent !important;
}

#team .team-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding-top: 16px !important;
}

#team .team-content h3 {
  margin: 0 !important;
  font-size: clamp(30px, 3.2vw, 42px) !important;
  color: #fff !important;
  letter-spacing: -0.01em !important;
}

#team .team-role {
  margin: 0 !important;
  color: #f7d774 !important;
  font-weight: 800 !important;
  font-size: clamp(14px, 1vw, 17px) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

#team .team-center-symbol {
  align-self: center !important;
  justify-self: center !important;
  height: 100% !important;
  min-height: clamp(420px, 44vw, 560px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  position: relative !important;
}

#team .team-center-symbol::before {
  content: "" !important;
  position: absolute !important;
  inset: 24px 50% 24px calc(50% - 1px) !important;
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.08), rgba(212, 175, 55, 0.86), rgba(247, 215, 116, 0.08)) !important;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.4) !important;
}

#team .team-center-icon {
  position: relative !important;
  z-index: 1 !important;
  color: #f7d774 !important;
  text-shadow: 0 0 16px rgba(247, 215, 116, 0.56), 0 0 32px rgba(212, 175, 55, 0.32) !important;
  line-height: 1 !important;
}

#team .team-center-icon--comb {
  font-size: 26px !important;
}

#team .team-center-icon--bolt {
  font-size: 42px !important;
}

#team .team-center-icon--scissors {
  font-size: 27px !important;
}

/* single premium emblem (comb + bolt + scissors) */
#team .team-center-emblem {
  width: clamp(68px, 5.6vw, 98px) !important;
  height: clamp(280px, 28vw, 420px) !important;
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  align-items: center !important;
  justify-items: center !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 12%, rgba(247, 215, 116, 0.16), transparent 44%),
    radial-gradient(circle at 50% 90%, rgba(247, 215, 116, 0.12), transparent 42%) !important;
  filter: drop-shadow(0 0 16px rgba(247, 215, 116, 0.44)) drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45)) !important;
  animation: teamEmblemPulse 4.8s ease-in-out infinite !important;
}

#team .team-center-emblem::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% calc(50% - 1px) 8% !important;
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.2), rgba(212, 175, 55, 0.95), rgba(247, 215, 116, 0.2)) !important;
  box-shadow: 0 0 18px rgba(247, 215, 116, 0.52), 0 0 42px rgba(212, 175, 55, 0.24) !important;
  border-radius: 999px !important;
}

#team .emblem-comb {
  position: relative !important;
  width: clamp(62px, 5vw, 86px) !important;
  height: clamp(28px, 2.4vw, 38px) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(247, 215, 116, 0.72) !important;
  background: linear-gradient(145deg, #f8df8e 0%, #d4af37 38%, #b88925 70%, #f7d774 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(90, 58, 10, 0.25),
    0 0 12px rgba(247, 215, 116, 0.55) !important;
  z-index: 2 !important;
}

#team .emblem-comb::after {
  content: "" !important;
  position: absolute !important;
  left: 10%;
  right: 10%;
  bottom: -7px;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(133, 95, 24, 0.95) 0 2px,
    rgba(247, 215, 116, 0.92) 2px 4px
  ) !important;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 0 8px rgba(247, 215, 116, 0.35) !important;
}

#team .emblem-bolt {
  width: clamp(42px, 3.8vw, 58px) !important;
  height: clamp(150px, 16vw, 230px) !important;
  z-index: 2 !important;
  background: linear-gradient(160deg, #fef2b6 0%, #f7d774 16%, #e1b64a 42%, #b07a17 72%, #f7d774 100%) !important;
  clip-path: polygon(66% 0, 36% 40%, 61% 40%, 27% 100%, 45% 58%, 21% 58%) !important;
  filter: drop-shadow(0 0 12px rgba(247, 215, 116, 0.72)) drop-shadow(0 0 24px rgba(212, 175, 55, 0.32)) !important;
  position: relative !important;
}

#team .emblem-bolt::after {
  content: "" !important;
  position: absolute !important;
  inset: 8% 22% !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)) !important;
  clip-path: polygon(68% 0, 44% 34%, 64% 34%, 34% 100%, 47% 62%, 28% 62%) !important;
  opacity: 0.7 !important;
}

#team .emblem-scissors {
  width: clamp(62px, 5vw, 86px) !important;
  height: clamp(38px, 3vw, 50px) !important;
  position: relative !important;
  z-index: 2 !important;
}

#team .emblem-scissors i {
  position: absolute !important;
  top: 6px;
  width: 30px;
  height: 16px;
  border: 2px solid rgba(247, 215, 116, 0.9) !important;
  border-radius: 999px !important;
  box-shadow: inset 0 0 8px rgba(247, 215, 116, 0.2), 0 0 10px rgba(247, 215, 116, 0.4) !important;
}

#team .emblem-scissors i:first-child {
  left: 2px;
  transform: rotate(-18deg);
}

#team .emblem-scissors i:last-child {
  right: 2px;
  transform: rotate(18deg);
}

#team .emblem-scissors b {
  position: absolute !important;
  left: 50%;
  top: 17px;
  width: 42px;
  height: 2px;
  transform: translateX(-50%) rotate(-26deg);
  background: linear-gradient(90deg, #f7d774, #b88925) !important;
  box-shadow: 0 0 10px rgba(247, 215, 116, 0.45) !important;
}

@keyframes teamEmblemPulse {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 14px rgba(247, 215, 116, 0.42)) drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
  }
  50% {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 22px rgba(247, 215, 116, 0.6)) drop-shadow(0 16px 26px rgba(0, 0, 0, 0.5));
  }
}

@media (max-width: 900px) {
  #team .team-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #team .team-center-symbol {
    min-height: auto !important;
    flex-direction: row !important;
    gap: 10px !important;
    padding: 6px 0 !important;
  }

  #team .team-center-symbol::before {
    inset: 50% 22% calc(50% - 1px) 22% !important;
    height: 1px !important;
    width: auto !important;
    background: linear-gradient(90deg, rgba(247, 215, 116, 0.08), rgba(212, 175, 55, 0.86), rgba(247, 215, 116, 0.08)) !important;
  }

  #team .team-center-icon--comb {
    font-size: 20px !important;
  }

  #team .team-center-icon--bolt {
    font-size: 28px !important;
  }

  #team .team-center-icon--scissors {
    font-size: 22px !important;
  }

  #team .team-center-emblem {
    width: clamp(56px, 18vw, 72px) !important;
    height: clamp(110px, 30vw, 150px) !important;
    grid-template-rows: auto 1fr auto !important;
  }

  #team .team-center-emblem::before {
    inset: 16% calc(50% - 1px) 16% !important;
  }

  #team .emblem-comb {
    width: clamp(44px, 14vw, 62px) !important;
    height: clamp(18px, 5.5vw, 26px) !important;
  }

  #team .emblem-bolt {
    width: clamp(28px, 8vw, 38px) !important;
    height: clamp(58px, 16vw, 84px) !important;
  }

  #team .emblem-scissors {
    width: clamp(44px, 14vw, 60px) !important;
    height: clamp(24px, 7vw, 32px) !important;
  }

  #team .emblem-scissors i {
    width: 20px;
    height: 10px;
    top: 5px;
  }

  #team .emblem-scissors b {
    width: 30px;
    top: 13px;
  }

  #team .team-photo-wrap {
    min-height: clamp(240px, 52vw, 330px) !important;
  }

  #team .team-card img,
  #team .team-media img,
  #team .team-photo {
    max-height: clamp(230px, 48vw, 320px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #team .team-center-emblem {
    animation: none !important;
  }
}
@media (min-width: 821px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-nav.mobile-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.95rem !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    inset: auto !important;
    box-shadow: none !important;
  }

  .site-nav.mobile-nav a {
    border: 0 !important;
    padding: 0.25rem 0.45rem !important;
    color: var(--release-white) !important;
  }
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-flex !important;
  }

  .site-nav.mobile-nav {
    display: none !important;
  }

  .site-nav.mobile-nav.is-open {
    display: flex !important;
  }
}

.premium-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.16), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(247, 215, 116, 0.1), transparent 26%),
    linear-gradient(180deg, #030201 0%, #080604 55%, #030201 100%);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.premium-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
  animation: splashContentIn 1100ms ease both;
}

.premium-splash .splash-logo {
  width: clamp(96px, 18vw, 170px);
  height: auto;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
  animation: splashLogoGlow 1800ms ease-in-out infinite alternate;
}

.splash-line {
  width: 0;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, #f7d774, #d4af37, transparent);
  box-shadow: 0 0 18px rgba(247, 215, 116, 0.55);
  animation: splashLineIn 900ms ease 300ms forwards;
}

.splash-eyebrow {
  margin: 0 0 8px;
  color: #f7d774;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

.premium-splash h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.18), 0 18px 42px rgba(0, 0, 0, 0.65);
}

.splash-subline {
  margin: 14px 0 0;
  color: #e8ddc8;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.03em;
}

.splash-gold-dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.62;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(247, 215, 116, 0.95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(212, 175, 55, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px);
  background-size: 120px 120px, 190px 190px, 280px 280px;
  background-position: 20px 40px, 90px 120px, 160px 70px;
  animation: splashDustMove 7s linear infinite;
}

@keyframes splashContentIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes splashLineIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: min(320px, 72vw);
    opacity: 1;
  }
}

@keyframes splashLogoGlow {
  from {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.22)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
  }
  to {
    filter: drop-shadow(0 0 26px rgba(247, 215, 116, 0.42)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
  }
}

@keyframes splashDustMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-90px, 90px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .premium-splash,
  .splash-content,
  .splash-logo,
  .splash-line,
  .splash-gold-dust {
    animation: none !important;
    transition: none !important;
  }
}

/* ==================================================
   FINAL PREMIUM OVERRIDE: SALON INSIGHTS GALLERY
================================================== */
#galerie .salon-insights-wrap {
  position: relative !important;
  width: min(1160px, calc(100% - 28px)) !important;
  margin: 0 auto !important;
  padding: 18px 0 !important;
}

#galerie .salon-insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(170px, 220px)) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: clamp(18px, 2.2vw, 30px) !important;
}

#galerie .salon-insights-grid > .salon-insight-circle {
  width: clamp(165px, 16vw, 220px) !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid rgba(212, 175, 55, 0.56) !important;
  background: #050302 !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.12),
    0 0 24px rgba(212, 175, 55, 0.22),
    0 16px 42px rgba(0, 0, 0, 0.58) !important;
  transition: transform 280ms ease, box-shadow 280ms ease !important;
}

#galerie .salon-insights-grid > .salon-insight-circle:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.25),
    0 0 34px rgba(212, 175, 55, 0.3),
    0 20px 48px rgba(0, 0, 0, 0.62) !important;
}

#galerie .salon-insights-grid > .salon-insight-circle img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 50% !important;
  transform: none !important;
}

#galerie .salon-insights-grid .gallery-chip,
#galerie .salon-insights-grid .gallery-label,
#galerie .salon-insights-grid .image-label,
#galerie .salon-insights-grid .badge,
#galerie .salon-insights-grid .tag,
#galerie .salon-insights-grid figcaption {
  display: none !important;
}

#galerie .salon-insights-bolt {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: clamp(42px, 3.7vw, 62px) !important;
  height: clamp(110px, 10vw, 160px) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
  pointer-events: none !important;
  clip-path: polygon(66% 0, 36% 40%, 62% 40%, 29% 100%, 46% 58%, 22% 58%) !important;
  background: linear-gradient(160deg, #fff2ba 0%, #f7d774 16%, #d4af37 44%, #9a6815 73%, #f5ce65 100%) !important;
  filter: drop-shadow(0 0 12px rgba(247, 215, 116, 0.72)) drop-shadow(0 0 26px rgba(212, 175, 55, 0.36)) !important;
  animation: salonBoltPulse 4.8s ease-in-out infinite !important;
}

#galerie .salon-insights-bolt::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% 22% !important;
  clip-path: polygon(68% 0, 44% 34%, 65% 34%, 35% 100%, 48% 62%, 29% 62%) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02)) !important;
}

#galerie .salon-insights-bolt::after {
  content: "" !important;
  position: absolute !important;
  inset: -26px -22px !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 215, 116, 0.32), transparent 48%),
    radial-gradient(circle at 38% 65%, rgba(212, 175, 55, 0.22), transparent 50%) !important;
  z-index: -1 !important;
}

#galerie .salon-insights-grid img[src*="styling-2"],
#galerie .salon-insights-grid img[src*="schnitt"],
#galerie .salon-insights-grid img[src*="haircut"] {
  object-position: center 78% !important;
}

#galerie .salon-insights-grid img[src*="beratung"] {
  object-position: center 44% !important;
}

#galerie .salon-insights-grid img[src*="styling-3"],
#galerie .salon-insights-grid img[src*="styling-4"],
#galerie .salon-insights-grid img[src*="styling-5"] {
  object-position: center 42% !important;
}

@keyframes salonBoltPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 10px rgba(247, 215, 116, 0.6)) drop-shadow(0 0 22px rgba(212, 175, 55, 0.3));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
    filter: drop-shadow(0 0 16px rgba(247, 215, 116, 0.84)) drop-shadow(0 0 28px rgba(212, 175, 55, 0.48));
  }
}

@media (max-width: 1024px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(145px, 200px)) !important;
  }

  #galerie .salon-insights-bolt {
    width: clamp(34px, 5vw, 46px) !important;
    height: clamp(88px, 13vw, 120px) !important;
  }
}

@media (max-width: 680px) {
  #galerie .salon-insights-wrap {
    width: min(100%, calc(100% - 22px)) !important;
  }

  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(126px, 1fr)) !important;
    gap: 14px !important;
  }

  #galerie .salon-insights-grid > .salon-insight-circle {
    width: min(42vw, 172px) !important;
  }

  #galerie .salon-insights-bolt {
    position: static !important;
    margin: 2px auto 14px !important;
    transform: none !important;
    width: 34px !important;
    height: 86px !important;
    display: block !important;
  }
}

@media (max-width: 390px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #galerie .salon-insights-bolt {
    animation: none !important;
  }
  #galerie .salon-insights-grid > .salon-insight-circle {
    transition: none !important;
  }
  #galerie .salon-insights-grid > .salon-insight-circle:hover {
    transform: none !important;
  }
}

/* ==================================================
   HARD DESKTOP/LAPTOP LAYOUT FIX: SALON INSIGHTS
================================================== */
@media (min-width: 900px) {
  #galerie .salon-insights-wrap {
    width: min(1200px, calc(100% - 40px)) !important;
    margin: 0 auto !important;
  }

  #galerie .salon-insights-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    flex-wrap: wrap !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }

  #galerie .salon-insights-grid > .salon-insight-circle,
  #galerie .salon-insights-grid > .gallery-card {
    flex: 0 1 220px !important;
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    min-width: 220px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }

  #galerie .salon-insights-grid > .salon-insight-circle img,
  #galerie .salon-insights-grid > .gallery-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
  }

  #galerie .salon-insights-bolt {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
  }
}

@media (min-width: 900px) and (max-width: 1150px) {
  #galerie .salon-insights-grid {
    max-width: 760px !important;
  }
}

@media (max-width: 899px) {
  #galerie .salon-insights-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(126px, 1fr)) !important;
    justify-content: center !important;
    gap: 14px !important;
  }
}

@media (max-width: 430px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==================================================
   FINAL STATIC GOLD PARTICLE FIX (NO ANIMATION)
================================================== */

/* 1) Remove animated gold dust layers */
.gold-dust-layer,
.gold-dust-layer--near,
.gold-dust-layer--far,
.luxury-diamonds {
  animation: none !important;
  transform: none !important;
}

.gold-dust-layer::before,
.gold-dust-layer--near::before,
.gold-dust-layer--far::before,
.luxury-diamonds::before,
.luxury-diamonds::after {
  animation: none !important;
}

/* keep old animated overlays from dominating visuals */
.gold-dust-layer,
.gold-dust-layer--near,
.gold-dust-layer--far,
.luxury-diamonds {
  display: none !important;
}

/* 2) Static subtle global particles */
body {
  background-color: #030201 !important;
  color: #ffffff;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(212, 175, 55, 0.34) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(247, 215, 116, 0.22) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 0.8px, transparent 1.4px);
  background-size:
    180px 180px,
    260px 260px,
    340px 340px;
  background-position:
    20px 30px,
    90px 120px,
    140px 60px;
  opacity: 0.55;
  animation: none !important;
}

/* 3) Keep content above particle layer */
main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

/* 4) Calm down "Einblicke in unseren Salon" area */
#galerie,
.gallery-section,
.salon-insights,
.insights-section {
  background: transparent !important;
}

#galerie::before,
#galerie::after,
.gallery-section::before,
.gallery-section::after,
.salon-insights::before,
.salon-insights::after,
.insights-section::before,
.insights-section::after,
#galerie .salon-insights-wrap::before,
#galerie .salon-insights-wrap::after {
  animation: none !important;
}

@media (max-width: 520px) {
  body::before {
    opacity: 0.38;
    background-size:
      150px 150px,
      220px 220px,
      300px 300px;
  }
}

/* ==================================================
   FINAL PREMIUM GALLERY REWORK
================================================== */
#galerie .gallery-split {
  display: grid !important;
  gap: clamp(30px, 4vw, 52px) !important;
}

#galerie .gallery-group-head h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
}

#galerie .gallery-group-head p {
  margin: 0 0 18px !important;
  color: #e8ddc8 !important;
}

#galerie .gallery-premium-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 28px) !important;
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
}

#galerie .gallery-premium-grid .gallery-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #050403 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45) !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  aspect-ratio: 4 / 5 !important;
}

#galerie .gallery-premium-grid .gallery-card--lg {
  grid-column: span 2 !important;
  aspect-ratio: 16 / 10 !important;
}

#galerie .gallery-premium-grid .gallery-card--tall {
  aspect-ratio: 3 / 4 !important;
}

#galerie .gallery-premium-grid .gallery-card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 240px !important;
  max-height: 420px !important;
  object-fit: cover !important;
  object-position: center 46% !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform 0.6s ease, filter 0.6s ease !important;
}

#galerie .gallery-premium-grid .gallery-card:hover img {
  transform: scale(1.045) !important;
  filter: brightness(1.08) !important;
}

#galerie .gallery-premium-grid .gallery-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05)) !important;
  pointer-events: none !important;
}

#galerie .gallery-premium-grid .gallery-caption {
  position: absolute !important;
  left: 20px !important;
  bottom: 18px !important;
  z-index: 2 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75) !important;
}

#galerie .gallery-premium-grid .gallery-chip {
  display: none !important;
}

#galerie .gallery-premium-grid--salon img[src*="team-jessi-neu"] {
  object-position: center 28% !important;
}

#galerie .gallery-premium-grid--inspiration img[src*="styling-2"] {
  object-position: center 58% !important;
}

@media (max-width: 1100px) {
  #galerie .gallery-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #galerie .gallery-premium-grid .gallery-card--lg {
    grid-column: auto !important;
    aspect-ratio: 4 / 5 !important;
  }
}

@media (max-width: 520px) {
  #galerie .gallery-premium-grid {
    grid-template-columns: 1fr !important;
    width: min(100%, calc(100% - 24px)) !important;
  }

  #galerie .gallery-premium-grid .gallery-card img {
    min-height: 220px !important;
    max-height: 320px !important;
  }
}

/* ==================================================
   HARD BUGFIX: SALON INSIGHTS IMAGES VISIBLE
================================================== */
#galerie .salon-insights-grid {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(180px, 1fr)) !important;
  gap: clamp(18px, 2.5vw, 32px) !important;
}

#galerie .salon-insight-card {
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  min-height: 240px !important;
  background: #080604 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  display: block !important;
}

#galerie .salon-insight-card img {
  display: block !important;
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

@media (max-width: 900px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
  }

  #galerie .salon-insight-card img {
    height: 220px !important;
  }
}

@media (max-width: 520px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }

  #galerie .salon-insight-card img {
    height: 210px !important;
  }
}

/* ==================================================
   BUGFIX: REMOVE LARGE EMPTY SPACE AFTER GALLERY
================================================== */
#galerie,
#galerie.section,
#galerie .container,
#galerie .gallery-split,
#galerie .gallery-group,
#galerie .gallery-premium-grid,
#galerie .salon-insights-section,
#galerie .salon-insights-grid {
  min-height: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.salon-insights-section,
.insights-section,
.gallery-section {
  min-height: auto !important;
  height: auto !important;
  padding-top: clamp(34px, 4vw, 58px) !important;
  padding-bottom: clamp(34px, 4vw, 58px) !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
}

.salon-insights-grid,
.gallery-premium-grid,
.gallery-grid,
.round-gallery,
.salon-circle-gallery {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: auto !important;
  height: auto !important;
}

/* possible hidden spacers / particle wrappers must not consume layout space */
.gold-particles,
.gold-dust,
.particle-layer,
.sparkle-layer,
.luxury-diamonds {
  position: fixed !important;
  inset: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.salon-insights-section + section,
.gallery-section + section,
#galerie + section {
  margin-top: 0 !important;
}

/* =========================================================
   FINAL COLOR OVERRIDE (structure unchanged, colors only)
   ========================================================= */
:root {
  --theme-bg-main: #070812;
  --theme-bg-surface: #0f172a;
  --theme-text: #ffffff;
  --theme-muted: #cbd5e1;
  --theme-magenta: #d946ef;
  --theme-neon-pink: #e879f9;
  --theme-soft-pink: #f0abfc;
  --theme-violet: #a855f7;
  --theme-cyan: #22d3ee;
  --theme-soft-cyan: #67e8f9;
  --theme-glass: rgba(255, 255, 255, 0.07);
  --theme-glass-strong: rgba(15, 23, 42, 0.76);
  --theme-border: rgba(255, 255, 255, 0.16);
  --theme-border-hover: rgba(240, 171, 252, 0.46);
}

body {
  background:
    radial-gradient(1100px 760px at 8% 10%, rgba(217, 70, 239, 0.28), transparent 56%),
    radial-gradient(980px 700px at 88% 15%, rgba(34, 211, 238, 0.24), transparent 54%),
    radial-gradient(860px 640px at 50% 84%, rgba(168, 85, 247, 0.22), transparent 58%),
    linear-gradient(160deg, #070812 0%, #0b1022 46%, #101a34 100%) !important;
  color: var(--theme-text) !important;
}

body::before {
  opacity: 0.34 !important;
}

section,
.section {
  background: transparent !important;
}

.section-heading p,
.section-heading li,
.hero-lead,
.hero-subline,
.team-card p,
.product-card p,
.review-card p,
.contact-card p,
.hours-card p,
.why-card p,
.service-desc,
.welcome-card p {
  color: var(--theme-muted) !important;
}

.section-heading h2,
.section-title,
.hero-content h1,
.service-card h3,
.team-card h3,
.product-card h3,
.review-card h3,
.contact-card h3,
.hours-card h3,
.why-card h3,
.before-after-card h3 {
  color: var(--theme-text) !important;
}

.hero-content h1,
#hero-title {
  background: linear-gradient(90deg, #f0abfc 0%, #ffffff 52%, #67e8f9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.card,
.dark-card,
.service-card,
.product-card,
.team-card,
.review-card,
.contact-card,
.welcome-card,
.lotto-card,
.before-after-card,
.hours-card,
.why-card,
.salon-insight-card,
.gallery-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.74)) !important;
  border: 1px solid var(--theme-border) !important;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(217, 70, 239, 0.12),
    0 0 22px rgba(34, 211, 238, 0.1) !important;
}

.card:hover,
.dark-card:hover,
.service-card:hover,
.product-card:hover,
.team-card:hover,
.review-card:hover,
.contact-card:hover,
.welcome-card:hover,
.lotto-card:hover,
.before-after-card:hover,
.hours-card:hover,
.why-card:hover,
.salon-insight-card:hover,
.gallery-card:hover {
  border-color: var(--theme-border-hover) !important;
}

.button-primary,
.button-secondary,
.hero-actions .btn,
button,
.button {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(103, 232, 249, 0.86)) !important;
  color: #0b1020 !important;
  border: 1px solid rgba(255, 255, 255, 0.46) !important;
}

.button-primary:hover,
.button-secondary:hover,
.hero-actions .btn:hover,
button:hover,
.button:hover {
  background: linear-gradient(135deg, rgba(240, 171, 252, 0.94), rgba(103, 232, 249, 0.9)) !important;
  color: #050811 !important;
}

.button-ghost,
.hero-actions .btn.button-ghost {
  background: rgba(15, 23, 42, 0.68) !important;
  color: var(--theme-text) !important;
  border: 1px solid rgba(103, 232, 249, 0.42) !important;
}

.products-note,
.products-note p {
  color: #e5edf9 !important;
}

.products-cta,
a.products-cta,
.products .products-cta {
  color: #ffffff !important;
  background: rgba(15, 23, 42, 0.84) !important;
  border: 1px solid rgba(103, 232, 249, 0.5) !important;
}

/* ==================================================
   PREMIUM FLOW REFRESH (final lively polish)
================================================== */
#content > section {
  position: relative;
}

#content > section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(560px, 82%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.18), rgba(245, 215, 110, 0.34), rgba(212, 175, 55, 0.18), transparent);
  pointer-events: none;
}

.hero-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(230, 199, 90, 0.18), transparent 38%),
    radial-gradient(circle at 14% 78%, rgba(212, 175, 55, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(10, 7, 3, 0.98), rgba(5, 5, 5, 0.99)) !important;
}

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

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(245, 215, 110, 0.48), rgba(212, 175, 55, 0.08) 40%, rgba(212, 175, 55, 0.5));
  filter: blur(18px);
  opacity: 0.45;
  z-index: 0;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 30px !important;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.58), 0 0 34px rgba(212, 175, 55, 0.14) !important;
}

#leistungen .services-grid .service-card:nth-child(2),
#leistungen .services-grid .service-card:nth-child(5) {
  transform: translateY(18px);
}

#leistungen .services-grid .service-card:nth-child(3) {
  transform: translateY(-10px);
}

#leistungen .services-grid .service-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
}

#galerie .salon-insights-grid {
  gap: clamp(18px, 2.8vw, 34px) !important;
}

#galerie .salon-insight-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease !important;
}

#galerie .salon-insight-card:nth-child(1) { border-radius: 48% 52% 50% 50% / 52% 48% 52% 48% !important; }
#galerie .salon-insight-card:nth-child(2) { border-radius: 50% !important; }
#galerie .salon-insight-card:nth-child(3) { border-radius: 54% 46% 50% 50% / 50% 52% 48% 50% !important; }
#galerie .salon-insight-card:nth-child(4) { border-radius: 47% 53% 49% 51% / 54% 46% 54% 46% !important; }
#galerie .salon-insight-card:nth-child(5) { border-radius: 51% 49% 53% 47% / 46% 54% 48% 52% !important; }

#galerie .salon-insight-card img {
  border-radius: inherit !important;
}

#galerie .salon-insight-card::after {
  content: "✦";
  position: absolute;
  right: 16px;
  top: 12px;
  color: rgba(245, 215, 110, 0.84);
  font-size: 12px;
  text-shadow: 0 0 10px rgba(245, 215, 110, 0.55);
  pointer-events: none;
}

#galerie .salon-insight-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(245, 215, 110, 0.72) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.62), 0 0 28px rgba(212, 175, 55, 0.22) !important;
}

#vorher-nachher .before-after-images {
  position: relative;
}

#vorher-nachher .before-after-images::before {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 7, 3, 0.84);
  border: 1px solid rgba(245, 215, 110, 0.6);
  color: #f5d76e;
  font-size: 15px;
  z-index: 3;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
  pointer-events: none;
}

.btn-gold,
.button-primary,
.button-secondary {
  background: linear-gradient(160deg, #f5d76e 0%, #e6c75a 30%, #d4af37 58%, #f5d76e 100%) !important;
  border-color: rgba(230, 199, 90, 0.88) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.btn-gold:hover,
.button-primary:hover,
.button-secondary:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 215, 110, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 900px) {
  #leistungen .services-grid .service-card:nth-child(2),
  #leistungen .services-grid .service-card:nth-child(3),
  #leistungen .services-grid .service-card:nth-child(5) {
    transform: none !important;
  }

  #vorher-nachher .before-after-images::before {
    display: none;
  }
}

@media (max-width: 560px) {
  #galerie .salon-insight-card,
  #galerie .salon-insight-card img {
    border-radius: 26px !important;
  }

  #galerie .salon-insight-card::after {
    font-size: 10px;
    right: 12px;
    top: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #leistungen .services-grid .service-card,
  #galerie .salon-insight-card,
  .btn-gold,
  .button-primary,
  .button-secondary {
    transform: none !important;
    transition: none !important;
  }
}

/* ==================================================
   DARK-LUXURY / NEON-TECH BEAUTY THEME LAYER
================================================== */
:root {
  --lux-main-bg: #070812;
  --lux-surface: #0f172a;
  --lux-text: #ffffff;
  --lux-muted: #cbd5e1;
  --lux-magenta: #d946ef;
  --lux-neon-pink: #e879f9;
  --lux-soft-pink: #f0abfc;
  --lux-violet: #a855f7;
  --lux-cyan: #22d3ee;
  --lux-soft-cyan: #67e8f9;
  --lux-glow-surface: linear-gradient(135deg, rgba(217, 70, 239, 0.4), rgba(255, 255, 255, 0.1), rgba(34, 211, 238, 0.3));
  --lux-card-bg: rgba(255, 255, 255, 0.055);
  --lux-card-border: rgba(255, 255, 255, 0.1);
  --lux-card-hover-border: rgba(240, 171, 252, 0.35);
}

html,
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 85, 247, 0.2), transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(34, 211, 238, 0.2), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(217, 70, 239, 0.12), transparent 48%),
    var(--lux-main-bg) !important;
  color: var(--lux-text) !important;
}

p,
li,
.section-heading p,
.service-desc,
.hero-lead,
.team-card p,
.product-card p,
.review-cta p,
.contact-card p,
.hours-day {
  color: var(--lux-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lux-text) !important;
}

.hero-content h1,
#hero-title {
  background: linear-gradient(90deg, #f0abfc, #ffffff, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 0 30px rgba(232, 121, 249, 0.25);
}

.site-header {
  background: rgba(7, 8, 18, 0.66) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11) !important;
  backdrop-filter: blur(14px) saturate(135%);
}

.service-card,
.product-card,
.team-card,
.review-cta,
.contact-card,
.hours-card,
.why-card,
.before-after-card,
.lotto-card,
.welcome-card,
.moment-step {
  background: var(--lux-card-bg) !important;
  border: 1px solid var(--lux-card-border) !important;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(217, 70, 239, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.service-card:hover,
.product-card:hover,
.team-card:hover,
.review-cta:hover,
.contact-card:hover,
.why-card:hover,
.moment-step:hover,
.salon-insight-card:hover,
.gallery-card:hover {
  border-color: var(--lux-card-hover-border) !important;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(232, 121, 249, 0.2),
    0 0 24px rgba(34, 211, 238, 0.16) !important;
}

.service-kicker,
.eyebrow,
.hero-tagline,
.hero-services {
  color: var(--lux-soft-pink) !important;
}

.service-card li::marker {
  color: var(--lux-cyan) !important;
}

.btn-gold,
.button-primary,
.button-secondary,
.hero-actions .btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(103, 232, 249, 0.82)) !important;
  color: #0b1020 !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(217, 70, 239, 0.24),
    0 0 20px rgba(34, 211, 238, 0.24) !important;
}

.btn-gold:hover,
.button-primary:hover,
.button-secondary:hover,
.hero-actions .btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(232, 121, 249, 0.35),
    0 0 26px rgba(34, 211, 238, 0.3) !important;
}

.btn-dark,
.button-ghost,
.contact-actions .btn-dark {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--lux-text) !important;
  border: 1px solid rgba(103, 232, 249, 0.36) !important;
  backdrop-filter: blur(10px);
}

.hero-image-wrap::before,
.hairline-bg::before,
.hairline-bg::after {
  border-color: rgba(103, 232, 249, 0.24) !important;
  box-shadow: 0 0 42px rgba(217, 70, 239, 0.16) !important;
}

.salon-silhouette {
  opacity: 0.44 !important;
}

.contact-actions a,
.contact-actions .btn,
.hero-actions .btn {
  min-height: 50px;
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(240, 171, 252, 0.65) !important;
    color: var(--lux-soft-pink) !important;
    box-shadow:
      0 0 20px rgba(217, 70, 239, 0.28),
      0 8px 20px rgba(0, 0, 0, 0.42) !important;
  }

  .site-nav.mobile-nav {
    background: rgba(7, 8, 18, 0.95) !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.28) !important;
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.52),
      0 0 20px rgba(217, 70, 239, 0.12) !important;
  }
}

/* ==================================================
   HARD BACKGROUND ENFORCE (fix black-only fallback)
================================================== */
html,
body {
  background-color: #070812 !important;
  background-image:
    radial-gradient(circle at 10% 8%, rgba(168, 85, 247, 0.34), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(34, 211, 238, 0.3), transparent 34%),
    radial-gradient(circle at 52% 100%, rgba(217, 70, 239, 0.2), transparent 50%),
    linear-gradient(165deg, #070812 0%, #0f172a 48%, #0a1020 100%) !important;
  color: #ffffff !important;
}

body::before {
  opacity: 0.34 !important;
}

#content,
main,
section,
.section {
  background-color: transparent !important;
}

/* Hard disable splash overlay to prevent black-screen blocking */
.premium-splash {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==================================================
   HOTFIX: STRONGER NEON VISIBILITY (from user screenshot)
================================================== */
.welcome-section,
.salon-moment-section,
.services.section,
.team.section,
.gallery.section {
  position: relative;
  isolation: isolate;
}

.welcome-section::before,
.salon-moment-section::before,
.services.section::before,
.team.section::before,
.gallery.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 70, 239, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(34, 211, 238, 0.13), transparent 32%),
    radial-gradient(circle at 52% 100%, rgba(168, 85, 247, 0.12), transparent 44%);
}

/* Make glass cards less black-heavy */
.welcome-card,
.moment-step,
.service-card,
.team-card,
.salon-insight-card,
.before-after-card,
.product-card,
.review-cta,
.contact-card {
  background-color: rgba(15, 23, 42, 0.38) !important;
}

/* Decorative scissors in background should be subtle */
.hair-ornament,
.hair-ornament--welcome,
.hair-ornament--services {
  opacity: 0.12 !important;
  filter: saturate(0.9) brightness(0.95);
}

/* readability hotfix for products note + CTA */
.products-note,
.products-note p {
  color: #f5f1e8 !important;
}

.products-cta,
a.products-cta,
.products .products-cta {
  color: #ffffff !important;
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(103, 232, 249, 0.55) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.46),
    0 0 16px rgba(34, 211, 238, 0.24) !important;
}

.products-cta:hover {
  color: #ffffff !important;
  background: rgba(15, 23, 42, 0.88) !important;
  border-color: rgba(240, 171, 252, 0.6) !important;
}

/* ==================================================
   FINAL RELEASE STABILIZATION
================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* keep gold particles subtle and static across devices */
body::before {
  pointer-events: none;
  animation: none !important;
}

/* compact section rhythm */
section,
.section {
  padding-top: clamp(30px, 4vw, 56px) !important;
  padding-bottom: clamp(30px, 4vw, 56px) !important;
}

/* gallery: professional side-by-side on larger screens */
#galerie .salon-insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 24px) !important;
  align-items: start !important;
}

#galerie .salon-insight-card {
  min-height: 0 !important;
}

#galerie .salon-insight-card img {
  height: clamp(210px, 24vw, 300px) !important;
}

@media (max-width: 1024px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* before/after compact premium layout */
#vorher-nachher .before-after-images {
  gap: 12px !important;
}

#vorher-nachher .before-after-item img {
  height: clamp(180px, 22vw, 250px) !important;
  object-fit: cover !important;
  object-position: center 42% !important;
}

/* contact action buttons: balanced sizes and spacing */
.contact-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.contact-actions a,
.contact-actions .btn {
  min-height: 52px !important;
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .contact-actions {
    grid-template-columns: 1fr !important;
  }
}

/* lotto compact and readable */
.lotto-card,
.lotto-compact-card {
  max-width: 820px !important;
  margin: 0 auto !important;
  gap: 18px !important;
}

.lotto-card img,
.lotto-media img {
  max-height: 170px !important;
  object-fit: contain !important;
  object-position: center 45% !important;
}

/* products/cards readability guard */
.product-card p,
.why-card p,
.review-cta p,
.contact-card p,
.hours-card p {
  color: rgba(243, 235, 221, 0.9) !important;
}

/* ==================================================
   ORNAMENT CLEANUP: REMOVE VERTICAL GOLD TOTEM
================================================== */
#team .team-center-symbol,
#team .team-center-emblem,
#team .emblem-comb,
#team .emblem-bolt,
#team .emblem-scissors {
  display: none !important;
}

/* ==================================================
   FINAL RELEASE STABILITY OVERRIDES
================================================== */

/* Global compact flow and readability */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

section,
.section {
  padding-top: clamp(30px, 4vw, 56px) !important;
  padding-bottom: clamp(30px, 4vw, 56px) !important;
}

.section + .section {
  margin-top: 0 !important;
}

.section-heading p,
.section-heading li,
.contact-card p,
.product-card p,
.review-cta p,
.hours-card p,
.why-card p {
  color: rgba(243, 235, 221, 0.9) !important;
}

.btn-gold,
.button-primary,
.button-secondary {
  color: #0b0703 !important;
}

/* Gallery: desktop side by side, no empty trailing space */
#galerie,
#galerie .salon-insights-section,
#galerie .salon-insights-grid {
  height: auto !important;
  min-height: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#galerie .salon-insights-grid {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(170px, 1fr)) !important;
  gap: clamp(16px, 2.3vw, 26px) !important;
  align-items: start !important;
  justify-items: center !important;
}

#galerie .salon-insight-card {
  width: min(100%, 230px) !important;
  max-width: 230px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  background: #050302 !important;
  box-shadow:
    0 0 0 1px rgba(247, 215, 116, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(212, 175, 55, 0.18) !important;
}

#galerie .salon-insight-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 54% !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#galerie .salon-insight-card img[src*="styling-2"],
#galerie .salon-insight-card img[src*="schnitt"],
#galerie .salon-insight-card img[src*="haircut"] {
  object-position: center 88% !important;
}

#galerie .salon-insight-card .gallery-chip,
#galerie .salon-insight-card .gallery-label,
#galerie .salon-insight-card .image-label,
#galerie .salon-insight-card .badge,
#galerie .salon-insight-card .tag,
#galerie .salon-insight-card figcaption {
  display: none !important;
}

@media (max-width: 1024px) {
  #galerie .salon-insights-grid {
    grid-template-columns: repeat(2, minmax(145px, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  #galerie .salon-insights-grid {
    width: min(100%, calc(100% - 24px)) !important;
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
    gap: 14px !important;
  }

  #galerie .salon-insight-card {
    width: min(42vw, 170px) !important;
  }
}

@media (max-width: 360px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Before/after compact premium comparison */
#vorher-nachher .before-after-grid {
  max-width: 860px !important;
  margin: 0 auto !important;
}

#vorher-nachher .before-after-card {
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: clamp(16px, 2.2vw, 24px) !important;
}

#vorher-nachher .before-after-images {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

#vorher-nachher .before-after-item,
#vorher-nachher .before-after-media {
  background: #050402 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

#vorher-nachher .before-after-item img,
#vorher-nachher .before-after-media img {
  width: 100% !important;
  height: clamp(165px, 20vw, 230px) !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #050402 !important;
}

@media (max-width: 620px) {
  #vorher-nachher .before-after-images {
    grid-template-columns: 1fr !important;
  }
}

/* Hours final formatting */
.hours-list {
  display: grid !important;
  gap: 0 !important;
  width: 100%;
}

.hours-row {
  display: grid !important;
  grid-template-columns: minmax(160px, 1fr) auto !important;
  align-items: start !important;
  gap: 24px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28) !important;
}

.hours-row:last-child {
  border-bottom: 0 !important;
}

.hours-day {
  color: #f3ebdd !important;
}

.hours-times {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
  color: #f7d774 !important;
  white-space: nowrap !important;
}

@media (max-width: 520px) {
  .hours-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .hours-times {
    align-items: flex-start !important;
    white-space: normal !important;
  }
}

/* Mobile/desktop nav clarity */
@media (min-width: 821px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-nav.mobile-nav {
    display: flex !important;
    position: static !important;
    inset: auto !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.9rem !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

@media (max-width: 820px) {
  .site-nav.mobile-nav {
    z-index: 1000 !important;
  }

  .mobile-menu-toggle {
    z-index: 1001 !important;
  }
}

/* Contact actions and lotto compact layout */
.contact-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

.contact-actions a,
.contact-actions .btn {
  min-height: 52px !important;
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .contact-actions {
    grid-template-columns: 1fr !important;
  }
}

.lotto-card,
.lotto-compact-card {
  max-width: 760px !important;
  margin: 0 auto !important;
  gap: 16px !important;
}

.lotto-card img,
.lotto-media img {
  max-height: 150px !important;
  object-fit: contain !important;
  object-position: center 48% !important;
}

/* Remove floating fixed action widgets if any */
.scroll-top,
.back-to-top,
.floating-whatsapp,
.whatsapp-float,
.fixed-whatsapp,
.floating-action,
.floating-buttons {
  display: none !important;
}

/* ==================================================
   FINAL DETAIL: WHATSAPP FLOAT + SALON MOTION
================================================== */

.whatsapp-floating {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  z-index: 9999;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.58),
    0 0 26px rgba(37, 211, 102, 0.45);
}

.whatsapp-floating img,
.whatsapp-floating svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* premium friseur hairline atmosphere */
.hero-section,
#leistungen,
#kontakt {
  position: relative;
  overflow: hidden;
}

.hairline-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hairline-bg::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 8%;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 45% 55% 60% 40%;
  transform: rotate(-18deg);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

.hairline-bg::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: 4%;
  border: 1px solid rgba(247, 215, 116, 0.12);
  border-radius: 60% 40% 45% 55%;
  transform: rotate(22deg);
}

.hero-content,
.services .container,
.contact .container {
  position: relative;
  z-index: 1;
}

/* tiny salon silhouettes (line style, non-emoji) */
.salon-silhouette {
  display: inline-block;
  width: 44px;
  height: 16px;
  margin-left: 12px;
  vertical-align: middle;
  opacity: 0.24;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.salon-silhouette--services {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40' fill='none'%3E%3Cpath d='M8 30 C26 5 42 5 58 22 C74 39 90 34 112 10' stroke='%23d4af37' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.salon-silhouette--contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40' fill='none'%3E%3Cpath d='M10 20 H108 M28 8 L48 32 M48 8 L28 32' stroke='%23f7d774' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* more living yet subtle motion polish */
.btn,
.button {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    filter 0.26s ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.image-luxury,
.gallery-card img,
.salon-insight-card img,
.team-card img,
.before-after-card img {
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.gallery-card:hover img,
.salon-insight-card:hover img,
.team-card:hover img,
.before-after-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.06) contrast(1.04);
}

@media (max-width: 600px) {
  .whatsapp-floating {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-floating img,
  .whatsapp-floating svg {
    width: 30px;
    height: 30px;
  }

  .salon-silhouette {
    width: 36px;
    height: 14px;
    margin-left: 8px;
    opacity: 0.2;
  }

  .hairline-bg::before {
    width: 360px;
    height: 360px;
  }

  .hairline-bg::after {
    width: 260px;
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-floating,
  .btn,
  .button,
  .gallery-card img,
  .salon-insight-card img,
  .team-card img,
  .before-after-card img {
    transition: none !important;
    animation: none !important;
  }
}

/* Service-card salon atmosphere backgrounds (local assets, premium dark overlay) */
#leistungen .service-card {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid rgba(212, 175, 55, 0.34) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(212, 175, 55, 0.12) !important;
}

#leistungen .service-card--damen {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("assets/images/styling-5.jpg") !important;
  background-position: center 38% !important;
}

#leistungen .service-card--herren {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
    url("assets/images/styling-2.jpg") !important;
  background-position: center 62% !important;
}

#leistungen .service-card--kinder {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
    url("assets/images/beratung.jpg") !important;
  background-position: center 44% !important;
}

#leistungen .service-card--farbe {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("assets/images/styling-3.jpg") !important;
  background-position: center 48% !important;
}

#leistungen .service-card--festlich {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url("assets/images/styling-4.jpg") !important;
  background-position: center 36% !important;
}

#leistungen .service-card h3,
#leistungen .service-card .service-desc,
#leistungen .service-card li {
  color: #ffffff !important;
}

#leistungen .service-card .service-kicker {
  color: #f7d774 !important;
}

#leistungen .service-card li::marker {
  color: #d4af37 !important;
}

#leistungen .service-card::after {
  opacity: 0.14 !important;
}

/* ==================================================
   FINAL STABILIZATION LAYER (single-source overrides)
================================================== */
:root {
  --final-black-1: #050505;
  --final-black-2: #0a0703;
  --final-black-3: #111111;
  --final-gold-1: #d4af37;
  --final-gold-2: #e6c75a;
  --final-gold-3: #f5d76e;
  --final-white-1: #ffffff;
  --final-white-2: #f5f1e8;
  --final-white-3: #ede6d6;
}

html,
body {
  background: var(--final-black-1) !important;
  color: var(--final-white-2) !important;
  overflow-x: hidden !important;
}

section,
.section {
  background: transparent !important;
}

/* Keep only one fixed floating action: WhatsApp */
.mobile-cta,
.scroll-top,
.back-to-top,
.floating-whatsapp,
.whatsapp-float,
.fixed-whatsapp,
.floating-action,
.floating-buttons {
  display: none !important;
}

.whatsapp-floating {
  z-index: 9999 !important;
}

@media (max-width: 600px) {
  .whatsapp-floating {
    right: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
    width: 54px !important;
    height: 54px !important;
  }
}

/* Single mobile nav behavior */
@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-flex !important;
    z-index: 1002 !important;
  }

  .site-nav.mobile-nav {
    display: none !important;
    z-index: 1001 !important;
  }

  .site-nav.mobile-nav.is-open {
    display: flex !important;
  }
}

@media (min-width: 821px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .site-nav.mobile-nav {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

/* Readability pass */
h1,
h2,
h3,
h4,
h5,
h6,
.section-heading h2,
.service-card h3,
.team-card h3,
.review-cta h3,
.contact-card h3 {
  color: var(--final-white-1) !important;
}

p,
li,
.section-heading p,
.service-desc,
.team-card p,
.why-card p,
.lotto-content p,
.product-card p,
.review-cta p,
.contact-card p,
.hours-day {
  color: var(--final-white-3) !important;
}

.btn-gold,
.button-primary,
.button-secondary,
.contact-actions .btn-gold {
  color: #0b0703 !important;
}

.btn-dark,
.button-ghost {
  color: var(--final-white-2) !important;
  border-color: rgba(230, 199, 90, 0.55) !important;
}

/* Stronger but still elegant salon motifs visibility */
.hairline-bg::before {
  border-color: rgba(212, 175, 55, 0.24) !important;
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.1) !important;
}

.hairline-bg::after {
  border-color: rgba(245, 215, 110, 0.18) !important;
}

.salon-silhouette {
  opacity: 0.32 !important;
}

/* Gallery and spacing stability */
#galerie .salon-insights-grid {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#galerie + section,
.salon-insights-section + section {
  margin-top: 0 !important;
}

@media (max-width: 560px) {
  #galerie .salon-insights-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Before/after labels safety */
#vorher-nachher .before-after-item:first-child .before-after-label {
  content: "Vorher";
}

#vorher-nachher .before-after-item:last-child .before-after-label {
  content: "Nachher";
}

/* Final section compactness */
.hero-section,
#team,
#lotto,
#bewertungen,
#kontakt {
  min-height: 0 !important;
  height: auto !important;
}

/* subtle professional replacement */
#team .team-grid {
  position: relative;
}

#team .team-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: min(520px, 80%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(226, 184, 72, 0.75),
    rgba(255, 238, 170, 0.85),
    rgba(226, 184, 72, 0.75),
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

/* normalize team grid after removing center column ornament */
#team .team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  #team .team-grid::before {
    width: min(320px, 72%);
    top: -6px;
  }
}

/* ==================================================
   SERVICE ICON QUALITY UPGRADE (NO EMOJIS)
================================================== */
.service-title {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.service-title > span:last-child {
  display: inline-block;
}

.service-icon {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: #f5d36b !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(245, 211, 107, 0.22), transparent 45%),
    rgba(8, 6, 3, 0.92) !important;
  border: 1px solid rgba(245, 211, 107, 0.55) !important;
  box-shadow:
    0 0 18px rgba(245, 211, 107, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.45) !important;
}

.service-icon svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
}

@media (max-width: 700px) {
  .service-icon {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }

  .service-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .service-title {
    gap: 10px !important;
  }
}

/* ==================================================
   SERVICES PROFESSIONAL REWORK (NO ICON CIRCLES)
================================================== */
#leistungen .service-icon,
#leistungen .service-title .service-icon {
  display: none !important;
}

#leistungen .service-grid,
#leistungen .services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  align-items: stretch !important;
}

#leistungen .service-card {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(26px, 3vw, 42px) !important;
  min-height: 360px !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 85% 15%, rgba(226, 184, 72, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(18, 12, 5, 0.96), rgba(4, 3, 2, 0.98)) !important;
  border: 1px solid rgba(226, 184, 72, 0.32) !important;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease !important;
}

#leistungen .service-card::before {
  content: "" !important;
  position: absolute !important;
  left: 28px !important;
  right: 28px !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(226, 184, 72, 0.95),
    rgba(255, 233, 150, 0.95),
    rgba(226, 184, 72, 0.95),
    transparent
  ) !important;
}

#leistungen .service-card::after {
  content: "" !important;
  position: absolute !important;
  right: -70px !important;
  bottom: -70px !important;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(226, 184, 72, 0.16) !important;
  box-shadow: 0 0 60px rgba(226, 184, 72, 0.08) !important;
  pointer-events: none !important;
}

#leistungen .service-kicker {
  color: #e2b848 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
}

#leistungen .service-card h3 {
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-size: clamp(2rem, 3vw, 3.2rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
}

#leistungen .service-desc {
  max-width: 34rem !important;
  color: rgba(245, 239, 229, 0.84) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  margin: 0 0 22px !important;
}

#leistungen .service-card ul {
  margin: 0 !important;
  padding-left: 1.1rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

#leistungen .service-card li {
  margin: 0.55rem 0 !important;
  line-height: 1.45 !important;
}

#leistungen .service-card li::marker {
  color: #e2b848 !important;
}

#leistungen .service-chips {
  display: none !important;
}

#leistungen .service-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 219, 113, 0.58) !important;
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.68),
    0 0 34px rgba(226, 184, 72, 0.13) !important;
}

@media (max-width: 1100px) {
  #leistungen .service-grid,
  #leistungen .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  #leistungen .service-grid,
  #leistungen .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #leistungen .service-card {
    min-height: auto !important;
    padding: 26px 22px !important;
    border-radius: 26px !important;
  }

  #leistungen .service-card h3 {
    font-size: 2.1rem !important;
  }
}

/* ==================================================
   PREMIUM HIGHLIGHT: IHR MOMENT IM SALON KAROLA
================================================== */
.salon-moment-section {
  position: relative;
  padding: clamp(36px, 5vw, 72px) 0;
  overflow: hidden;
}

.salon-moment-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.salon-moment-inner .section-head p {
  margin: 0;
}

.moment-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(24px, 3vw, 38px);
}

.moment-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 42px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.8),
    rgba(247, 215, 116, 0.9),
    rgba(212, 175, 55, 0.8),
    transparent
  );
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  z-index: 0;
}

.moment-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(12, 8, 3, 0.82), rgba(3, 2, 1, 0.94));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.moment-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #f7d774;
  font-size: 28px;
  background:
    radial-gradient(circle at 35% 25%, rgba(247, 215, 116, 0.26), transparent 40%),
    rgba(3, 2, 1, 0.92);
  border: 1px solid rgba(247, 215, 116, 0.55);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.24),
    0 12px 26px rgba(0, 0, 0, 0.44);
}

.moment-step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.moment-step p {
  margin: 0;
  color: rgba(243, 235, 221, 0.86);
  line-height: 1.55;
}

.moment-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(212, 175, 55, 0.16);
}

.salon-moment-cta {
  margin-top: clamp(18px, 2.8vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.salon-moment-cta p {
  margin: 0;
  color: #f3ebdd;
  font-weight: 700;
}

/* ==================================================
   HOTFIX: KEEP SERVICE BACKGROUND MOTIFS VISIBLE
================================================== */
#leistungen .service-card.service-card--damen,
#leistungen .service-card.service-card--herren,
#leistungen .service-card.service-card--kinder,
#leistungen .service-card.service-card--farbe,
#leistungen .service-card.service-card--festlich {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-blend-mode: normal !important;
}

#leistungen .service-card.service-card--damen {
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.74)),
    url("assets/images/styling-5.jpg") !important;
  background-position: center 36% !important;
}

#leistungen .service-card.service-card--herren {
  background:
    linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.76)),
    url("https://images.pexels.com/photos/1813272/pexels-photo-1813272.jpeg?auto=compress&cs=tinysrgb&w=1600") !important;
  background-position: center 62% !important;
}

#leistungen .service-card.service-card--kinder {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.76)),
    url("https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg?auto=compress&cs=tinysrgb&w=1600") !important;
  background-position: center 45% !important;
}

#leistungen .service-card.service-card--farbe {
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.74)),
    url("assets/images/styling-3.jpg") !important;
  background-position: center 48% !important;
}

#leistungen .service-card.service-card--festlich {
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.74)),
    url("assets/images/styling-4.jpg") !important;
  background-position: center 34% !important;
}

@media (max-width: 820px) {
  .moment-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .moment-steps::before {
    display: none;
  }

  .moment-step {
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    align-items: center;
  }

  .moment-icon {
    width: 58px;
    height: 58px;
    margin: 0;
    font-size: 24px;
    grid-row: span 2;
  }

  .moment-step h3 {
    margin-bottom: 6px;
  }

  .salon-moment-cta {
    justify-content: flex-start;
  }
}

/* ==================================================
   PREMIUM WOW FINISH (NON-DESTRUCTIVE FINAL OVERRIDE)
================================================== */
:root {
  --sk-black: #030201;
  --sk-black-soft: #080604;
  --sk-gold: #d4af37;
  --sk-gold-light: #f7d774;
  --sk-white-soft: #f3ebdd;
}

section.section {
  padding-top: clamp(34px, 4vw, 64px) !important;
  padding-bottom: clamp(34px, 4vw, 64px) !important;
}

.section-angled::before,
.section-diagonal::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.66), transparent);
  opacity: 0.7;
  transform: rotate(-0.8deg);
}

/* Hero wow */
.hero-section {
  min-height: auto !important;
  gap: clamp(24px, 3.8vw, 44px) !important;
  padding-top: clamp(44px, 6vw, 86px) !important;
  padding-bottom: clamp(36px, 5vw, 76px) !important;
}

.hero-content h1 {
  font-size: clamp(40px, 6.1vw, 82px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.03em !important;
}

.hero-subline {
  margin: 8px 0 10px !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.hero-lead {
  margin: 0 0 10px !important;
  color: var(--sk-white-soft) !important;
  max-width: 62ch;
}

.hero-services--soft {
  color: #d7c9ae !important;
  font-size: 0.97rem !important;
}

.hero-image-wrap {
  border-radius: 34px !important;
  transform: rotate(0.5deg);
}

.hero-image-wrap img {
  object-fit: cover !important;
  object-position: center 42% !important;
}

/* Welcome editorial */
.welcome-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.welcome-text {
  border-left: 2px solid rgba(212, 175, 55, 0.62) !important;
  padding-left: 24px !important;
}

/* Less boxy cards overall */
.service-card,
.product-card,
.review-cta,
.contact-card,
.hours-card,
.why-card {
  background: linear-gradient(150deg, rgba(12, 8, 4, 0.78), rgba(3, 2, 1, 0.92)) !important;
  border: 1px solid rgba(212, 175, 55, 0.26) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
}

/* Team warmer */
#team .team-content p {
  color: var(--sk-white-soft) !important;
}

/* Gallery editorial premium */
#galerie .salon-insights-grid {
  gap: clamp(16px, 2.2vw, 26px) !important;
}

#galerie .salon-insight-card {
  border-radius: 26px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.52), 0 0 20px rgba(212, 175, 55, 0.15) !important;
}

#galerie .salon-insight-card img {
  height: clamp(220px, 28vw, 360px) !important;
}

/* Compact lotto, before/after, contact */
.lotto-compact-card,
.lotto-card {
  max-width: 820px !important;
  padding: clamp(16px, 2vw, 24px) !important;
}

.before-after-card {
  max-width: 780px !important;
  margin: 0 auto !important;
}

.before-after-item img,
.before-after-media img {
  max-height: 230px !important;
}

.contact-actions a,
.contact-actions .btn {
  min-height: 52px !important;
}

/* Typography polish */
h2 {
  font-size: clamp(30px, 4.2vw, 56px) !important;
  line-height: 1.05 !important;
}

p,
li {
  color: var(--sk-white-soft);
  line-height: 1.6 !important;
}

/* Mobile clarity */
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .hero-content h1 {
    font-size: clamp(34px, 11vw, 54px) !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .services-grid,
  .products-grid,
  .team-grid,
  .review-grid,
  .reviews-grid,
  .contact-grid {
    gap: 16px !important;
  }
}

.hair-divider {
  margin: clamp(18px, 3vw, 32px) auto !important;
}

/* hard stop after salon insights to avoid empty black stretch */
#galerie .gallery-split {
  gap: 0 !important;
}

#galerie .gallery-group {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#galerie + section {
  margin-top: 0 !important;
}
