/* ═══════════════════════════════════════════════════════
   STORYLINE DESIGN — style.css
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --warm-paper:    #f7f2e9;
  --amber-craft:   #c9a96e;
  --dark-espresso: #1b2040;
  --linen-soft:    #e4dcd0;
  --amber-light:   #f0e8d8;
  --amber-dark:    #a58850;
  --plum:          #4a2558;
  --plum-light:    #f0eaf5;
  --white:         #ffffff;
  --black:         #0a0c18;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.5rem;
  --text-hero: 5.5rem;

  --leading-tight:  1.1;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--dark-espresso);
  background: var(--warm-paper);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font: inherit; }
@media (hover: none) { button { cursor: pointer; } }

/* ─── SKIP LINK ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  background: var(--amber-craft);
  color: var(--dark-espresso);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: var(--space-sm); }

/* ─── CUSTOM CURSOR ──────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--amber-craft);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 200ms ease, height 200ms ease, background 200ms ease;
}

.cursor-outline {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--amber-craft);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 350ms ease, height 350ms ease, opacity 200ms ease;
  opacity: 0;
}

.cursor-outline.expanded {
  width: 40px;
  height: 40px;
  opacity: 1;
  background: transparent;
}

@media (hover: none) {
  .cursor-dot, .cursor-outline { display: none; }
}

/* ─── LOGO MARK ──────────────────────────────────────── */
.logo-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  font-size: 0.62em;
  letter-spacing: 0.2em;
  color: var(--amber-craft);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: var(--leading-tight);
}

em { font-style: italic; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}

.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--amber-craft);
  color: var(--dark-espresso);
}
.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(247, 242, 233, 0.3);
  color: var(--warm-paper);
}
.btn-secondary:hover { border-color: var(--amber-craft); }

.btn-outline {
  border: 1.5px solid var(--linen-soft);
  color: var(--dark-espresso);
}
.btn-outline:hover { border-color: var(--amber-craft); }

.btn.full-width { width: 100%; justify-content: center; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--amber-craft);
  transition: gap var(--transition-base);
}
.btn-text:hover { gap: 0.6em; }
.btn-text.small { font-size: var(--text-xs); }

/* ─── SHARED SECTION STYLES ──────────────────────────── */
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: var(--space-sm);
}
.section-label.amber { color: var(--amber-craft); }
.section-label.amber-text { color: var(--amber-craft); }

.section-headline {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--dark-espresso);
  margin-bottom: var(--space-lg);
}
.section-headline.light { color: var(--warm-paper); }
.section-headline em { color: var(--amber-craft); font-weight: 400; }

.section-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(27, 32, 64, 0.65);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-2xl);
}

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2.5rem;
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease;
  border-bottom: 0.5px solid transparent;
}

.nav.scrolled {
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--linen-soft);
  box-shadow: 0 2px 20px rgba(27, 32, 64, 0.06);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: var(--text-base);
  letter-spacing: 0.06em;
  color: var(--warm-paper);
  transition: color var(--transition-base);
  white-space: nowrap;
  margin-right: auto;
}
.nav.scrolled .nav-logo { color: var(--dark-espresso); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(247, 242, 233, 0.8);
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber-craft); }
.nav.scrolled .nav-links a { color: var(--amber-dark); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--dark-espresso); }

.nav-cta {
  padding: 10px 24px;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: var(--space-sm);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-paper);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base);
}
.nav.scrolled .nav-hamburger span { background: var(--dark-espresso); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 9, 6, 0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100dvh;
  background: var(--dark-espresso);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  color: var(--warm-paper);
  padding: 8px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  margin-bottom: var(--space-xl);
}
.mobile-menu-close:hover { opacity: 1; }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.mobile-menu-links a {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: rgba(247, 242, 233, 0.7);
  transition: color var(--transition-fast);
}
.mobile-menu-links a:hover { color: var(--amber-craft); }
.mobile-menu-links .mobile-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--amber-craft);
  margin-top: var(--space-sm);
  letter-spacing: 0.01em;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--dark-espresso);
  background-image:
    radial-gradient(circle at 18% 55%, rgba(201, 169, 110, 0.09) 0%, transparent 52%),
    radial-gradient(circle at 82% 18%, rgba(201, 169, 110, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 50% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 35%);
  overflow: hidden;
  padding-top: var(--nav-h);
}


.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

/* Hero text column */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero decorative visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-mockup {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(201,169,110,0.1));
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-14px) rotate(0.4deg); }
  70%       { transform: translateY(-7px) rotate(-0.25deg); }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
}

.hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-craft);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.02;
  color: var(--warm-paper);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.hero-line { display: block; overflow: hidden; }
.hero-accent em { color: var(--amber-craft); }

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.65);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247, 242, 233, 0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow-wrap {
  width: 1px;
  height: 40px;
  background: rgba(247, 242, 233, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-arrow {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--amber-craft);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* Ticker */
.hero-ticker-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 0.5px solid rgba(201, 169, 110, 0.15);
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.hero-ticker {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.hero-ticker span {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
  white-space: nowrap;
  padding-right: 2rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── LEISTUNGEN ─────────────────────────────────────── */
.leistungen { background: var(--warm-paper); }

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.leistung-card {
  border-radius: 24px;
  padding: var(--space-2xl);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.leistung-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(27,32,64,0.18); }

.leistung-dark {
  background: var(--dark-espresso);
  color: var(--warm-paper);
  box-shadow: 0 4px 40px rgba(27, 32, 64, 0.12);
}
.leistung-dark:hover {
  box-shadow: 0 16px 60px rgba(27, 32, 64, 0.22);
}

.leistung-light {
  background: var(--linen-soft);
  color: var(--dark-espresso);
  box-shadow: 0 4px 40px rgba(27, 32, 64, 0.06);
}
.leistung-light:hover {
  box-shadow: 0 16px 60px rgba(27, 32, 64, 0.12);
}

.leistung-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(201, 169, 110, 0.12);
  color: var(--amber-craft);
  flex-shrink: 0;
}
.leistung-light .leistung-icon { background: rgba(27, 32, 64, 0.08); color: var(--amber-dark); }

.leistung-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-paper);
}
.leistung-light h3 { color: var(--dark-espresso); }
.leistung-card h3 em { color: var(--amber-craft); }
.leistung-light h3 em { color: var(--amber-dark); }

.leistung-card > p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: var(--leading-normal);
  color: rgba(247, 242, 233, 0.7);
}
.leistung-light > p { color: rgba(27, 32, 64, 0.65); }

