/* Local Fonts */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-v23-latin-300.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-v23-latin-500.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-v23-latin-600.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-v23-latin-300italic.woff2")
    format("woff2");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-v23-latin-500italic.woff2")
    format("woff2");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost/jost-v18-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost/jost-v18-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost/jost-v18-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Globale Variablen */
:root {
  --forest: #1a3028;
  --forest-mid: #234035;
  --forest-light: #2e5444;
  --gold: #c8a96e;
  --gold-light: #e0c99a;
  --gold-pale: #f5edd9;
  --cream: #f9f5ee;
  --warm-white: #fdfaf4;
  --bark: #5c3d1e;
  --mid: #6b7d74;
  --soft: #9bada4;
  --serif: "Cormorant Garamond", serif;
  --sans: "Jost", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.4rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 48, 40, 0.94);
  backdrop-filter: blur(14px);
  z-index: -1;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.55);
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--forest);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-instagram-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-instagram-img img {
  width: 40px;
  height: 40px;
  display: block;
}

.nav-instagram-img:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--gold);
}

/* Hero-Grundlayout */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--forest);
}
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 4rem 5rem 3.5rem;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--forest-light) 0%,
    var(--forest) 50%,
    #0f1f19 100%
  );
  z-index: 0;
}
.hero-left::after {
  content: "";
  position: absolute;
  top: 5rem;
  left: 3rem;
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(200, 169, 110, 0.25);
  border-left: 1px solid rgba(200, 169, 110, 0.25);
  z-index: 1;
}
.hero-ornament-br {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  border-right: 1px solid rgba(200, 169, 110, 0.2);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 1rem;
}
h1 em {
  font-style: italic;
  color: var(--gold);
}
h1 .big {
  font-size: 1.15em;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0.5;
}
.hero-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.6);
  line-height: 1.9;
  max-width: 340px;
  margin-bottom: 3rem;
}
.hero-btns {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all 0.25s;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-text-gold {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.7);
  border-bottom: 1px solid rgba(200, 169, 110, 0.4);
  padding-bottom: 2px;
  transition: all 0.25s;
}
.btn-text-gold:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.hero-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(200, 169, 110, 0.12);
}
.hero-info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

/* Team-Portraits im Hero */
.hero-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.team-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.2);
  background: rgba(200, 169, 110, 0.06);
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(200, 169, 110, 0.18);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(15, 31, 25, 0.82),
      rgba(15, 31, 25, 0.08) 55%,
      rgba(15, 31, 25, 0.18)
    ),
    linear-gradient(135deg, rgba(200, 169, 110, 0.18), transparent 45%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}
img.img-patrizia {
  object-position: center 39%;
}
.team-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.12);
}
.team-card:hover::after {
  opacity: 0.9;
}
.team-card-offset {
  margin-top: 1.8rem;
}
.team-overlay {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.3rem;
  z-index: 3;
  color: var(--cream);
}
.team-role {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.team-overlay strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
}

/* Über-uns-Text im Hero */
.hero-about-copy {
  max-width: 620px;
  margin-top: 0;
}
.hero-about-pre {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.8rem;
}
.hero-about-copy h2 em {
  font-style: italic;
  color: var(--gold);
}
.hero-about-copy p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(249, 245, 238, 0.58);
  line-height: 1.95;
  margin-bottom: 1.1rem;
}
.hero-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: rgba(200, 169, 110, 0.8);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

/* Leistungsbanner */
.strip {
  background: var(--gold);
  padding: 0.9rem 3.5rem;
  overflow: hidden;
}
.strip-track {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}
.strip-item {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.strip-diamond {
  font-size: 0.6rem;
  opacity: 0.5;
  color: var(--forest);
}
.strip .strip-duplicate {
  display: none !important;
}

/* Leistungen */
.services {
  padding: 8rem 3.5rem;
  background: var(--warm-white);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 5rem;
}
.services-header-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
}
.services-header-left h2 em {
  font-style: italic;
  color: var(--forest-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 48, 40, 0.08);
}
.svc {
  background: var(--warm-white);
  padding: 2.8rem 2rem;
  transition: background 0.3s;
}
.svc:hover {
  background: var(--forest);
  color: var(--cream);
}
.svc:hover .svc-num,
.svc:hover .svc-price {
  color: var(--gold);
}
.svc:hover .svc-name {
  color: var(--cream);
}
.svc:hover .svc-desc {
  color: rgba(249, 245, 238, 0.6);
}
.svc-num {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.3s;
}
.svc-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  transition: color 0.3s;
}
.svc-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.svc-price {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  transition: color 0.3s;
}

