/* ============================================================
   ATELIER — Premium Landing Page
   Style Tokens · Layout · Components · Animations Base
   ============================================================ */

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- Design Tokens --------------------------------------- */
:root {
  --color-bg:        #0a0f1e;
  --color-primary:   #f5f5f5;
  --color-accent:    #c9a84c;
  --color-accent-dim:#a0822e;
  --color-surface:   #111827;
  --color-surface-2: #161f30;
  --color-border:    rgba(201,168,76,0.15);
  --color-muted:     rgba(245,245,245,0.45);
  --color-overlay:   rgba(10,15,30,0.82);

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Space Mono', 'IBM Plex Mono', 'Courier New', monospace;
  --font-ui:      'Inter', 'DM Sans', system-ui, sans-serif;

  --space-1: 4px;  --space-2: 8px;   --space-3: 12px;
  --space-4: 16px; --space-5: 24px;  --space-6: 32px;
  --space-7: 48px; --space-8: 64px;  --space-9: 96px;
  --space-10: 128px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.18), 0 0 80px rgba(201,168,76,0.08);
  --shadow-card: 0 2px 32px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --gutter: clamp(var(--space-5), 5vw, var(--space-8));

  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 40;
  --z-nav:     100;
  --z-cursor:  1000;
}

/* ---- Typography Scale ------------------------------------ */
.text-eyebrow {
  font-family: var(--font-ui);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.text-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
.text-body {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 14px);
  line-height: 1.75;
  color: var(--color-muted);
}
.text-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-mono {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}

/* ---- Layout ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: var(--space-9) 0; }

/* ---- Scroll Progress Bar --------------------------------- */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    #c9a45e,
    #e6c885,
    #c9a45e,
    #f0d898,
    #c9a45e
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 99999;
  transition: width 0.1s ease;
  pointer-events: none;
}

/* ---- Custom Cursor --------------------------------------- */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.5);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
#cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--color-accent);
}
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ---- Navigation ------------------------------------------ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--space-5) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(10,15,30,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav-brand {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--color-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Hero ------------------------------------------------ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter) var(--space-9);
}
.hero-content { display: flex; flex-direction: column; gap: var(--space-5); }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--color-accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}
.hero-headline .word { display: inline-block; overflow: hidden; }
.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--color-muted);
  max-width: 40ch;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}

/* ---- Buttons --------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: all 0.2s ease;
  will-change: transform;
}
.btn:hover {
  transform: scale(1.05);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(201,168,76,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  color: var(--color-primary);
  border-color: rgba(201,168,76,0.4);
}
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-spring);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---- Hero Object ----------------------------------------- */
.hero-object-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-spotlight {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.06) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spotlight-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}
.hero-object {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg) scale(1.05);
  transform-origin: center;
  will-change: transform;
  filter: drop-shadow(0 24px 64px rgba(201,168,76,0.2));
}
.hero-object img {
  width: clamp(280px, 40vw, 520px);
  height: auto;
  border-radius: var(--radius-lg);
}
.hero-object-placeholder {
  width: clamp(280px, 40vw, 480px);
  height: clamp(300px, 45vw, 520px);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}
.hero-object-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent 60%);
}
.hero-object-placeholder-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-object-placeholder-icon svg {
  width: 28px; height: 28px;
  stroke: var(--color-accent);
  fill: none;
}
.hero-object-placeholder-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Floating badges on hero object */
.hero-badge {
  position: absolute;
  background: rgba(17,24,39,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 12px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.hero-badge-1 { bottom: -20px; left: -24px; }
.hero-badge-2 { top: 24px; right: -24px; }
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.hero-badge-label { color: var(--color-muted); }
.hero-badge-value { color: var(--color-primary); font-weight: 600; }

/* ---- Scroll Indicator ------------------------------------ */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: var(--z-raised);
  opacity: 0;
}
.scroll-indicator-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ---- Marquee Ticker -------------------------------------- */
#ticker {
  overflow: hidden;           /* clips left + right edges */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  width: 100%;               /* always full viewport width */
  height: 48px;              /* feste Höhe für vertikale Zentrierung */
  display: flex;
  align-items: center;       /* Text exakt vertikal zentriert */
}
.ticker-track {
  display: inline-flex;      /* single row, no wrapping */
  gap: var(--space-8);
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  /* items doubled by JS → -50% loops seamlessly; starts mid-content, no left-edge gap */
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;            /* items never shrink */
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(-50%); } /* start mid-content — screen always full */
  100% { transform: translateX(0%); }   /* loop back seamlessly */
}