.leistung-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.leistung-features li {
  font-size: var(--text-sm);
  color: rgba(247, 242, 233, 0.75);
}
.leistung-light .leistung-features li { color: rgba(27, 32, 64, 0.7); }

.leistungen-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.extra-feature {
  background: var(--linen-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base);
}
.extra-feature:hover { transform: translateY(-3px); }

.extra-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201,169,110,0.1);
  color: var(--amber-craft);
  margin: 0 auto var(--space-sm);
  transition: background var(--transition-base), transform var(--transition-spring);
}
.extra-feature:hover .extra-icon {
  background: rgba(201,169,110,0.18);
  transform: scale(1.08);
}

.extra-feature strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--dark-espresso);
}

.extra-feature p {
  font-size: var(--text-sm);
  color: var(--amber-dark);
  margin: 0;
}

/* ─── BRANCHEN ───────────────────────────────────────── */
.branchen {
  background: var(--dark-espresso);
  border-top: 0.5px solid rgba(201,169,110,0.1);
  border-bottom: 0.5px solid rgba(201,169,110,0.1);
  padding: var(--space-2xl) 0;
}

.branchen-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  text-align: center;
}

.branchen-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-craft);
  display: block;
  margin-bottom: 0.75rem;
}

.branchen-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--warm-paper);
  margin-bottom: var(--space-xl);
}
.branchen-headline em {
  font-style: italic;
  color: var(--amber-craft);
}

.branchen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.branchen-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  border: 0.5px solid rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.06);
  color: rgba(250,247,242,0.72);
  font-size: var(--text-sm);
  font-weight: 400;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base), transform var(--transition-spring);
  cursor: default;
}
.branchen-item:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.12);
  color: var(--warm-paper);
  transform: translateY(-2px);
}
.branchen-icon {
  color: var(--amber-craft);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Highlighted "Eure Branche?" pill */
.branchen-item-cta {
  border-style: dashed;
  border-color: rgba(201,169,110,0.35);
  background: rgba(201,169,110,0.04);
  color: rgba(201,169,110,0.7);
}
.branchen-item-cta:hover {
  border-style: solid;
  color: var(--amber-craft);
}

.branchen-hint {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(250,247,242,0.35);
}
.branchen-hint a {
  color: var(--amber-craft);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: border-color var(--transition-fast);
  margin-left: 0.25rem;
}
.branchen-hint a:hover { border-color: var(--amber-craft); }

@media (max-width: 600px) {
  .branchen-inner { padding: 0 var(--space-sm); }
}

/* ─── PROZESS ────────────────────────────────────────── */
.prozess {
  background: var(--dark-espresso);
  padding: var(--space-3xl) 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 50%),
    radial-gradient(circle at 15% 20%, rgba(201,169,110,0.04) 0%, transparent 40%);
}

.prozess .section-headline { color: var(--warm-paper); }
.prozess .section-label   { color: var(--amber-craft); }

.light-sub {
  color: rgba(250,247,242,0.5);
  margin-bottom: var(--space-2xl);
}

.prozess-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: var(--space-2xl);
}

/* Connector line between steps */
.prozess-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0.35), rgba(201,169,110,0.35));
  margin-top: 5rem;
  flex-shrink: 0;
  position: relative;
}
.prozess-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(201,169,110,0.5);
}

.prozess-step {
  border: 2.5px solid rgba(201,169,110,0.85);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  background-color: rgba(255,255,255,0.03);
  background-image:
    linear-gradient(rgba(19, 23, 43, 0.62), rgba(19, 23, 43, 0.62)),
    var(--step-bg, none);
  background-size: cover;
  background-position: center top;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.prozess-step:hover {
  background-image:
    linear-gradient(rgba(19, 23, 43, 0.50), rgba(19, 23, 43, 0.50)),
    var(--step-bg, none);
  border-color: rgba(201,169,110,1);
}
.prozess-step:hover {
  transform: translateY(-4px);
}

.prozess-step-highlight {
  background-image:
    linear-gradient(rgba(40, 28, 10, 0.62), rgba(40, 28, 10, 0.62)),
    var(--step-bg, none);
  border-color: rgba(201,169,110,0.85);
}
.prozess-step-highlight:hover {
  background-image:
    linear-gradient(rgba(40, 28, 10, 0.50), rgba(40, 28, 10, 0.50)),
    var(--step-bg, none);
  border-color: rgba(201,169,110,1);
}

.prozess-step > * { position: relative; z-index: 1; }

.prozess-step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber-craft);
  opacity: 0.2;
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  user-select: none;
  pointer-events: none;
}

.prozess-step-icon {
  color: var(--amber-craft);
  margin-bottom: var(--space-sm);
}

.prozess-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--warm-paper);
  margin-bottom: 0.6rem;
}

.prozess-step p {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: rgba(250,247,242,0.92);
  margin-bottom: var(--space-sm);
}

.prozess-duration {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-craft);
  opacity: 1;
}

.prozess-cta {
  text-align: center;
}