/* About-Bereich mit Salon-Galerie */
.about {
  background: var(--forest);
  padding: 5rem 5.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about-visual {
  position: relative;
  overflow: visible;
}
.salon-gallery {
  position: relative;
  z-index: 1;
  width: 115%;
  max-width: 520px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.25);
  background: linear-gradient(145deg, var(--forest-light), var(--forest-mid));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.salon-gallery::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(200, 169, 110, 0.22);
  z-index: 3;
  pointer-events: none;
}
.salon-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 31, 25, 0.45), transparent 55%),
    linear-gradient(135deg, rgba(200, 169, 110, 0.18), transparent 45%);
  z-index: 2;
  pointer-events: none;
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.2s ease,
    transform 3.5s ease;
}
.gallery-img.active {
  opacity: 1;
  transform: scale(1);
}
.about-card-overlay {
  position: absolute;
  right: 6.5rem;
  bottom: -4rem;
  z-index: 20;
  background: var(--gold);
  padding: 1.7rem 2.2rem;
  min-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.about-card-overlay .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
}
.about-card-overlay .label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

/* Öffnungszeiten und Kontakt im About-Bereich */
.about-text {
  display: flex;
  align-items: center;
}
.about-contact-card {
  width: 100%;
  border: 1px solid rgba(200, 169, 110, 0.22);
  background: rgba(255, 255, 255, 0.035);
  padding: 2.4rem;
}
.about-contact-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.info-tag {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.info-hours-grid {
  display: grid;
  gap: 0.7rem;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(200, 169, 110, 0.15);
}
.hour-day {
  font-size: 0.8rem;
  color: rgba(249, 245, 238, 0.5);
}
.hour-time {
  font-size: 0.82rem;
  color: var(--cream);
}
.hour-closed {
  font-size: 0.75rem;
  color: rgba(155, 173, 164, 0.5);
}
.hero-badge {
  margin: 0.8rem 0 0;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: fit-content;
}
.hero-badge-icon {
  font-size: 1.4rem;
  opacity: 0.7;
}
.hero-badge-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
}
.hero-contact-block {
  padding: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(249, 245, 238, 0.6);
}
.contact-line a {
  color: var(--gold);
  transition: color 0.25s;
}
.contact-line a:hover {
  color: var(--gold-light);
}
.contact-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 4rem 3.5rem 2rem;
  border-top: 1px solid rgba(200, 169, 110, 0.18);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.14);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}
.footer-brand p {
  max-width: 300px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(249, 245, 238, 0.55);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.55);
}
.footer-info a {
  color: var(--gold);
  margin-top: 0.4rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.55);
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.35);
}

/* Fade-In Animation */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade.in {
  opacity: 1;
  transform: none;
}

