/* ==========================================================================
   GRAVUR ATELIER — Design System
   Dunkel & edel · Gold-/Chrom-Akzente · clean & professionell
   Datei: assets/css/styles.css
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Flächen */
  --bg:          #0b0b0d;
  --bg-2:        #0f0f12;
  --surface:     #141418;
  --surface-2:   #1b1b21;
  --line:        #2a2a31;
  --line-soft:   #1f1f25;

  /* Text */
  --text:        #f4f1ea;
  --muted:       #a3a2ac;
  --muted-2:     #6e6d77;

  /* Akzente */
  --gold:        #c8a35b;
  --gold-2:      #e7cf9a;
  --gold-deep:   #a07d36;
  --gold-soft:   rgba(200, 163, 91, .12);
  --gold-line:   rgba(200, 163, 91, .35);

  /* Radien & Maße */
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 999px;
  --maxw:        1180px;
  --gutter:      24px;

  /* Bewegung */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --t-fast:      .25s;
  --t:           .4s;

  /* Schrift */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Schatten */
  --shadow:      0 24px 60px -24px rgba(0, 0, 0, .7);
  --shadow-gold: 0 16px 40px -16px rgba(200, 163, 91, .45);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: #1a1408; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: "— "; color: var(--gold-deep); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.7rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.text-gold { color: var(--gold); }
.text-italic { font-style: italic; }

/* Goldener Akzent-Strich unter Display-Headlines */
.accent-line { display: inline-block; width: 56px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 22px; }
.section-head .accent-line { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1em 1.7em; border-radius: var(--radius-pill);
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid transparent; transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.15em 2.1em; font-size: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-text b { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); }
.brand-text small { font-family: var(--font-display); font-style: italic; font-size: .8rem; letter-spacing: .01em; color: var(--gold-2); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: .92rem; color: var(--muted); font-weight: 500; transition: color var(--t-fast); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width var(--t) var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: transparent; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform var(--t) var(--ease), opacity var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 180px 0 clamp(90px, 12vw, 150px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 72% -8%, rgba(200, 163, 91, .16), transparent 60%),
    radial-gradient(800px 600px at 8% 110%, rgba(200, 163, 91, .06), transparent 55%),
    var(--bg);
}
/* feine, eingravierte Linien-Textur */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 35%, transparent 78%);
          mask-image: radial-gradient(circle at 50% 35%, #000 35%, transparent 78%);
}
.hero-inner { max-width: 820px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lead { max-width: 56ch; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 64px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.hero-meta .stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--text); line-height: 1; }
.hero-meta .stat span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* Hero-Video-Hintergrund */
.hero { min-height: 84vh; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, rgba(8,8,10,.92), rgba(8,8,10,.58) 48%, rgba(8,8,10,.25)),
  linear-gradient(0deg, rgba(8,8,10,.9), transparent 46%); }
.hero .hero-inner { position: relative; z-index: 2; }

/* Hero als Scroll-Scrubbing (Video folgt dem Scrollen) */
.hero-scrub { min-height: 0; height: 240vh; padding: 0; overflow: visible; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.hero-scrub .hero-inner { width: 100%; }
.hero-scrub .scroll-hint { position: absolute; bottom: 3.5vh; left: 0; right: 0; z-index: 3; transition: opacity .4s var(--ease); }

/* ---------- Seitenweites Video (Scroll über die ganze Seite) ---------- */
html { background: var(--bg); }
body { background: transparent; }
.site-video { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: #000; }
.site-video video { width: 100%; height: 100%; object-fit: cover; }
.site-video-scrim { position: fixed; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,10,.60), rgba(8,8,10,.72)); }
.hero::before, .hero::after { content: none; }
.hero { background: transparent; min-height: 92vh; padding: 96px 0; display: flex; align-items: center; }
.hero .scroll-hint { animation: none; transition: opacity .4s var(--ease); }