/* Responsive: 2 columns, then 1 column */
@media (max-width: 1100px) {
  .prozess-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .prozess-connector { display: none; }
}

@media (max-width: 600px) {
  .prozess-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ─── PORTFOLIO ──────────────────────────────────────── */
.portfolio {
  background: var(--dark-espresso);
  background-image:
    radial-gradient(circle at 90% 10%, rgba(201, 169, 110, 0.05) 0%, transparent 40%);
}

.portfolio-filters {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(247, 242, 233, 0.55);
  border: 1px solid rgba(247, 242, 233, 0.12);
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--dark-espresso);
  background: var(--amber-craft);
  border-color: var(--amber-craft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2.5px solid rgba(201, 169, 110, 0.85);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.portfolio-card.hidden { display: none; }

.portfolio-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: rgba(201,169,110,0.04);
  border-style: dashed;
}
.portfolio-card-cta:hover {
  background: rgba(201,169,110,0.08);
}
.portfolio-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
}
.portfolio-cta-icon {
  margin-bottom: var(--space-xs);
}
.portfolio-card-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--warm-paper);
  margin: 0;
}
.portfolio-card-cta p {
  font-size: var(--text-sm);
  color: rgba(247,242,233,0.5);
  margin: 0;
}

.portfolio-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 400ms ease;
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.04); }

/* Hover overlay that slides up from bottom */
.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27,32,64,0.92) 0%,
    rgba(27,32,64,0.55) 50%,
    rgba(27,32,64,0.0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
  z-index: 2;
}
.portfolio-card:hover .portfolio-img-overlay,
.portfolio-card:focus-within .portfolio-img-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.portfolio-overlay-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--warm-paper);
  margin-bottom: 0.3rem;
  transform: translateY(6px);
  transition: transform 350ms 50ms ease;
}
.portfolio-overlay-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-craft);
  margin-bottom: 0.9rem;
  transform: translateY(6px);
  transition: transform 350ms 80ms ease;
}
.portfolio-overlay-btn {
  align-self: flex-start;
  background: var(--amber-craft);
  color: var(--dark-espresso);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  transform: translateY(8px);
  transition: transform 350ms 110ms ease, background var(--transition-fast);
}
.portfolio-overlay-btn:hover { background: #d4a97a; }

.portfolio-card:hover .portfolio-overlay-title,
.portfolio-card:hover .portfolio-overlay-tag,
.portfolio-card:hover .portfolio-overlay-btn,
.portfolio-card:focus-within .portfolio-overlay-title,
.portfolio-card:focus-within .portfolio-overlay-tag,
.portfolio-card:focus-within .portfolio-overlay-btn {
  transform: translateY(0);
}

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 20%, hsl(var(--hue, 25), 55%, 45%) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, hsl(var(--hue, 25), 40%, 25%) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, hsl(var(--hue, 25), 30%, 20%) 0%, transparent 70%),
    hsl(var(--hue, 25), 22%, 12%);
  transition: transform 600ms ease;
  position: relative;
}
.portfolio-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.portfolio-card:hover .portfolio-img-placeholder { transform: scale(1.04); }

.portfolio-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-craft);
}

.portfolio-info h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--warm-paper);
  line-height: 1.25;
}

.portfolio-info p {
  font-size: var(--text-sm);
  color: rgba(247, 242, 233, 0.5);
  line-height: var(--leading-normal);
  flex: 1;
}

/* Stats */
.portfolio-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 0.5px solid rgba(201, 169, 110, 0.2);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--warm-paper);
  line-height: 1;
}

.stat-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 400;
  font-style: italic;
  color: var(--amber-craft);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(201, 169, 110, 0.6);
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 110, 0.2);
  flex-shrink: 0;
}

/* ─── PREISE ─────────────────────────────────────────── */
.preise { background: var(--warm-paper); }
.preise .section-sub { max-width: 600px; }

.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.preis-card {
  background: var(--linen-soft);
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: var(--space-2xl) var(--space-lg);
  min-height: 530px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.preis-card:hover { box-shadow: 0 12px 40px rgba(27, 32, 64, 0.1); }

.preis-featured {
  background: var(--dark-espresso);
  border-color: var(--amber-craft);
  transform: translateY(-12px);
  box-shadow: 0 16px 60px rgba(27, 32, 64, 0.2);
}
.preis-featured:hover { transform: translateY(-16px); }

.preis-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-craft);
  color: var(--dark-espresso);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.preis-header { display: flex; flex-direction: column; gap: 10px; }

.preis-tier {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-craft);
}

.preis-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark-espresso);
  line-height: 1.25;
}
.preis-featured h3 { color: var(--warm-paper); }
.preis-card h3 small {
  display: block;
  font-size: var(--text-base);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.65;
  margin-top: 4px;
}

.preis-tagline {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--amber-dark);
  line-height: var(--leading-normal);
}
.preis-featured .preis-tagline { color: rgba(201, 169, 110, 0.75); }

.preis-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.preis-features li {
  font-size: var(--text-sm);
  color: rgba(27, 32, 64, 0.75);
}
.preis-featured .preis-features li { color: rgba(247, 242, 233, 0.75); }

.preis-card .btn-outline {
  border-color: rgba(27, 32, 64, 0.25);
}
.preis-card .btn-outline:hover { border-color: var(--amber-craft); }

.preise-hinweis {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--amber-dark);
  font-style: italic;
}

/* ─── ÜBER UNS ───────────────────────────────────────── */
.ueber-uns { overflow: hidden; }