/* ---- Work Section ---------------------------------------- */
#work { padding: var(--space-9) 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
  gap: var(--space-5);
  flex-wrap: wrap;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* Project Card */
.project-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  aspect-ratio: 4 / 3;
}
.project-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}
.project-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.project-card:hover .project-card-bg { transform: scale(1.04); }
.project-card-bg-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-color, #1a2332) 0%, #0a0f1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-visual {
  width: 60%; height: 60%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.05);
  position: relative;
  overflow: hidden;
}
.project-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.4) 50%, transparent 100%);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-card-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}
.project-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.project-card-cat {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}
.project-card-tags {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.project-card:hover .project-card-tags {
  opacity: 1;
  transform: translateY(0);
}
.project-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-full);
  color: var(--color-accent);
}

/* Preview hover card */
.project-preview {
  position: absolute;
  bottom: calc(100% + 16px);
  left: var(--space-5);
  width: 220px;
  background: rgba(17,24,39,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 20;
  box-shadow: var(--shadow-card);
}
.project-card:hover .project-preview {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.project-preview-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.project-preview-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.7;
}
.project-preview-year {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-accent);
  margin-top: var(--space-3);
  letter-spacing: 0.1em;
}

/* ---- Services -------------------------------------------- */
@keyframes goldFlash {
  0%   { border-color: rgba(201,164,94,0.2); box-shadow: none; }
  40%  { border-color: #c9a45e;              box-shadow: 0 0 25px rgba(201,164,94,0.5); }
  100% { border-color: rgba(201,164,94,0.2); box-shadow: none; }
}
.service-card.flash {
  animation: goldFlash 1s ease-out forwards;
}
/* Längere Version für Footer-Links (1.5s) */
.service-card.flash-long {
  animation: goldFlash 1.5s ease-out forwards;
}
.service-card.gold-flash {
  animation: goldFlash 1.5s ease-out forwards;
}
/* ---- Service Card Info Button + Tooltip ------------------ */
.info-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid #c9a45e;
  background: transparent;
  color: #c9a45e;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  z-index: 5;
  flex-shrink: 0;
}
@media (hover: hover) {
  .info-btn:hover {
    background: #c9a45e;
    color: #0a0f1e;
  }
}
@keyframes tooltipIn {
  from { opacity: 0; transform: scale(0.92) translateY(-4px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.info-tooltip {
  position: absolute;
  top: 44px; right: 12px;
  width: 260px;
  max-width: calc(100% - 24px);
  background: #0f1422;
  border: 1px solid rgba(201,164,94,0.4);
  border-radius: 12px;
  padding: 14px 16px;
  color: rgba(245,245,245,0.9);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.6;
  z-index: 20;
  animation: tooltipIn 0.2s ease both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.info-tooltip[hidden] { display: none; }

#services { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.service-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,164,94,0.6);
    box-shadow: 0 20px 40px rgba(201,164,94,0.15);
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }
  .service-card:hover::before { opacity: 1; }
}
.service-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ---- Stats Bar ------------------------------------------- */
#stats {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}
.stat-item { padding: var(--space-4); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
  margin: auto;
  height: 100%;
}

/* ---- Testimonials ---------------------------------------- */
#testimonials {}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-bg);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
}
/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.star {
  width: 12px; height: 12px;
  fill: var(--color-accent);
}

/* ---- CTA Section ----------------------------------------- */
#cta-section {
  text-align: center;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#cta-section .container { position: relative; z-index: 1; }
.cta-eyebrow { margin-bottom: var(--space-4); }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}
.cta-headline span { color: var(--color-accent); }
.cta-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: var(--space-7);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  margin-top: var(--space-4);
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ---- Footer ---------------------------------------------- */
#footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
}
.footer-brand-name {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 28ch;
}
.footer-location {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-4);
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(245,245,245,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-legal {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(245,245,245,0.3);
}

/* ---- Scroll-reveal base ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Intro Overlay --------------------------------------- */
@keyframes logoShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #0a0f1e;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}
#intro-overlay.fade-out {
  opacity: 0;
}
#intro-logo {
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* Shimmer Gradient */
  background: linear-gradient(
    90deg,
    #c9a45e,
    #e6c885,
    #c9a45e,
    #f0d898,
    #c9a45e
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 1.5s linear infinite;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#intro-logo.show {
  opacity: 1;
  transform: scale(1);
}
#intro-logo.hide {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ---- Page Intro Animations ------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Normal (kein Intro): kurze Delays */
#nav              { animation: fadeIn  0.4s ease 0s    both; }
.hero-content     { animation: fadeUp  0.5s ease 0.1s  both; }
.hero-object-wrap { animation: scaleIn 0.6s ease 0.2s  both; }
#chat-mount       { animation: fadeIn  0.4s ease 0.6s  both; }