/* ---------- Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards .card { padding: 32px 26px; }
.card {
  position: relative; padding: 38px 32px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, var(--gold-line), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--t); }
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 13px; margin-bottom: 22px; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-line); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card-tag { margin-top: 18px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* Leistungen, die noch nicht angeboten werden: Karte gedimmt, Abzeichen bleibt klar */
.card--bald > :not(.card-badge) { opacity: .45; filter: grayscale(.7); }
.card--bald:hover { transform: none; border-color: var(--line-soft); box-shadow: none; }
.card--bald:hover::before { opacity: 0; }
.card-badge {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); background: var(--gold-soft);
  border: 1px solid var(--gold-line); border-radius: 999px; padding: 5px 12px;
}

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--surface); cursor: pointer;
}
.tile.tile--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.tile-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(200,163,91,.10), transparent 55%),
    linear-gradient(145deg, #17171c, #0e0e11);
}
.tile-ph svg { width: 54px; height: 54px; color: var(--gold); opacity: .5; transition: transform var(--t) var(--ease), opacity var(--t); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 60%);
  opacity: 0; transition: opacity var(--t);
}
.tile-overlay .cat { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tile-overlay .title { font-family: var(--font-display); font-size: 1.15rem; }
.tile:hover img { transform: scale(1.06); }
.tile:hover .tile-ph svg { transform: scale(1.12); opacity: .8; }
.tile:hover .tile-overlay { opacity: 1; }

/* ---------- Ablauf (Prozess) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-soft); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.2rem; color: var(--gold);
  display: block; margin-bottom: 16px; opacity: .85;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Split (Über mich Vorschau) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split-media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.split-media .tile-ph svg { width: 64px; height: 64px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 20px; }
.split-body p { color: var(--muted); margin-bottom: 18px; }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-2); margin-top: 8px; }

/* ---------- Unterseiten-Hero ---------- */
.page-hero { position: relative; padding: 168px 0 56px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(900px 440px at 72% -12%, rgba(200,163,91,.15), transparent 60%), var(--bg); }
.page-hero .lead { max-width: 60ch; }
.breadcrumb { font-size: .82rem; letter-spacing: .04em; color: var(--muted-2); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- Fließtext-Spalte ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--muted); margin-bottom: 22px; font-size: 1.06rem; }
.prose p:last-child { margin-bottom: 0; }
.prose .signature { text-align: left; margin-top: 28px; }

/* ---------- Zitat / Pull-Quote ---------- */
.quote { max-width: 900px; margin: 0 auto; text-align: center; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.42; color: var(--text); }
.quote em { color: var(--gold-2); font-style: italic; }
.quote::before { content: ""; display: block; width: 44px; height: 1px; background: var(--gold-line); margin: 0 auto 30px; }

/* ---------- Werte-Raster ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.values .card { padding: 30px 26px; }
.values .card-icon { width: 48px; height: 48px; margin-bottom: 18px; }
.values .card-icon svg { width: 22px; height: 22px; }
@media (max-width: 940px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* ---------- Warum Handgravur / Qualität ---------- */
.quality-card { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(28px, 4vw, 42px); }
.quality-card h3 { margin-bottom: 22px; }
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; color: var(--text); font-size: 1rem; }
.checklist li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }

/* ---------- Formulare / Anfrage ---------- */
.form-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 36px; align-items: start; }
.form-card { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); }

.form-block { border: none; padding: 0; margin: 0 0 34px; }
.form-block:last-of-type { margin-bottom: 0; }
.form-block > legend { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.2rem; color: var(--text); margin-bottom: 20px; padding: 0; }
.form-block > legend .num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold); font-family: var(--font-body); font-size: .85rem; font-weight: 600; flex: none; }