.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.ueber-text {
  background: var(--dark-espresso);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ueber-text::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ueber-beschreibung {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.65);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.ueber-werte { display: flex; flex-direction: column; gap: var(--space-sm); }

.wert {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: rgba(247, 242, 233, 0.8);
}

.wert-icon {
  color: var(--amber-craft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(201,169,110,0.12);
  transition: background var(--transition-base), transform var(--transition-spring);
}
.wert:hover .wert-icon {
  background: rgba(201,169,110,0.2);
  transform: rotate(45deg);
}

.ueber-team {
  background: var(--dark-espresso);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  align-items: center;
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  width: 100%;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2.5px solid rgba(201,169,110,0.85);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform var(--transition-spring), box-shadow var(--transition-base), border-color var(--transition-base);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--amber-craft);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(145deg, #c9a96e 0%, #d4a97a 100%);
}
.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c9a96e 0%, #d4a97a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark-espresso);
  position: relative;
  overflow: hidden;
}
/* Subtle diamond watermark overlay */
.team-initials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 8L52 30L30 52L8 30Z' stroke='%231b2040' stroke-width='1' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
/* Per-person colour identities */
.team-initials[data-member="eugen"] {
  background: linear-gradient(145deg, #c9a96e 0%, #e8b87a 55%, #f5cc90 100%);
}
.team-initials[data-member="tamara"] {
  background: linear-gradient(145deg, #8a7060 0%, #b09070 55%, #c8a882 100%);
}

.team-card h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--warm-paper);
  margin: 0;
}

.team-rolle {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-craft);
}

.team-card p {
  font-size: var(--text-sm);
  color: rgba(247, 242, 233, 0.65);
  line-height: var(--leading-normal);
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.team-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--amber-dark);
  background: rgba(201, 169, 110, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Team card clickable */
.team-card-clickable {
  cursor: pointer;
}
.team-card-hint {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--amber-craft);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 260ms ease, transform 260ms ease;
  margin-top: 2px;
}
.team-card-clickable:hover .team-card-hint,
.team-card-clickable:focus .team-card-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TEAM MODAL ─────────────────────────────────────── */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 32, 64, 0.82);
  z-index: 9900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms ease, visibility 380ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.team-modal-overlay.open { opacity: 1; visibility: visible; }

.team-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  z-index: 9901;
  background: #2c3260;
  border: 1.5px solid var(--amber-craft);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 350ms ease, visibility 350ms ease;
  opacity: 0;
  visibility: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-craft) transparent;
}
.team-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.team-modal::-webkit-scrollbar { width: 4px; }
.team-modal::-webkit-scrollbar-thumb { background: var(--amber-craft); border-radius: 99px; }

.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 32, 64, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-paper);
  cursor: pointer;
  transition: background var(--transition-base);
  border: none;
  flex-shrink: 0;
}
.team-modal-close:hover { background: rgba(27, 32, 64, 0.85); }

.team-modal-photo {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(145deg, #1b2040 0%, #2c3260 60%, #1e2347 100%);
}
.team-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-modal-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: rgba(201,169,110,0.4);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
}
.team-modal-portraits {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-xl);
  padding-bottom: var(--space-md);
  background:
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 75% 60%, rgba(201,169,110,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #1b2040 0%, #2c3260 100%);
}
.team-modal-portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.team-modal-portrait-wrap span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.7);
}
.team-modal-portrait-img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(201,169,110,0.3);
}

.team-modal-body {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.team-modal-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-craft);
}
.team-modal-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--warm-paper);
  margin: 0.3rem 0 0.2rem;
  line-height: 1.15;
}
.team-modal-subtitle {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.5);
  margin-bottom: var(--space-md);
}
.team-modal-bio {
  font-size: var(--text-base);
  color: rgba(250,247,242,0.75);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 0.5px solid rgba(201,169,110,0.2);
}

.team-modal-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (max-width: 560px) { .team-modal-duo { grid-template-columns: 1fr; } }

.team-modal-person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.team-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--amber-craft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark-espresso);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.team-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-modal-avatar[data-member="tamara"] {
  background: linear-gradient(145deg, #8a7060 0%, #b09070 55%, #c8a882 100%);
}
.team-modal-avatar[data-member="eugen"] {
  background: linear-gradient(145deg, #c9a96e 0%, #e8b87a 55%, #f5cc90 100%);
}
.team-modal-person h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--warm-paper);
  margin: 0;
}
.team-modal-person > span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-craft);
}
.team-modal-person p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.65);
  line-height: var(--leading-normal);
  margin: 4px 0 0;
}
.team-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}
.team-modal-tags span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(201,169,110,0.8);
  background: rgba(201,169,110,0.12);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.team-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 0.5px solid rgba(201,169,110,0.2);
}
.team-modal-footer .btn-outline {
  border-color: rgba(247, 242, 233, 0.35);
  color: var(--warm-paper);
}
.team-modal-footer .btn-outline:hover {
  border-color: var(--amber-craft);
  color: var(--warm-paper);
}

/* ─── LEGAL MODAL ────────────────────────────────────── */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 26, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.legal-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.legal-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(680px, 94vw);
  max-height: 88vh;
  background: var(--dark-espresso);
  border: 1.5px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-xl);
  overflow-y: auto;
  z-index: 901;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,110,0.3) transparent;
}
.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.legal-modal-close {
  position: sticky;
  top: var(--space-md);
  float: right;
  margin: var(--space-md) var(--space-md) 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--warm-paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  z-index: 2;
  flex-shrink: 0;
}
.legal-modal-close:hover { background: rgba(255,255,255,0.16); }
.legal-modal-body {
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
  clear: both;
}
.legal-modal-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-craft);
  display: block;
  margin-bottom: var(--space-sm);
}
.legal-modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--warm-paper);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}
.legal-modal-meta {
  font-size: var(--text-xs);
  color: rgba(247,242,233,0.35);
  margin-bottom: var(--space-xl);
}
.legal-section {
  border-top: 0.5px solid rgba(201,169,110,0.15);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}