/* Mit Intro (html.intro-running): Delays nach neuem Timing (Overlay weg ~1.8s) */
html.intro-running #nav              { animation-delay: 1.4s; }
html.intro-running .hero-content     { animation-delay: 1.5s; }
html.intro-running .hero-object-wrap { animation-delay: 1.6s; }
html.intro-running #chat-mount       { animation-delay: 2.0s; }

/* ---- Prefers Reduced Motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track  { animation: none; }
  .scroll-wheel  { animation: none; }
  .spotlight-pulse { animation: none; }
  /* Overlay und Intro-Elemente sofort sichtbar */
  #intro-overlay { display: none !important; }
  #nav, .hero-content, .hero-object-wrap, #chat-mount {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  /* Kein horizontales Scrollen */
  html, body { overflow-x: hidden; }

  /* Alle Sections: 50px 20px */
  section { padding: 50px 20px; }
  #stats  { padding: 36px 20px; }

  /* Navigation */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    text-align: center;
  }
  .hero-headline { font-size: 2.2rem !important; line-height: 1.15; }
  .hero-sub      { font-size: 0.95rem; margin: 0 auto; }
  .hero-eyebrow  { justify-content: center; }
  .hero-actions  {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-object-wrap  { order: -1; max-width: 85vw; margin: 0 auto; }
  .hero-screen-frame { width: 100% !important; }
  .hero-object img   { max-width: 100%; }
  .hero-badge-1      { display: none; }
  .hero-badge-2      { display: none; }

  /* Grids → eine Spalte */
  .work-grid         { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stat-divider      { display: none; }
  .section-header    { flex-direction: column; align-items: flex-start; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-sub    { margin: 0 auto; }
  .about-checks { align-items: center; }
  .about-check-item { justify-content: center; }

  /* Kontakt: zentriert, Button volle Breite */
  #cta-section { text-align: center; }
  #cta-section .btn { width: 100%; justify-content: center; max-width: 360px; }

  /* Footer: untereinander gestapelt, zentriert */
  .footer-top    { grid-template-columns: 1fr; gap: var(--space-6); text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Schriftgrößen */
  h1, .hero-headline                 { font-size: 2.2rem !important; }
  h2, .text-headline, .cta-headline  { font-size: 1.6rem; }
  h3, .service-title, .why-title     { font-size: 1.2rem; }
  p,  .text-body, .service-desc,
      .why-desc, .about-sub          { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn        { width: 100%; justify-content: center; }
}

/* Kein Hover-Effekt auf Touch-Geräten */
@media (hover: none) {
  .service-card:hover,
  .why-card:hover {
    transform: none;
    border-color: var(--color-border);
    box-shadow: none;
  }
  .service-card:hover::before,
  .why-card:hover::before { opacity: 0; }
}

/* ---- Mobile nav drawer ----------------------------------- */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: #0a0f1e;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
#mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s;
  text-align: center;
}
.mobile-nav-link:hover { color: var(--color-accent); }
.mobile-nav-close {
  position: absolute;
  top: var(--space-5);
  right: var(--gutter);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-muted);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: none;
  cursor: pointer;
}

/* ---- Utility --------------------------------------------- */
.gold { color: var(--color-accent); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Z-Index Stacking Fix -------------------------------- */
/* Hero-Elemente: max z-index 100 damit Chatbot immer oben liegt */
#hero-canvas-wrap,
#hero-three-canvas,
.hero-object-wrap,
.hero-screen-wrap,
.hero-screen-frame,
.hero-inner canvas {
  z-index: 100 !important;
}

/* Chatbot Widget: immer ganz oben */
#chat-root {
  z-index: 99999 !important;
}

/* ---- Über mich ------------------------------------------- */
#about { padding: var(--space-9) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-photo {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  background: #111827;
  border: 2px solid rgba(201,164,94,0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.about-monogram {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.05em;
}
.about-photo-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.about-sub {
  max-width: 44ch;
  line-height: 1.85;
}
.about-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-primary);
}
.about-check-icon {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-sub  { margin: 0 auto; }
  .about-checks { align-items: center; }
  .about-check-item { justify-content: center; }
}

/* ---- Warum wir ------------------------------------------- */
#why { padding: var(--space-9) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.why-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,164,94,0.6);
    box-shadow: 0 20px 40px rgba(201,164,94,0.12);
  }
  .why-card:hover::before { opacity: 1; }
}
.why-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-4);
  display: block;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.why-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.85;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Section Divider ------------------------------------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 164, 94, 0.15) 20%,
    rgba(201, 164, 94, 0.4) 50%,
    rgba(201, 164, 94, 0.15) 80%,
    transparent 100%
  );
  margin: 0;
}