.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field > label, .field .label { display: block; font-size: .85rem; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.field label .req { color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.input, .textarea, .select {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: .98rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast); -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8a35b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

/* Auswahl-Karten (Objekt-Typ) */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice { position: relative; cursor: pointer; display: block; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice .choice-box { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); transition: all var(--t-fast); height: 100%; }
.choice .choice-box svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.choice .choice-box b { font-weight: 500; font-size: .95rem; color: var(--text); }
.choice input:checked + .choice-box { border-color: var(--gold); background: var(--gold-soft); }
.choice input:checked + .choice-box svg { color: var(--gold); }
.choice input:focus-visible + .choice-box { box-shadow: 0 0 0 3px var(--gold-soft); }

/* Datei-Upload */
.dropzone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 34px 20px; text-align: center; border: 1.5px dashed var(--line); border-radius: var(--radius-sm); background: var(--bg); cursor: pointer; transition: all var(--t-fast); }
.dropzone:hover, .dropzone.dragover { border-color: var(--gold); background: var(--gold-soft); }
.dropzone svg { width: 30px; height: 30px; color: var(--gold); }
.dropzone p { font-size: .92rem; color: var(--muted); }
.dropzone .hint { font-size: .8rem; color: var(--muted-2); }
.previews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.previews:empty { display: none; }
.preview { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview button { position: absolute; top: 5px; right: 5px; width: 22px; height: 22px; border-radius: 50%; border: none; background: rgba(0,0,0,.7); color: #fff; display: grid; place-items: center; font-size: 13px; line-height: 1; cursor: pointer; }

/* Lieferung inline */
.radio-inline { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-inline .choice { flex: 1; min-width: 150px; }

/* Checkbox */
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.check input { -webkit-appearance: none; appearance: none; flex: none; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); margin-top: 1px; cursor: pointer; transition: all var(--t-fast); }
.check input:checked { background: var(--gold); border-color: var(--gold); }
.check input:checked::after { content: "✓"; display: grid; place-items: center; color: #1a1408; font-size: 13px; font-weight: 700; height: 100%; }
.check a { color: var(--gold); text-decoration: underline; }

/* Submit-Hinweis */
.form-note { text-align: center; font-size: .82rem; color: var(--muted-2); margin-top: 14px; }

/* Sidebar */
.summary-card { position: sticky; top: 100px; background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; }
.summary-card h3 { font-size: 1.25rem; margin-bottom: 22px; }
.summary-steps { counter-reset: s; margin-bottom: 22px; }
.summary-steps li { counter-increment: s; display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; color: var(--muted); font-size: .92rem; }
.summary-steps li::before { content: counter(s); flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold); font-size: .8rem; font-weight: 600; }
.summary-note { padding: 16px; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid var(--gold-line); font-size: .88rem; color: var(--gold-2); }
.summary-divider { height: 1px; background: var(--line-soft); margin: 22px 0; }
.summary-contact { font-size: .9rem; color: var(--muted); }
.summary-contact a { color: var(--text); }
.summary-contact a:hover { color: var(--gold); }

/* Erfolg */
.form-success { display: none; text-align: center; padding: clamp(30px,5vw,56px) clamp(16px,4vw,40px); }
.form-success.show { display: block; }
.form-success .check-circle { width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold); }
.form-success .check-circle svg { width: 38px; height: 38px; }
.form-success h2 { margin-bottom: 14px; }
.form-success p { color: var(--muted); max-width: 48ch; margin: 0 auto 24px; }

@media (max-width: 880px) {
  .form-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .previews { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* ---------- Galerie-Seite ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.filter-btn { padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .9rem; font-weight: 500; cursor: pointer; transition: all var(--t-fast); }
.filter-btn:hover { color: var(--text); border-color: var(--gold-line); }
.filter-btn.active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; border-color: transparent; }

button.tile { font: inherit; color: inherit; text-align: left; width: 100%; padding: 0; }
.tile.is-hidden-tile { display: none; }
.tile-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); background: rgba(0,0,0,.5); border: 1px solid var(--gold-line); padding: 4px 10px; border-radius: var(--radius-pill); }
.gallery-note { text-align: center; color: var(--muted-2); font-size: .9rem; margin-top: 36px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(6,6,8,.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity var(--t); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 880px; width: 100%; }
.lightbox-stage { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #17171c, #0e0e11); display: grid; place-items: center; }
.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-stage .tile-ph { position: static; }
.lightbox-stage .tile-ph svg { width: 84px; height: 84px; color: var(--gold); opacity: .55; }
.lightbox-cap { text-align: center; margin-top: 18px; }
.lightbox-cap .cat { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.lightbox-cap .title { font-family: var(--font-display); font-size: 1.3rem; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(0,0,0,.4); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: all var(--t-fast); }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(0,0,0,.45); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: all var(--t-fast); }
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
@media (max-width: 600px) { .lightbox-nav { width: 40px; height: 40px; } .lightbox-nav.prev { left: 8px; } .lightbox-nav.next { right: 8px; } }

/* ---------- Konto: Login / Registrierung ---------- */
.auth-section { display: flex; justify-content: center; }
.auth-card { width: 100%; max-width: 460px; }
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head .mark-lg { width: 64px; height: auto; margin: 0 auto 18px; display: block; }
.auth-head h2 { font-size: 1.7rem; margin-bottom: 8px; }
.auth-head p { color: var(--muted); font-size: .95rem; }
.auth-switch { text-align: center; margin-top: 22px; font-size: .9rem; color: var(--muted); }
.auth-switch a { color: var(--gold); }
.auth-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid var(--gold-line); font-size: .84rem; color: var(--gold-2); margin-bottom: 24px; }
.auth-note svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }

/* ---------- Konto: Dashboard ---------- */
.konto-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.konto-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.konto-head .eyebrow { margin-bottom: 6px; }
.dash-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items: start; }
.dash-card { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; }
.dash-card h3 { margin-bottom: 6px; }
.dash-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.empty-state { color: var(--muted-2); font-size: .92rem; padding: 22px; border: 1px dashed var(--line); border-radius: var(--radius-sm); text-align: center; }
.empty-state a { color: var(--gold); }
.data-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; }
.data-row:last-child { border-bottom: none; }
.data-row span { color: var(--muted-2); }
.data-row b { color: var(--text); font-weight: 500; }
@media (max-width: 760px) { .dash-grid { grid-template-columns: 1fr; } }