.legal-section h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-craft);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}
.legal-section p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(247,242,233,0.7);
  margin-bottom: var(--space-sm);
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--amber-craft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--warm-paper); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section {
  background: var(--warm-paper);
  padding: var(--space-3xl) 0 0;
  overflow: hidden;
}

/* Card grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

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

/* Individual card */
.tc-card {
  background: #fff;
  border: 0.5px solid rgba(27,32,64,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.tc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27,32,64,0.08);
}
.tc-card-featured {
  background: var(--dark-espresso);
  border-color: rgba(201,169,110,0.2);
  grid-row: span 1;
}
.tc-card-featured blockquote p,
.tc-card-featured .tc-author-info strong { color: var(--warm-paper) !important; }
.tc-card-featured .tc-author-info span   { color: rgba(250,247,242,0.5) !important; }
.tc-card-featured .tc-quote-mark         { color: var(--amber-craft); }

/* Stars */
.tc-stars { line-height: 1; }

/* Quote mark decoration */
.tc-quote-mark {
  color: var(--dark-espresso);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  opacity: 1;
}

/* Quote text */
.tc-card blockquote { flex: 1; }
.tc-card blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-base);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: rgba(27,32,64,0.82);
}

/* Author row */
.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--tc-hue, 25), 45%, 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tc-author-info { display: flex; flex-direction: column; gap: 2px; }
.tc-author-info strong {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark-espresso);
}
.tc-author-info span {
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(27,32,64,0.5);
}

/* Marquee ticker (kept as visual accent) */
.testimonials-section .testimonial-track-outer {
  background: var(--amber-craft);
  overflow: hidden;
  padding: var(--space-sm) 0;
}

.testimonial-track-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: var(--space-lg);
  animation: marquee 35s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-track:hover { animation-play-state: paused; }

.testimonial-item {
  background: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  width: 240px;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-item p {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--dark-espresso);
  line-height: var(--leading-normal);
  margin: 0;
}

.testimonial-item cite {
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 500;
  color: rgba(27, 32, 64, 0.65);
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq { background: var(--warm-paper); }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 0.5px solid var(--linen-soft);
  border-left: 3px solid transparent;
  transition: border-left-color var(--transition-base);
}
.faq-item.open {
  border-left-color: var(--amber-craft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-sm);
  gap: var(--space-sm);
  text-align: left;
  cursor: none;
}
@media (hover: none) { .faq-question { cursor: pointer; } }

.faq-question span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark-espresso);
  transition: color var(--transition-fast);
}
.faq-item.open .faq-question span:first-child { color: var(--amber-dark); }

.faq-icon {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--amber-craft);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-answer-inner {
  padding: 0 var(--space-sm) var(--space-lg) var(--space-md);
}
.faq-answer-inner p {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(27, 32, 64, 0.7);
  line-height: var(--leading-loose);
}

/* ─── KONTAKT ────────────────────────────────────────── */
.kontakt {
  background: var(--dark-espresso);
  background-image:
    radial-gradient(circle at 5% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 45%);
}

.kontakt-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.kontakt-text { display: flex; flex-direction: column; gap: var(--space-lg); }
.kontakt-text .section-headline { margin-bottom: 0; }

.kontakt-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.6);
  line-height: var(--leading-loose);
}

.kontakt-infos { display: flex; flex-direction: column; gap: var(--space-sm); }

.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: rgba(247, 242, 233, 0.75);
  transition: color var(--transition-fast);
  padding: 4px 0;
}
.kontakt-info-item:hover { color: var(--amber-craft); }

.kontakt-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-craft);
  transition: background var(--transition-base), transform var(--transition-spring);
}
.kontakt-info-item:hover .kontakt-info-icon {
  background: rgba(201,169,110,0.22);
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 500;
  width: fit-content;
  transition: background var(--transition-base), transform var(--transition-base) !important;
}
.whatsapp-btn:hover { background: #1ebe59 !important; transform: scale(1.02); }

.kontakt-response {
  font-style: italic;
  font-size: var(--text-base);
  color: rgba(201, 169, 110, 0.75);
  border-left: 2px solid var(--amber-craft);
  padding-left: var(--space-sm);
  line-height: var(--leading-normal);
}

.kontakt-social {
  display: flex;
  gap: 1.25rem;
}
.kontakt-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(247, 242, 233, 0.5);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.kontakt-social a svg {
  flex-shrink: 0;
  transition: transform var(--transition-spring);
}
.kontakt-social a:hover {
  color: var(--amber-craft);
}
.kontakt-social a:hover svg {
  transform: scale(1.15);
}

/* Form */
.kontakt-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.kontakt-form { display: flex; flex-direction: column; gap: var(--space-lg); }

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

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(247, 242, 233, 0.5);
  letter-spacing: 0.04em;
}
.form-group label span { color: var(--amber-craft); }

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--warm-paper);
  outline: none;
  transition: border-color var(--transition-base);
  width: 100%;
  resize: none;
}
.form-group textarea {
  overflow: hidden;
  min-height: 88px;
  line-height: 1.7;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 242, 233, 0.25);
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--amber-craft);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: none;
  color: rgba(247, 242, 233, 0.7);
  font-size: var(--text-sm);
  font-weight: 400;
  transition: color var(--transition-fast);
}
.radio-label:hover { color: var(--warm-paper); }
@media (hover: none) { .radio-label { cursor: pointer; } }

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  cursor: none;
  padding: 0;
}
.radio-label input[type="radio"]:checked {
  border-color: var(--amber-craft);
  background: radial-gradient(circle, var(--amber-craft) 40%, transparent 40%);
}

.kontakt-form .btn-primary {
  margin-top: var(--space-xs);
}