/* ---- Nav Active State ------------------------------------ */
.nav-links a.nav-active {
  color: var(--color-accent);
}
.nav-links a.nav-active::after {
  width: 100%;
}

/* ---- Process Section ------------------------------------- */
#process { padding: var(--space-9) 0; background: var(--color-surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  counter-reset: steps;
}
.process-step {
  position: relative;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .process-step:hover {
    border-color: rgba(201,164,94,0.5);
    box-shadow: 0 12px 40px rgba(201,164,94,0.1);
  }
}
/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: calc(-1 * var(--space-4) / 2 - 1px);
  width: calc(var(--space-4) + 2px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), rgba(201,164,94,0.4), var(--color-border));
  pointer-events: none;
}
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after,
  .process-step:last-child::after { display: none; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
}
.process-step-num {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}
.process-step-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
}
.process-step-icon svg {
  stroke: var(--color-accent);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.process-step-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.85;
}

/* ---- Contact Form ---------------------------------------- */
.cta-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) auto var(--space-6);
  max-width: 480px;
  color: var(--color-muted);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-form-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.contact-form textarea {
  min-height: 120px;
}
.contact-form .btn {
  align-self: center;
}
.cf-status {
  font-family: var(--font-ui);
  font-size: 13px;
  text-align: center;
  margin-top: var(--space-2);
}

/* ---- Why Icon (SVG statt Emoji) -------------------------- */
.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  filter: none;
}
.why-icon svg {
  stroke: var(--color-accent);
}

/* ---- Cookie Banner --------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(110%);
  width: min(600px, calc(100% - 32px));
  background: #0f1422;
  border-top: 1px solid rgba(201,164,94,0.3);
  border-left: 1px solid rgba(201,164,94,0.15);
  border-right: 1px solid rgba(201,164,94,0.15);
  border-radius: 16px 16px 0 0;
  padding: 20px 30px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(245,245,245,0.72);
  line-height: 1.65;
  flex: 1;
  min-width: 180px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: #c9a45e;
  color: #0a0f1e;
  border: 1px solid #c9a45e;
}
.cookie-btn-accept:hover { background: #e6c885; border-color: #e6c885; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(245,245,245,0.5);
  border: 1px solid rgba(245,245,245,0.15);
}
.cookie-btn-decline:hover {
  color: rgba(245,245,245,0.85);
  border-color: rgba(245,245,245,0.35);
}
@media (max-width: 600px) {
  #cookie-banner {
    width: 100%;
    border-radius: 0;
    left: 0;
    transform: translateY(110%);
    padding: 18px 20px;
  }
  #cookie-banner.show { transform: translateY(0); }
}