/* ---------- Rechtstexte (Impressum / Datenschutz / AGB) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 42px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.08rem; color: var(--text); margin: 26px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal li { margin-bottom: 7px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal address { font-style: normal; color: var(--text); line-height: 1.85; }
.legal .updated { font-size: .85rem; color: var(--muted-2); margin-top: 44px; border-top: 1px solid var(--line-soft); padding-top: 20px; }
.legal-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-2); font-size: .9rem; line-height: 1.6; margin-bottom: 32px; }
.legal-note svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }

/* ---------- Scrollytelling (3-Step Felgen-Gravur) ---------- */
.scrolly { position: relative; height: 400vh; background: #08080a; }
.scrolly-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.scrolly-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(58% 55% at 50% 42%, rgba(200,163,91,.14), transparent 70%); }
.scrolly-scene { position: relative; z-index: 1; width: min(94vw, 92vh); height: auto; display: block; }
.s-tire {} .s-spoke { stroke: #0c0c0f; stroke-width: 1; }
.s-body { fill: #1b1b21; stroke: var(--gold); stroke-width: 5; }
.s-collet { fill: var(--gold); }
.s-bit { stroke: var(--gold-2); stroke-width: 6; stroke-linecap: round; }
.eng-text { font-family: var(--font-display); font-weight: 600; font-size: 50px; fill: var(--gold-2); letter-spacing: 2px; }
.t-spark line { stroke: var(--gold-2); stroke-width: 3; stroke-linecap: round; opacity: 0; }
.scene.engraving .t-spark line { animation: sSpark .42s ease-in-out infinite; }
.scene.engraving .t-spark line:nth-child(2) { animation-delay: .13s; }
.scene.engraving .t-spark line:nth-child(3) { animation-delay: .26s; }
@keyframes sSpark { 0%, 100% { opacity: 0; } 45% { opacity: .95; } }

.scrolly-caps { position: absolute; left: 0; right: 0; bottom: 8vh; height: 4rem; text-align: center; pointer-events: none; z-index: 2; }
.scrolly-step { position: absolute; left: 0; right: 0; opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.scrolly-step.on { opacity: 1; transform: none; }
.scrolly-step b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 2.6vw, 1.7rem); color: var(--text); }
.scrolly-step span { display: block; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.scroll-hint { position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center; color: var(--muted-2); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; z-index: 2; animation: hintPulse 2s ease-in-out infinite; }
@keyframes hintPulse { 0%, 100% { opacity: .4; } 50% { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }

/* ---------- Immersive Kino-Sektion ---------- */
.cinematic { position: relative; min-height: 92vh; display: grid; place-items: center; text-align: center; overflow: hidden; padding: 110px 0; }
.cinematic-bg {
  position: absolute; inset: -14% -6%; z-index: 0; will-change: transform;
  background:
    radial-gradient(48% 40% at 50% 36%, rgba(200,163,91,.20), transparent 70%),
    radial-gradient(55% 45% at 82% 88%, rgba(200,163,91,.08), transparent 60%),
    linear-gradient(180deg, #0a0a0c, #0e0e12 50%, #0a0a0c);
  background-size: cover; background-position: center;
}
/* Wird zur vollflächigen Foto-Sektion, sobald ein Bild gesetzt wird:
   <div class="cinematic-bg" data-parallax style="background-image:url('assets/img/...jpg')"></div> */
.cinematic-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,10,.55), rgba(8,8,10,.2) 42%, rgba(8,8,10,.82)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 1px, transparent 1px 26px);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 100%);
          mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 100%);
}
.cinematic-inner { position: relative; z-index: 2; max-width: 920px; }
.cine-title { font-size: clamp(2.4rem, 6.6vw, 5rem); line-height: 1.08; margin: 18px 0 22px; }
.cine-title em { font-style: italic; color: var(--gold-2); }
.cinematic .lead { max-width: 56ch; margin: 0 auto; }