/* ── Zeichen-Counter ──────────────────────────────── */
.char-counter {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 233, 0.25);
  text-align: right;
  margin-top: -2px;
  transition: color var(--transition-fast);
  user-select: none;
}
.char-counter--warn {
  color: rgba(240, 185, 90, 0.65);
}
.char-counter--limit {
  color: rgba(220, 100, 80, 0.75);
}

.form-hinweis {
  font-size: var(--text-xs);
  color: rgba(247, 242, 233, 0.3);
  text-align: center;
  line-height: var(--leading-normal);
}
.form-hinweis a {
  color: rgba(201, 169, 110, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.3);
}
.form-hinweis a:hover { color: var(--amber-craft); }

/* ─── PRE-FOOTER CTA BANNER ─────────────────────────── */
.cta-banner {
  background: var(--dark-espresso);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.cta-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  text-align: center;
}

/* Ambient glow blobs */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-glow-left {
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: -160px;
  left: -200px;
}
.cta-glow-right {
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  bottom: -180px;
  right: -180px;
}

/* Logo mark decoration */
.cta-diamond {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: block;
  animation: cta-breathe 6s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.65; }
  50%       { transform: scale(1.1); opacity: 1;    }
}

.cta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-craft);
  margin-bottom: 1.25rem;
  display: block;
}

.cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-paper);
  margin-bottom: 1.25rem;
}
.cta-headline em {
  font-style: italic;
  color: var(--amber-craft);
}

.cta-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  padding: 16px 36px;
}

.cta-hint {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.25);
  letter-spacing: 0.04em;
}

/* .btn-ghost-amber — used here and potentially elsewhere */
.btn-ghost-amber {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--amber-craft);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}
.btn-ghost-amber:hover {
  border-color: var(--amber-craft);
  background: rgba(201,169,110,0.08);
}

@media (max-width: 640px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-btn-primary, .btn-ghost-amber { width: 100%; justify-content: center; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: var(--space-3xl) 0 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-2xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: var(--text-base);
  letter-spacing: 0.06em;
  color: var(--warm-paper);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}
.footer-logo:hover { color: var(--amber-craft); }

.footer-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.35);
  line-height: var(--leading-normal);
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.35);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(247, 242, 233, 0.5);
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: var(--amber-craft); }

/* Footer social column */
.footer-social-col { }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(247, 242, 233, 0.45);
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.footer-social-link svg {
  flex-shrink: 0;
  transition: transform var(--transition-spring);
}
.footer-social-link:hover {
  color: var(--amber-craft);
  gap: 0.8rem;
}
.footer-social-link:hover svg { transform: scale(1.12); }

.footer-bottom {
  border-top: 0.5px solid rgba(247, 242, 233, 0.08);
  padding: var(--space-lg) var(--space-xl);
  max-width: 1240px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(247, 242, 233, 0.25);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── ANIMATIONS (GSAP targets) ──────────────────────── */
[data-animate] { will-change: transform, opacity; }

/* ─── RESPONSIVE — MEDIUM (1200px) ──────────────────── */
@media (max-width: 1200px) {
  :root { --text-hero: 4.75rem; }

  .hero-inner {
    gap: var(--space-lg);
    max-width: 1060px;
  }

  .hero-visual svg { width: 280px; height: auto; }
}

/* ─── RESPONSIVE — TABLET (768px) ───────────────────── */
@media (max-width: 1023px) {
  :root {
    --text-hero: 4rem;
    --text-3xl:  2.25rem;
  }

  .section-inner { padding: var(--space-2xl) var(--space-lg); }

  .nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .leistungen-extras { grid-template-columns: 1fr; }
  .leistung-card { min-height: auto; }

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

  .preise-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .preis-featured { transform: none; }
  .preis-featured:hover { transform: translateY(-6px); }

  .ueber-uns-inner { grid-template-columns: 1fr; }
  .ueber-text, .ueber-team { padding: var(--space-2xl) var(--space-lg); }
  .team-cards { grid-template-columns: repeat(2, 1fr); }

  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-lg);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--space-lg) var(--space-xl);
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── RESPONSIVE — MOBILE (480px) ───────────────────── */
@media (max-width: 767px) {
  :root {
    --text-hero: 3.25rem;
    --text-3xl:  2rem;
    --text-2xl:  1.6rem;
  }

  .section-inner { padding: var(--space-xl) var(--space-sm); }

  .hero-inner { padding: var(--space-xl) var(--space-sm); grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-stats { flex-direction: column; gap: var(--space-lg); }
  .stat-divider { width: 60px; height: 1px; }

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

  .testimonial-item { min-width: 280px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: var(--space-md) var(--space-sm); }

  .kontakt-form-wrapper { padding: var(--space-lg); }
}

/* ─── BACK TO TOP ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber-craft);
  color: var(--dark-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-spring), box-shadow var(--transition-base);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  cursor: none;
}
@media (hover: none) { .back-to-top { cursor: pointer; } }
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(201, 169, 110, 0.5);
}
/* Pulse ring — only when button is visible */
.back-to-top.visible::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.55);
  animation: pulse-ring-top 2.8s ease-out 0.6s infinite;
  pointer-events: none;
}
.back-to-top:hover::before { animation-play-state: paused; }

@keyframes pulse-ring-top {
  0%   { transform: scale(1);   opacity: 0.7; }
  65%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ─── COOKIE BANNER ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(27, 32, 64, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 0.5px solid rgba(201, 169, 110, 0.2);
  padding: var(--space-md) var(--space-xl);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cookie-text {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.7);
  line-height: var(--leading-normal);
}
.cookie-text strong { color: var(--warm-paper); font-weight: 500; }
.cookie-text a {
  color: var(--amber-craft);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.4);
}
.cookie-text a:hover { text-decoration-color: var(--amber-craft); }

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.btn-ghost-amber {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(247, 242, 233, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.25);
  transition: color var(--transition-fast), border-color var(--transition-fast);
  cursor: none;
  background: none;
}
@media (hover: none) { .btn-ghost-amber { cursor: pointer; } }
.btn-ghost-amber:hover {
  color: var(--amber-craft);
  border-color: var(--amber-craft);
}

