/* ================================================
   MACHO MEN – Premium Dark Luxury Barber
   Senior UI Design System
   ================================================ */

/* Animatable CSS custom property for border rotation */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ── Custom Properties ───────────────────────── */
:root {
  --black:       #050505;
  --bg:          #0a0a0a;
  --surface-1:   #101010;
  --surface-2:   #161616;
  --surface-3:   #1d1d1d;
  --surface-4:   #242424;

  --gold:        #c8a96e;
  --gold-light:  #dfc08e;
  --gold-dim:    #8a6e40;
  --gold-glow:   rgba(200, 169, 110, 0.18);
  --gold-subtle: rgba(200, 169, 110, 0.08);

  --text-1:      #f0ebe3;
  --text-2:      #a09890;
  --text-3:      #5e5850;

  --border:      rgba(200, 169, 110, 0.13);
  --border-sub:  rgba(255, 255, 255, 0.06);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --nav-h:      72px;
  --max-w:      1220px;
  --pad-x:      clamp(20px, 5vw, 64px);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:          0.3s var(--ease);
  --t-slow:     0.65s var(--ease);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Noise Grain Overlay ─────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Layout Helpers ──────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

/* ── Typography Tokens ───────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text-1);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: normal;
  color: var(--gold-light);
}

.section-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}

/* Gold divider line */
.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(200, 169, 110, 0.28);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(200, 169, 110, 0.22);
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition:
    background var(--t),
    border-color var(--t),
    box-shadow var(--t),
    transform 0.36s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 5, 4, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(200, 169, 110, 0.22);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity var(--t);
}
.nav-logo:hover img { opacity: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.68);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t);
}

.nav-link:hover,
.nav-link.active { color: var(--text-1); }

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Vertical separator between nav links and controls */
.nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(200, 169, 110, 0.28);
  flex-shrink: 0;
}

/* CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 2px;
  background: transparent;
  transition: background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(200, 169, 110, 0.09);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-2);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--t), color var(--t);
}

.lang-toggle:hover {
  border-color: rgba(200, 169, 110, 0.35);
  color: var(--text-1);
}

.lang-toggle .active { color: var(--gold); }
.lang-divider { color: var(--text-3); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  transition: transform var(--t), opacity var(--t);
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide.active .hero-img {
  animation: kenBurns 12s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1);    }
  to   { transform: scale(1.07); }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.68) 0%,
      rgba(5, 5, 5, 0.55) 35%,
      rgba(5, 5, 5, 0.75) 100%
    );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 1)    0%,
    rgba(5, 5, 5, 0.3)  30%,
    transparent          65%
  );
}

/* Vignette sides */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.09;
  color: var(--text-1);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.42s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(240, 235, 227, 0.65);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.62s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.82s forwards;
}

.hero-actions .btn-primary {
  background: rgba(200, 169, 110, 0.9);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

.hero-scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ─────────────────────────────────────────────
   ÜBER UNS
───────────────────────────────────────────── */
.about {
  background: var(--surface-1);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

/* Images side — staggered two-column grid */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

/* Traveling gold border on about images */
.about-img-main::after,
.about-img-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent              0%,
    rgba(200, 169, 110, 0.32) 4%,
    var(--gold-light)        8%,
    rgba(200, 169, 110, 0.32) 12%,
    transparent              16%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.about-img-main:hover::after,
.about-img-accent:hover::after {
  opacity: 1;
  animation: priceBorderSpin 4.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.45));
}

.about-img-accent {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2/3;
  margin-top: 52px;
  /* reset old absolute positioning */
  position: relative;
  width: auto;
  border: none;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-img-accent:hover img { transform: scale(1.04); }

/* subtle gold connector between the two images */
.about-images::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  pointer-events: none;
}

/* Content side */
.about-text {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1.08rem;
  color: var(--text-1);
  line-height: 1.65;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-sub);
}

.stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ─────────────────────────────────────────────
   PREISLISTE
───────────────────────────────────────────── */
.prices {
  background: var(--bg);
  position: relative;
}

/* Decorative top separator */
.prices::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-cat {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}