/* Custom Cursor */
html,
body,
a,
button,
img {
  cursor: none;
}
.cursor {
  transform: translate(-50%, -50%);
  position: fixed;
  top: 0;
  left: 0;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(200, 169, 110, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s,
    border 0.25s;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.cursor.active {
  width: 70px;
  height: 70px;
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.85);
}

/* Rechtstexte */
.legal-page {
  min-height: 100vh;
  background: var(--forest);
  padding: 10rem 1.5rem 6rem;
}
.legal-container {
  max-width: 950px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin: 4rem 0 1.2rem;
}
.legal-content h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 2.5rem 0 1rem;
}
.legal-content h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.7);
  margin: 2rem 0 0.8rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(249, 245, 238, 0.68);
}
.legal-content ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}
.legal-content a {
  color: var(--gold);
  word-break: break-word;
}
.legal-content strong {
  color: var(--cream);
}
.legal-block {
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(200, 169, 110, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.legal-block h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
}
.legal-block p {
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(249, 245, 238, 0.72);
}
.legal-block a {
  color: var(--gold-light);
}

/* Mobile Strip Animation */
@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Hero Team Desktop */
.hero-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.4rem;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 0.8rem;
  }
  .nav-instagram {
    font-size: 0.6rem;
    padding: 0.55rem 0.9rem;
  }
  .nav-cta {
    font-size: 0.62rem;
    padding: 0.55rem 1rem;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    width: 100%;
  }
  .hero-left {
    width: 100%;
    min-height: 82vh;
    padding: 7rem 1.4rem 4rem;
  }
  .hero-right {
    width: 100%;
    display: block;
    border-left: none;
    border-top: 1px solid rgba(200, 169, 110, 0.12);
  }
  .hero-info-block {
    width: 100%;
    display: block;
    padding: 4rem 1.4rem;
    border-bottom: none;
  }
  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-btns {
    flex-wrap: wrap;
  }
  .hero-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }
  .team-card {
    height: 360px;
  }
  .team-card-offset {
    margin-top: 1.2rem;
  }
  .strip {
    padding: 0.9rem 0;
  }
  .strip-track {
    width: max-content;
    justify-content: flex-start;
    gap: 2rem;
    animation: stripScroll 22s linear infinite;
  }
  .strip-diamond {
    display: block;
  }
  .strip .strip-duplicate {
    display: flex !important;
  }
  .services {
    padding: 5rem 1.4rem;
  }
  .services-header {
    display: block;
    margin-bottom: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc {
    padding: 2.2rem 1.5rem;
  }
  .about {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3.5rem 1.4rem 4.5rem;
    gap: 4rem;
  }
  .about-visual {
    width: 100%;
  }
  .salon-gallery {
    width: 100%;
    max-width: none;
    aspect-ratio: 3/4;
  }
  .about-card-overlay {
    right: 1rem;
    bottom: -2rem;
    min-width: 190px;
    padding: 1.3rem 1.6rem;
  }
  .about-card-overlay .num {
    font-size: 2rem;
  }
  .about-text {
    width: 100%;
    display: block;
  }
  .about-contact-card {
    padding: 1.6rem;
    margin-top: 2rem;
  }
  .info-hours-grid {
    gap: 0.5rem;
  }
  .hour-row {
    gap: 1rem;
  }
  .hero-badge {
    padding: 1rem 1.2rem;
  }
  .hero-contact-block {
    padding: 1.8rem 0 0;
  }
  .site-footer {
    padding: 3rem 1.4rem 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* Mobile Hero Feinschliff */
@media (max-width: 520px) {
  .hero-left {
    padding: 7rem 1.2rem 3.8rem;
    min-height: 82vh;
  }
  .hero-left::after {
    top: 5.2rem;
    left: 1.2rem;
    width: 120px;
    height: 170px;
  }
  .hero-ornament-br {
    right: 1.2rem;
    bottom: 4.2rem;
    width: 90px;
    height: 90px;
  }

  .hero-eyebrow {
    margin-left: 2.2rem;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    gap: 0.7rem;
    margin-bottom: 2.2rem;
    white-space: nowrap;
  }
  .hero-eyebrow::before {
    width: 26px;
    flex-shrink: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 12.8vw, 3.8rem);
    line-height: 1;
  }
  h1 .big {
    font-size: 1em;
  }

  .hero-divider {
    margin: 2rem 0;
    width: 58px;
  }
  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.8;
    max-width: 290px;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }
  .btn-gold {
    width: calc(100% - 1.2rem);
    max-width: 360px;
    padding: 0.9rem 1.4rem;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
  .btn-text-gold {
    margin-top: 0;
  }

  .hero-team {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .team-card {
    height: 460px;
    aspect-ratio: 3/4;
  }
  .team-card img {
    object-fit: cover;
    object-position: center top;
  }
  .team-card .img-patrizia {
    object-position: center 47%;
  }
  .team-card-offset {
    margin-top: 0;
  }
}

@media (hover: none) {
  .cursor,
  .cursor-dot {
    display: none;
  }
  html,
  body,
  a,
  button,
  img {
    cursor: auto;
  }
}

/* Cursor komplett auf Mobile deaktivieren */
@media (max-width: 900px) {
  .cursor,
  .cursor-dot {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  html,
  body,
  a,
  button,
  img {
    cursor: auto !important;
  }
}