.cookie-banner .btn-primary { padding: 10px 22px; font-size: var(--text-sm); }

@media (max-width: 767px) {
  .cookie-banner { padding: var(--space-md) var(--space-sm); }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ─── PRELOADER ──────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 700ms ease, visibility 700ms ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.preloader-mark {
  width: 72px;
  height: 72px;
}

/* Outer diamond draws itself */
.pl-outer {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: pl-draw 1.0s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
/* Inner diamond scales in */
.pl-inner {
  transform-origin: center;
  opacity: 0;
  transform: scale(0.2);
  animation: pl-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

.preloader-text {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.4);
  opacity: 0;
  animation: pl-fade 0.5s ease 1.1s forwards;
}
.preloader-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--amber-craft);
}

@keyframes pl-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes pl-scale-in {
  to { opacity: 1; transform: scale(1); }
}
@keyframes pl-fade {
  to { opacity: 1; }
}

/* ─── FLOATING WHATSAPP ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 890;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
  cursor: none;
  animation: wa-bounce 3s ease-in-out 2s infinite;
}
@media (hover: none) { .whatsapp-float { cursor: pointer; } }

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: pulse-ring-wa 2.5s ease-out 1.2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring-wa {
  0%   { transform: scale(1);   opacity: 0.7; }
  65%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}
.whatsapp-float:hover::before { animation-play-state: paused; }

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

.whatsapp-float-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--dark-espresso);
  color: var(--warm-paper);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
  transform: translateY(-50%) translateX(-6px);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ─── FORM SUBMIT SPINNER ────────────────────────────── */
.btn.loading {
  pointer-events: none;
  opacity: 0.75;
  position: relative;
  color: transparent !important;
}
.btn.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
}
/* Dark button variant: amber spinner */
.btn-primary.loading::after {
  border-color: rgba(27,32,64,0.25);
  border-top-color: var(--dark-espresso);
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ─── FORM VALIDATION ────────────────────────────────── */
.form-group.error input,
.form-group.error textarea {
  border-bottom-color: #e05555;
}
.form-group.success input,
.form-group.success textarea {
  border-bottom-color: #6fcf97;
}

.form-error-msg {
  font-size: var(--text-xs);
  color: #e07070;
  margin-top: 4px;
  display: none;
}
.form-group.error .form-error-msg { display: block; }

/* Form success state */
.form-success-message {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6fcf97;
}
.form-success-message h3 {
  font-size: var(--text-xl);
  color: var(--warm-paper);
}
.form-success-message p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.6);
}

/* ─── KEYBOARD FOCUS STYLES ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--amber-craft);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber-craft);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.25);
}

/* ─── SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber-craft) 0%, #d4a97a 60%, var(--amber-light) 100%);
  z-index: 10001;
  pointer-events: none;
  transform-origin: left center;
  transition: width 80ms linear;
}

/* ─── PORTFOLIO MODAL ────────────────────────────────── */
.portfolio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 32, 64, 0.82);
  z-index: 9900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms ease, visibility 380ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: none;
}
@media (hover: none) { .portfolio-modal-overlay { cursor: pointer; } }
.portfolio-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  z-index: 9901;
  background: #2c3260;
  border: 1.5px solid var(--amber-craft);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 350ms ease, visibility 350ms ease;
  opacity: 0;
  visibility: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-craft) transparent;
}
.portfolio-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.portfolio-modal::-webkit-scrollbar { width: 4px; }
.portfolio-modal::-webkit-scrollbar-thumb { background: var(--amber-craft); border-radius: 99px; }

.modal-header {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-img-placeholder {
  width: 100%;
  height: 280px;
  background: hsl(var(--modal-hue, 25), 38%, 72%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-placeholder svg {
  opacity: 0.18;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 32, 64, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-paper);
  cursor: none;
  transition: background var(--transition-base), transform 400ms cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
@media (hover: none) { .modal-close { cursor: pointer; } }
.modal-close:hover {
  background: var(--dark-espresso);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  padding: 2rem 2.25rem 2.5rem;
}

.modal-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-craft);
  margin-bottom: 0.6rem;
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-paper);
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(247, 242, 233, 0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.modal-tools-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.4);
  margin-bottom: 0.6rem;
}

.modal-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.modal-tool-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 110, 0.15);
  color: var(--amber-craft);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.modal-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-footer .btn-outline {
  border-color: rgba(247, 242, 233, 0.3);
  color: var(--warm-paper);
}
.modal-footer .btn-outline:hover { border-color: var(--amber-craft); }

.modal-example-note {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(201, 169, 110, 0.6);
  background: rgba(201, 169, 110, 0.07);
  border: 0.5px solid rgba(201, 169, 110, 0.18);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}

/* ── In Entwicklung-Badge auf der Karte ── */
.portfolio-card[data-wip="true"] .portfolio-info::after {
  content: 'In Entwicklung';
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.85);
  border: 0.5px solid rgba(201, 169, 110, 0.45);
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 0.5rem;
}

/* ── Beispielprojekt-Badge auf der Karte ── */
.portfolio-card[data-example="true"] .portfolio-info::after {
  content: 'Beispielprojekt';
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
  border: 0.5px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  margin-top: 0.5rem;
}

@media (max-width: 520px) {
  .modal-img-placeholder { height: 180px; }
  .modal-body { padding: 1.5rem 1.25rem 2rem; }
  .modal-footer { flex-direction: column; }
  .modal-footer .btn { text-align: center; justify-content: center; }
}