/* inner ambient glow */
.price-cat::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.price-cat:hover {
  border-color: rgba(200, 169, 110, 0.32);
  border-top-color: rgba(200, 169, 110, 0.4);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(200, 169, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

/* ── Traveling gold border on hover ── */
.price-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent              0%,
    rgba(200, 169, 110, 0.32) 4%,
    var(--gold-light)        8%,
    rgba(200, 169, 110, 0.32) 12%,
    transparent              16%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.price-cat:hover::after {
  opacity: 1;
  animation: priceBorderSpin 4.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.45));
}

@keyframes priceBorderSpin {
  to { --border-angle: 360deg; }
}

.price-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-sub);
}

.price-cat-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.price-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-1);
}

.price-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.038);
}

.price-item:last-child { border-bottom: none; }

.price-item-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-item-name {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.4;
  transition: color var(--t);
}

.price-item:hover .price-item-name { color: var(--text-1); }

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.price-badge.offer {
  background: var(--gold-subtle);
  border: 1px solid rgba(200, 169, 110, 0.22);
  color: var(--gold);
}

.price-badge.new-badge {
  background: rgba(80, 160, 100, 0.1);
  border: 1px solid rgba(80, 160, 100, 0.22);
  color: #82c882;
}


.price-item-desc {
  display: block;
  font-size: 0.73rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.price-item-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Highlighted items */
.price-item.featured .price-item-name { color: var(--text-1); }
.price-item.featured .price-item-val  { color: var(--gold); }

/* ─────────────────────────────────────────────
   TEAM
───────────────────────────────────────────── */
.team {
  background: var(--surface-1);
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition:
    transform var(--t),
    border-color var(--t),
    box-shadow var(--t);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent              0%,
    rgba(200, 169, 110, 0.32) 4%,
    var(--gold-light)        8%,
    rgba(200, 169, 110, 0.32) 12%,
    transparent              16%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.team-card:hover::after {
  opacity: 1;
  animation: priceBorderSpin 4.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.45));
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface-3);
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.9s ease;
  filter: grayscale(8%);
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-info {
  padding: 24px 26px 26px;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}

.team-info p {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   GALERIE
───────────────────────────────────────────── */
.gallery {
  background: var(--bg);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
  margin-bottom: 56px;
}

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface-2);
}

/* Make some items larger */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(11){ grid-column: span 2; }

/* Staggered entrance for gallery */
.gallery-item.fade-up {
  transform: scale(0.93) translateY(20px);
}
.gallery-item.fade-up.visible {
  transform: scale(1) translateY(0);
}
.gallery-grid .gallery-item:nth-child(1)  { transition-delay: 0s;     }
.gallery-grid .gallery-item:nth-child(2)  { transition-delay: 0.07s;  }
.gallery-grid .gallery-item:nth-child(3)  { transition-delay: 0.14s;  }
.gallery-grid .gallery-item:nth-child(4)  { transition-delay: 0.21s;  }
.gallery-grid .gallery-item:nth-child(5)  { transition-delay: 0.28s;  }
.gallery-grid .gallery-item:nth-child(6)  { transition-delay: 0.35s;  }
.gallery-grid .gallery-item:nth-child(7)  { transition-delay: 0.42s;  }
.gallery-grid .gallery-item:nth-child(8)  { transition-delay: 0.49s;  }
.gallery-grid .gallery-item:nth-child(9)  { transition-delay: 0.56s;  }
.gallery-grid .gallery-item:nth-child(10) { transition-delay: 0.63s;  }
.gallery-grid .gallery-item:nth-child(11) { transition-delay: 0.70s;  }
.gallery-grid .gallery-item:nth-child(12) { transition-delay: 0.77s;  }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.4s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.09); filter: brightness(0.85); }

/* Traveling gold border on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent              0%,
    rgba(200, 169, 110, 0.32) 4%,
    var(--gold-light)        8%,
    rgba(200, 169, 110, 0.32) 12%,
    transparent              16%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  animation: priceBorderSpin 4.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.45));
}

/* Shine sweep on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 100%
  );
  transform: skewX(-12deg);
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover::before {
  animation: galleryShine 0.65s var(--ease) forwards;
}

@keyframes galleryShine {
  0%   { left: -80%; }
  100% { left: 120%; }
}

/* Gold border reveal on hover */
.gallery-item:hover {
  box-shadow: inset 0 0 0 1px rgba(200, 169, 110, 0.22);
}