/* Kino-Reveal: Unschärfe → Schärfe beim Scrollen */
.cinematic .reveal { transform: translateY(42px); filter: blur(7px); transition: opacity 1.1s var(--ease), transform 1.2s var(--ease), filter 1.1s var(--ease); }
.cinematic .reveal.in { transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .cinematic-bg { transform: none !important; }
  .cinematic .reveal { filter: none; transform: none; }
}

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; border-radius: calc(var(--radius) * 1.4); overflow: hidden; padding: clamp(48px, 7vw, 80px); text-align: center; border: 1px solid var(--gold-line); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 300px at 50% -20%, rgba(200,163,91,.22), transparent 60%), linear-gradient(180deg, var(--surface), var(--bg-2)); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 32px; max-width: 52ch; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 72px 0 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 20px; }
.footer-col p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--gold); }
.footer .brand { margin-bottom: 18px; }
.footer-logo { width: 184px; height: auto; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); color: var(--muted); transition: all var(--t-fast); }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { color: var(--muted-2); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom nav a { color: var(--muted-2); font-size: .84rem; transition: color var(--t-fast); }
.footer-bottom nav a:hover { color: var(--gold); }

/* ---------- Divider mit Gravur-Motiv ---------- */
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); margin: 0 auto; }
.divider::before, .divider::after { content: ""; height: 1px; width: 80px; background: linear-gradient(90deg, transparent, var(--gold-line)); }
.divider::after { background: linear-gradient(90deg, var(--gold-line), transparent); }
.divider svg { width: 16px; height: 16px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Mobile-Menü Overlay ---------- */
.mobile-menu { position: fixed; inset: 76px 0 0 0; z-index: 99; background: rgba(11,11,13,.97); backdrop-filter: blur(8px); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t); padding: 32px var(--gutter); }
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; font-family: var(--font-display); font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); color: var(--text); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tile.tile--wide { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