/* ─── MOBILE STICKY CTA BAR ─────────────────────────── */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 880;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(27, 32, 64, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 0.5px solid rgba(201, 169, 110, 0.22);
    transform: translateY(calc(100% + 1px));
    transition: transform 440ms cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
  }

  .mobile-cta-bar.visible {
    transform: translateY(0);
  }

  .mobile-cta-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    background: var(--amber-craft);
    color: var(--dark-espresso);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--transition-fast), transform var(--transition-fast);
  }

  .mobile-cta-bar-btn:active {
    transform: scale(0.97);
    background: var(--amber-dark);
  }

  .mobile-cta-bar-btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
  }

  .mobile-cta-bar-btn:active svg {
    transform: translateX(3px);
  }

  .mobile-cta-bar-wa {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(37, 211, 102, 0.12);
    border: 0.5px solid rgba(37, 211, 102, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--transition-fast);
  }

  .mobile-cta-bar-wa:active {
    background: rgba(37, 211, 102, 0.25);
  }
}

/* ─── PRINT STYLES ──────────────────────────────────── */
@media print {
  /* Hide everything interactive / decorative */
  .preloader,
  .cursor-dot,
  .cursor-outline,
  .scroll-progress,
  .nav,
  .nav-hamburger,
  .mobile-menu,
  .mobile-overlay,
  .hero-ticker-wrapper,
  .hero-scroll-indicator,
  .hero-visual,
  .whatsapp-float,
  .back-to-top,
  .cookie-banner,
  .portfolio-filters,
  .portfolio-modal,
  .portfolio-modal-overlay,
  .portfolio-open-btn,
  .cta-banner,
  .mobile-cta-bar,
  .footer-social-col,
  .footer-bottom,
  .hero-buttons .btn-secondary,
  .kontakt-form-wrapper,
  [data-animate] {
    display: none !important;
  }

  /* Reset colors to print-friendly */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11pt;
    color: #000 !important;
    background: #fff !important;
    cursor: auto !important;
  }

  /* Make links show their URL */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #555;
  }
  a[href^="#"]::after { content: none; }

  /* Section backgrounds → white */
  .hero,
  .leistungen,
  .prozess,
  .portfolio,
  .preise,
  .ueber-uns,
  .testimonials,
  .faq,
  .kontakt,
  .footer {
    background: #fff !important;
    color: #000 !important;
    padding: 1.5rem 0 !important;
    break-inside: avoid;
  }

  /* Headlines */
  h1, h2, h3, h4, h5 { color: #000 !important; page-break-after: avoid; }
  em { color: #333 !important; }

  /* Section labels */
  .section-label,
  .hero-label,
  .amber-text { color: #555 !important; }

  /* Hero */
  .hero { min-height: unset !important; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 28pt !important; }
  .hero-sub   { color: #333 !important; }

  /* Leistungen cards */
  .leistung-dark,
  .leistung-light {
    background: #f5f5f5 !important;
    border: 0.5pt solid #ccc !important;
    color: #000 !important;
    break-inside: avoid;
  }
  .leistung-dark h3 em,
  .leistung-dark p,
  .leistung-dark li { color: #222 !important; }

  /* Portfolio */
  .portfolio-img-placeholder { display: none !important; }
  .portfolio-card { border: 0.5pt solid #ccc; break-inside: avoid; }

  /* Preise */
  .preis-card,
  .preis-featured {
    background: #f8f8f8 !important;
    border: 0.5pt solid #999 !important;
    color: #000 !important;
    break-inside: avoid;
  }

  /* FAQ */
  .faq-answer { max-height: none !important; }
  .faq-item   { break-inside: avoid; }

  /* Footer */
  .footer { border-top: 0.5pt solid #ccc !important; }
  .footer-desc, .footer-bottom p { color: #555 !important; }

  /* Page breaks */
  .preise { page-break-before: always; }
  .kontakt { page-break-before: always; }
}

/* ─── PAGE CURTAIN ───────────────────────────────────── */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.curtain-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.curtain-navy  { background: var(--dark-espresso); }
.curtain-amber { background: var(--amber-craft); }

.curtain-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
}
.curtain-logo svg {
  width: 68px;
  height: 68px;
  filter:
    drop-shadow(0 0 12px rgba(201,169,110,0.9))
    drop-shadow(0 0 28px rgba(150,180,255,0.5))
    drop-shadow(0 0 50px rgba(255,120,180,0.25));
  animation: crystal-shimmer 2.8s ease-in-out infinite;
}

@keyframes crystal-shimmer {
  0%   {
    filter:
      drop-shadow(0 0 12px rgba(201,169,110,0.9))
      drop-shadow(0 0 28px rgba(120,160,255,0.5))
      drop-shadow(0 0 50px rgba(255,100,180,0.2));
  }
  35%  {
    filter:
      drop-shadow(0 0 16px rgba(255,160,100,0.9))
      drop-shadow(0 0 36px rgba(100,220,255,0.6))
      drop-shadow(0 0 60px rgba(180,100,255,0.35));
  }
  68%  {
    filter:
      drop-shadow(0 0 14px rgba(150,220,255,0.8))
      drop-shadow(0 0 32px rgba(255,100,180,0.5))
      drop-shadow(0 0 55px rgba(201,169,110,0.3));
  }
  100% {
    filter:
      drop-shadow(0 0 12px rgba(201,169,110,0.9))
      drop-shadow(0 0 28px rgba(120,160,255,0.5))
      drop-shadow(0 0 50px rgba(255,100,180,0.2));
  }
}
.curtain-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.curtain-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #f7f2e9;
}
.curtain-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: #c9a96e;
  text-transform: uppercase;
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .preloader { display: none; }
  #page-curtain { display: none; }
}