.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.gallery-cta p {
  font-size: 0.87rem;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────
   KONTAKT
───────────────────────────────────────────── */
.contact {
  background: var(--surface-1);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 108px);
  align-items: flex-start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  transition: color var(--t);
}

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

.hours-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.hours-day {
  font-size: 0.86rem;
  color: var(--text-2);
  min-width: 70px;
}

.hours-time {
  font-size: 0.86rem;
  color: var(--text-2);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.028);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.contact-form-wrap:hover {
  border-color: rgba(200, 169, 110, 0.32);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(200, 169, 110, 0.08);
}

/* Traveling gold border on contact form */
.contact-form-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent              0%,
    rgba(200, 169, 110, 0.32) 4%,
    var(--gold-light)        8%,
    rgba(200, 169, 110, 0.32) 12%,
    transparent              16%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.5s ease;
}

.contact-form-wrap:hover::after {
  opacity: 1;
  animation: priceBorderSpin 4.7s linear infinite;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.45));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-1);
  transition:
    border-color var(--t),
    background var(--t),
    box-shadow var(--t);
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200, 169, 110, 0.42);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.07);
}

.form-group textarea { min-height: 110px; }

.form-note {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 32px 20px;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-success-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* Honeypot – vollständig versteckt */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Math CAPTCHA */
.form-math .math-question {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.form-math input[type="number"] {
  max-width: 120px;
  -moz-appearance: textfield;
}

.form-math input[type="number"]::-webkit-inner-spin-button,
.form-math input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Inline Fehlermeldung */
.form-spam-error {
  font-size: 0.75rem;
  color: #e07070;
  line-height: 1.5;
  margin-bottom: 4px;
  display: none;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-sub);
  padding: 80px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-sub);
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  margin: 0 auto 18px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

.footer h4 {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul { display: flex; flex-direction: column; gap: 10px; }

.footer ul a {
  font-size: 0.83rem;
  color: var(--text-3);
  transition: color var(--t);
}

.footer ul a:hover { color: var(--text-2); }

.footer-contact p,
.footer-hours p {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 6px;
}

.footer-contact a {
  font-size: 0.83rem;
  color: var(--text-3);
  transition: color var(--t);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.76rem;
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.76rem;
  color: var(--text-3);
  transition: color var(--t);
}

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

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for siblings */
.stagger .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─────────────────────────────────────────────
   LEGAL PAGES (Impressum / Datenschutz)
───────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 120px;
  min-height: 80vh;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 56px;
  transition: color var(--t);
}

.legal-back:hover { color: var(--gold); }
.legal-back span  { font-size: 1rem; }

.legal-content { max-width: 780px; }

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 52px;
  line-height: 1.2;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 110, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t);
}

.legal-content a:hover {
  text-decoration-color: var(--gold);
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .prices-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-img-badge { display: none; }
}

@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .about-images  { padding-right: 0; padding-bottom: 0; grid-template-columns: 1fr; gap: 16px; }
  .about-img-main { aspect-ratio: 4/3; width: 100%; }
  .about-img-accent { display: none; }
  .about-images::after { display: none; }

  /* Mobile: individual image fade-in animations */
  .about-img-accent--mobile-delay { transition-delay: 0.18s; }
  .about-img-main.fade-up,
  .about-img-accent.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  }
  .about-img-main.fade-up.visible,
  .about-img-accent.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(11) { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Mobile: nav always visible while scrolling, 50% transparent background */
  .nav.scrolled {
    background: rgba(7, 5, 4, 0.5);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
  }

  /* Hide desktop-only nav elements on mobile */
  .nav-sep,
  .nav-cta { display: none; }

  /* Mobile nav overlay */
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 48px var(--pad-x);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 400;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: var(--text-2);
  }

  .nav-link:hover, .nav-link.active { color: var(--gold); }

  .nav-burger { display: flex; }

  .about-stats { flex-wrap: wrap; gap: 28px; }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(11) { grid-column: span 2; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: column; gap: 24px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact-form-wrap { padding: 24px 20px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
}
