/* ==========================================================================
   LUMIÈRE ATELIER — "Midnight Atelier" Multi-Page Design System
   Farben:  Obsidian (#0A0A0F), Champagner-Gold (#D4AF7A), Creme (#F5EAD0)
   Fonts:   Playfair Display (Display) · Inter Tight (Body)
   Struktur: Tokens → Base → Layout → Komponenten → Seiten-Module → Utilities
   ========================================================================== */

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* -------- Design-Tokens -------- */
:root {
  /* Farben – hier änderbar, wirken sich auf alle Seiten aus */
  --bg:         #0a0a0f;
  --bg-2:       #0c0c12;
  --bg-3:       #08080c;
  --gold:       #d4af7a;
  --gold-soft:  #f0d9a8;
  --gold-deep:  #a8814a;
  --gold-line:  rgba(212,175,122,0.30);
  --gold-line-2:rgba(212,175,122,0.15);
  --violet:     #7b6cff;
  --ice:        #6cc4ff;
  --text:       #f5ead0;
  --text-soft:  #cdbfa3;
  --text-mute:  rgba(205,191,163,.70);
  --text-faint: rgba(205,191,163,.50);

  --radius: 2px;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-sans:    "Inter Tight", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* -------- Base -------- */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(123,108,255,.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 110%, rgba(212,175,122,.08), transparent 60%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: rgba(212,175,122,.35); color:#fff; }

/* -------- Layout-Helfer -------- */
.container { width:100%; max-width:1360px; margin:0 auto; padding:0 1.25rem; }
@media (min-width:640px)  { .container { padding:0 2rem; } }
@media (min-width:1024px) { .container { padding:0 2.5rem; } }

.grid { display:grid; }
.section { position:relative; padding: 4.5rem 0; }
@media (min-width:1024px) { .section { padding: 7.5rem 0; } }
.section-alt { background: rgba(12,12,18,.4); }

/* -------- Typography -------- */
.display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; color: var(--text);
}
.display em { font-style: italic; }
.display-lg { font-size: clamp(2.5rem, 6vw, 4.4rem); }
.gold-text {
  background: linear-gradient(180deg, #f0d9a8 0%, #d4af7a 50%, #a8814a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--text-soft); font-size: 1.05rem; line-height: 1.7; max-width: 48ch; }
.eyebrow {
  display:inline-block; font-size:.72rem; font-weight:500;
  letter-spacing:.32em; text-transform:uppercase; color: var(--gold);
}
.eyebrow-with-rule { display:flex; align-items:center; gap:.85rem; margin-bottom: 1.25rem; }
.eyebrow-with-rule .rule { width: 2rem; height: 1px; background: var(--gold); }
.section-num { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.section-meta { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; }
.gold-rule { height:1px; margin: 1.75rem 0;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}

/* -------- Buttons -------- */
.btn-gold, .btn-ghost {
  display:inline-flex; align-items:center; gap:.65rem;
  padding: .95rem 1.6rem; font-weight:600; letter-spacing:.04em;
  border-radius: var(--radius); white-space: nowrap;
  transition: transform .25s, box-shadow .35s, filter .35s, background .3s, border-color .3s;
}
.btn-gold svg, .btn-ghost svg { width:1rem; height:1rem; }
.btn-gold {
  color:#100c08;
  background: linear-gradient(180deg,#e6c992 0%,#d4af7a 50%,#b89163 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 -1px 0 rgba(0,0,0,.25) inset,
              0 12px 32px -10px rgba(212,175,122,.45);
}
.btn-gold:hover { transform:translateY(-1px); filter:brightness(1.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.45) inset, 0 -1px 0 rgba(0,0,0,.25) inset,
              0 18px 40px -8px rgba(212,175,122,.6);
}
.btn-ghost { color: var(--text); border:1px solid rgba(212,175,122,.4); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(212,175,122,.8); background: rgba(212,175,122,.06); }
.btn-sm { padding: .6rem 1.1rem; font-size:.85rem; }
.full  { width:100%; justify-content:center; }

/* -------- Header / Navigation -------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 80px; display:flex; align-items:center;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,15,.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(212,175,122,.15);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:1.25rem; }
.brand { display:flex; align-items:center; gap:.85rem; }
.logo-mark {
  position:relative; width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(212,175,122,.4); display:flex; align-items:center; justify-content:center;
  color: var(--gold); animation: glow-pulse 4s ease-in-out infinite;
}
.logo-mark::before { content:""; position:absolute; inset:4px; border:1px solid rgba(212,175,122,.2); border-radius:50%; }
.logo-mark svg { width:16px; height:16px; }
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 30px rgba(212,175,122,.25), inset 0 0 20px rgba(212,175,122,.05); }
  50%     { box-shadow: 0 0 60px rgba(212,175,122,.45), inset 0 0 30px rgba(212,175,122,.10); }
}
.brand-text { display:flex; flex-direction:column; line-height:1.15; }
.brand-name { font-family: var(--font-display); font-size:15px; color: var(--text); }
.brand-name em { color: var(--gold); font-style: italic; }
.brand-sub  { font-size:10px !important; margin-top:2px; }

.main-nav { display:none; gap:1.75rem; }
.main-nav a {
  position: relative; padding: .25rem 0; font-size:.9rem; color: rgba(205,191,163,.8);
  transition: color .25s;
}
.main-nav a::after {
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background: var(--gold); transition: width .3s;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-cta { display:none; align-items:center; gap:1rem; }
.header-phone { display:inline-flex; align-items:center; gap:.5rem; font-size:.85rem; color: var(--text-soft); transition: color .2s; }
.header-phone:hover { color: var(--text); }
.header-phone svg { width:14px; height:14px; color: var(--gold); }

.menu-toggle { display:flex; flex-direction:column; gap:6px; width:32px; padding: 8px 4px; }
.menu-toggle span { display:block; width:100%; height:1px; background: var(--text); transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .main-nav   { display:flex; }
  .header-cta { display:flex; }
  .menu-toggle{ display:none; }
}
.main-nav.is-open {
  display:flex; flex-direction:column; gap:0;
  position:absolute; top:80px; left:0; right:0;
  background: rgba(10,10,15,.98); backdrop-filter: blur(18px);
  border-top:1px solid var(--gold-line-2); padding: 1rem 1.25rem 1.5rem;
}
.main-nav.is-open a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }

/* -------- Hero (Startseite) -------- */
.hero { position: relative; padding: 130px 0 90px; overflow: hidden; }
@media (min-width:1024px) { .hero { padding: 160px 0 130px; } }
.hero-grid {
  display:grid; gap: 2.5rem; align-items:center; grid-template-columns: 1fr;
}
@media (min-width:1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3.5rem; } }
.hero-image { position:relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow:hidden; animation: glow-pulse 4s ease-in-out infinite; }
.hero-image img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.hero-image-overlay { position:absolute; inset:0; background: linear-gradient(to top, var(--bg) 0%, transparent 55%); pointer-events:none; }
.rating-badge {
  position:absolute; bottom:-22px; right:14px; padding: .9rem 1.1rem;
  background: rgba(10,10,15,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line); border-radius: var(--radius);
  display:flex; align-items:center; gap:.85rem;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.6);
}
@media (min-width:1024px) { .rating-badge { right: 40px; } }
.rating-badge .stars { display:flex; gap:2px; color: var(--gold); }
.rating-badge .stars svg { width:14px; height:14px; }
.rating-value { font-size:.9rem; color: var(--text); font-weight:500; }
.rating-sub   { font-size:11px; color: var(--text-mute); margin-top:2px; }
.hero-text .display { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.hero-lead { margin-top: 1.75rem; color: var(--text-soft); font-size: 1.05rem; line-height: 1.7; max-width: 32rem; }
.hero-actions { margin-top: 2.25rem; display:flex; flex-wrap:wrap; gap: 1rem; }
.hero-stats { margin-top: 3rem; display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 28rem; }
.stat { border-left: 1px solid var(--gold-line); padding-left: 1rem; }
.stat-value { font-family: var(--font-display); font-size: 1.5rem; }

/* -------- Sternenfeld / Dekor -------- */
.star-field {
  position:absolute; inset:0; pointer-events:none; overflow:hidden;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 70%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, var(--gold) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 90%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 60%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, var(--gold) 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 10%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 15%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, var(--gold) 50%, transparent 100%);
  animation: star-twinkle 6s ease-in-out infinite alternate;
  opacity: .55;
}
@keyframes star-twinkle { 0% { opacity:.25; } 100% { opacity:.65; } }

/* -------- Page-Hero (Unterseiten) -------- */
.page-hero { position: relative; padding: 150px 0 70px; border-bottom: 1px solid var(--gold-line-2); overflow: hidden; }
@media (min-width:1024px) { .page-hero { padding: 200px 0 110px; } }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.08; }
.page-hero h1 em { font-style: italic; }
.page-hero p { margin-top: 1.25rem; color: var(--text-soft); max-width: 56ch; font-size: 1.05rem; line-height: 1.7; }
.breadcrumb { display:flex; gap:.5rem; font-size:.78rem; color: var(--text-mute); letter-spacing:.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-faint); }

/* -------- Marquee -------- */
.marquee { border-top:1px solid var(--gold-line-2); border-bottom:1px solid var(--gold-line-2); background: rgba(12,12,18,.6); padding: 2rem 0; overflow:hidden; }
.marquee-track { display:flex; gap: 4rem; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: rgba(205,191,163,.4); transition: color .3s; }
.marquee-track span:hover { color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* -------- Section-Head -------- */
.section-head { display:grid; gap: 2rem; align-items: end; grid-template-columns: 1fr; margin-bottom: 4rem; }
@media (min-width:1024px) { .section-head { grid-template-columns: 7fr 5fr; gap: 3rem; margin-bottom: 5rem; } }
.head-right p { color: var(--text-soft); line-height: 1.7; }
@media (min-width:1024px) { .head-right { padding-left: 2.5rem; border-left: 1px solid var(--gold-line); } }

/* -------- Services-Grid -------- */
.services-grid { display:grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width:768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position:relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow:hidden;
  border: 1px solid rgba(212,175,122,.2); transition: transform .5s;
}
@media (min-width:1024px) { .service-card.offset { transform: translateY(48px); } }
.service-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform 1s; }
.service-card:hover img { transform: scale(1.05); }
.service-overlay { position:absolute; inset:0; background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,15,.4) 50%, transparent 100%); }
.service-icon {
  position:absolute; top:18px; right:18px; width:40px; height:40px; border-radius:50%;
  border:1px solid var(--gold-line); background: rgba(10,10,15,.6); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center; color: var(--gold);
}
.service-icon svg { width:16px; height:16px; }
.service-body { position:absolute; inset: auto 0 0 0; padding: 1.75rem; }
.service-meta { display:flex; align-items:center; gap:.75rem; margin-bottom:.75rem; }
.service-meta .rule-sm { width:24px; height:1px; background: rgba(212,175,122,.6); }
.service-body h3 { font-family: var(--font-display); font-weight:400; font-size: 1.85rem; line-height: 1.1; color: var(--text); }
.service-body p  { margin-top:.75rem; font-size:.9rem; color: var(--text-soft); line-height: 1.6; }
.tag-list { margin-top: 1.25rem; display:flex; flex-wrap:wrap; gap: .5rem; }
.tag-list li { font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--text-soft); border:1px solid rgba(212,175,122,.25); border-radius: 999px; padding: 4px 12px; }

/* -------- Process -------- */
.process-grid { display:grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width:1024px) { .process-grid { grid-template-columns: 4fr 8fr; gap: 4rem; align-items: start; } .process-aside { position: sticky; top: 130px; } }
.process-aside p { margin-top: 1.5rem; color: var(--text-soft); line-height: 1.7; }
.led-line { position:relative; height:1px; max-width: 22rem; margin-top: 2rem; overflow:hidden;
  background: linear-gradient(90deg, transparent, rgba(108,196,255,.4), rgba(123,108,255,.6), rgba(212,175,122,.6), transparent);
}
.led-line::before { content:""; position:absolute; top:-1px; left:-30%; width:30%; height:3px; filter: blur(2px);
  background: linear-gradient(90deg, transparent, var(--gold), #fff, var(--gold), transparent);
  animation: led-sweep 6s linear infinite;
}
@keyframes led-sweep { 0%{left:-30%;} 100%{left:110%;} }
.process-steps { display:flex; flex-direction:column; gap: 3rem; }
.process-steps li { display:grid; grid-template-columns: 80px 1fr; gap: 1.25rem; align-items: start; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 3rem; line-height: 1; color: rgba(212,175,122,.65); transition: color .3s; }
.process-steps li:hover .step-num { color: var(--gold); }
.step-body { padding-top: .75rem; border-top: 1px solid var(--gold-line); }
.step-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.65rem; color: var(--text); }
.step-body p { margin-top: .75rem; color: var(--text-soft); line-height: 1.7; max-width: 36rem; }
@media (min-width:1024px) { .step-num { font-size: 3.75rem; } .step-body h3 { font-size: 1.85rem; } }

/* -------- Why-Us -------- */
.why-grid { display:grid; gap: 3rem; align-items:center; grid-template-columns: 1fr; }
@media (min-width:1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-image { position:relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow:hidden; border: 1px solid rgba(212,175,122,.2); }
.why-image img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.why-image-overlay { position:absolute; inset:0; background: linear-gradient(to top right, rgba(10,10,15,.7) 0%, transparent 60%); }
.why-badge { display:none; position:absolute; top:-22px; left:-22px; background: var(--bg); border:1px solid var(--gold-line); border-radius: var(--radius); padding: 1.1rem; max-width: 200px; }
@media (min-width:1024px) { .why-badge { display:block; } }
.why-badge-num { font-family: var(--font-display); font-style: italic; font-size: 1.85rem; }
.why-features { margin-top: 2.5rem; display:grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width:640px) { .why-features { grid-template-columns: repeat(2, 1fr); } }
.why-feature { display:flex; gap: 1rem; }
.why-icon { flex-shrink:0; width:40px; height:40px; border:1px solid var(--gold-line); border-radius: var(--radius); display:flex; align-items:center; justify-content:center; background: rgba(212,175,122,.05); color: var(--gold); }
.why-icon svg { width:16px; height:16px; }
.why-feature h4 { font-family: var(--font-display); font-weight:400; font-size: 1.1rem; color: var(--text); }
.why-feature p { margin-top: 4px; font-size: .85rem; color: var(--text-mute); }

/* -------- Pricing-Grid -------- */
.pricing-grid { display:grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width:768px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.price-card {
  position:relative; padding: 2rem; border:1px solid var(--gold-line-2);
  background: rgba(12,12,18,.4); border-radius: var(--radius);
  display:flex; flex-direction:column;
}
.price-card.highlight { border-color: rgba(212,175,122,.6); background: linear-gradient(to bottom, rgba(212,175,122,.08), transparent); }
@media (min-width:1024px) { .price-card.highlight { transform: translateY(-16px); } }
.ribbon { position:absolute; top:-12px; left:24px; background: var(--gold); color:#100c08; font-size:10px; letter-spacing:.3em; text-transform:uppercase; padding: 4px 12px; border-radius: var(--radius); font-weight:600; }
.price-card h3 { font-family: var(--font-display); font-weight:400; font-size: 1.85rem; margin-top: .25rem; color: var(--text); }
.price { font-family: var(--font-display); font-size: 2.25rem; margin-top: 1.25rem; }
.price-card > p { margin-top: 1rem; font-size:.9rem; color: var(--text-soft); line-height: 1.65; }
.check-list { display:flex; flex-direction:column; gap:.75rem; flex:1; }
.check-list li { position:relative; padding-left: 1.75rem; font-size:.9rem; color: var(--text-soft); }
.check-list li::before {
  content:""; position:absolute; left:0; top:.45rem; width:14px; height:14px; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") no-repeat center / contain;
}
.price-card-actions { margin-top: 1.25rem; display:flex; flex-direction:column; gap:.6rem; }
.price-foot { display:block; text-align:center; margin-top: 2.5rem; color: var(--text-faint) !important; }

/* -------- FAQ -------- */
.faq-grid { display:grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width:1024px) { .faq-grid { grid-template-columns: 4fr 8fr; gap: 2.5rem; } }
.faq-aside p { margin-top: 1.5rem; color: var(--text-soft); line-height: 1.7; }
.faq-list { border-top:1px solid var(--gold-line-2); border-bottom:1px solid var(--gold-line-2); }
.faq-list details { border-bottom:1px solid var(--gold-line-2); }
.faq-list details:last-child { border-bottom:none; }
.faq-list summary {
  list-style:none; cursor:pointer; display:flex; align-items:center; gap: 1.25rem;
  padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--text);
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-num { color: rgba(212,175,122,.6); font-family: var(--font-display); font-style:italic; font-size:.95rem; }
.faq-q { flex:1; }
.faq-icon { width:18px; height:18px; flex-shrink:0; position:relative; }
.faq-icon::before, .faq-icon::after {
  content:""; position:absolute; top:50%; left:50%; width:14px; height:1px; background: var(--gold);
  transform: translate(-50%,-50%); transition: transform .3s, opacity .3s;
}
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] .faq-icon::after { opacity:0; }
.faq-list summary:hover .faq-num { color: var(--gold); }
.faq-a { padding: 0 0 1.5rem 3.5rem; color: var(--text-soft); line-height: 1.7; max-width: 42rem; animation: faq-fade .35s ease; }
@keyframes faq-fade { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: none; } }

/* -------- Contact / Formular -------- */
.contact-grid { position:relative; z-index:1; display:grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width:1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.contact-info p { margin-top: 1.5rem; color: var(--text-soft); line-height: 1.7; max-width: 28rem; }
.contact-rows { margin-top: 3rem; display:flex; flex-direction:column; gap: 1.5rem; }
.contact-rows li > a, .contact-rows li { display:flex; align-items:flex-start; gap: 1rem; transition: color .2s; }
.contact-icon {
  flex-shrink:0; width:40px; height:40px; border:1px solid var(--gold-line); border-radius: var(--radius);
  background: rgba(212,175,122,.05); color: var(--gold);
  display:flex; align-items:center; justify-content:center; transition: background .25s;
}
.contact-icon svg { width:16px; height:16px; }
.contact-rows a:hover .contact-icon { background: rgba(212,175,122,.12); }
.contact-rows a:hover .contact-value { color: var(--gold); }
.contact-value { display:block; color: var(--text); margin-top: 4px; transition: color .2s; }

.contact-form { display:flex; flex-direction:column; gap: 1.25rem; }
@media (min-width:1024px) { .contact-form { padding-left: 3rem; border-left: 1px solid var(--gold-line); } }
.form-row { display:grid; gap: 1.25rem; }
.form-row.two { grid-template-columns: 1fr; }
@media (min-width:640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display:flex; flex-direction:column; gap: .5rem; }
.field input, .field select, .field textarea {
  background: rgba(12,12,18,.6); border:1px solid rgba(212,175,122,.25); border-radius: var(--radius);
  padding: .75rem 1rem; color: var(--text); font-size: .95rem; transition: border-color .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(205,191,163,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); background: rgba(12,12,18,.8); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px; padding-right: 2.5rem;
}
.field select option { background:#14121c; color: var(--text); }
.checkbox-row { display:flex; align-items:flex-start; gap:.75rem; font-size:12px; color: var(--text-mute); line-height: 1.5; cursor: pointer; }
.checkbox-row input { margin-top: 3px; accent-color: var(--gold); }
.form-status { margin-top: .5rem; padding: .85rem 1rem; border:1px solid var(--gold-line); border-radius: var(--radius); background: rgba(212,175,122,.08); color: var(--text); font-size:.9rem; }

/* -------- Paket-Detailseite -------- */
.pkg-grid { display:grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width:1024px) { .pkg-grid { grid-template-columns: 6fr 6fr; gap: 4rem; } }
.pkg-image { position:relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow:hidden; border:1px solid var(--gold-line); }
.pkg-image img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.pkg-image .ribbon { top: 18px; left: 18px; }
.pkg-image-overlay { position:absolute; inset:0; background: linear-gradient(to top, rgba(10,10,15,.4) 0%, transparent 50%); }
.pkg-text h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.8vw, 3.6rem); line-height: 1.08; color: var(--text); }
.pkg-text h1 em { font-style: italic; }
.pkg-price-row { display:flex; align-items:baseline; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.pkg-price { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); color: var(--gold); }
.pkg-price-sub { color: var(--text-mute); font-size:.9rem; }
.pkg-text > p { margin-top: 1.5rem; color: var(--text-soft); line-height: 1.7; }
.pkg-actions { margin-top: 2rem; display:flex; flex-wrap:wrap; gap: 1rem; }

.specs-grid { display:grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width:640px)  { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .specs-grid { grid-template-columns: repeat(4, 1fr); } }
.spec {
  padding: 1.25rem; border: 1px solid var(--gold-line-2); border-radius: var(--radius);
  background: rgba(12,12,18,.4);
}
.spec .eyebrow { font-size: .65rem; }
.spec-value { font-family: var(--font-display); font-size: 1.4rem; margin-top: .35rem; color: var(--text); }

.feature-list { display:grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width:640px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li { display:flex; gap:.75rem; align-items: flex-start; color: var(--text-soft); font-size:.95rem; line-height: 1.55; }
.feature-list li::before {
  content:""; flex-shrink:0; margin-top:.35rem; width: 14px; height: 14px; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.cta-banner {
  position: relative; overflow: hidden; padding: 3rem 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,175,122,.10) 0%, rgba(123,108,255,.08) 100%);
  border: 1px solid var(--gold-line); text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-banner p  { margin-top: 1rem; color: var(--text-soft); max-width: 46ch; margin-left:auto; margin-right:auto; }
.cta-banner .hero-actions { justify-content: center; }

/* -------- Legal / Prose-Seiten -------- */
.prose { max-width: 72ch; margin: 0 auto; color: var(--text-soft); font-size: 1rem; line-height: 1.8; }
.prose h1, .prose h2, .prose h3 { font-family: var(--font-display); color: var(--text); font-weight: 400; line-height: 1.2; }
.prose h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.prose h2 { font-size: clamp(1.4rem, 2.8vw, 1.85rem); margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gold-line-2); }
.prose h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: .5rem; color: var(--gold); }
.prose p  { margin-bottom: 1.1rem; }
.prose a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold-line); transition: text-decoration-color .25s; }
.prose a:hover { text-decoration-color: var(--gold); }
.prose ul { margin: .5rem 0 1.25rem 1.25rem; list-style: disc; }
.prose ul li { margin-bottom: .4rem; padding-left: .25rem; }
.prose ul li::marker { color: var(--gold); }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--gold-soft); font-style: italic; }
.prose address { font-style: normal; margin-bottom: 1rem; }
.prose hr { border: none; height: 1px; background: var(--gold-line-2); margin: 2rem 0; }

/* -------- 404 -------- */
.notfound { min-height: 70vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 140px 1rem 80px; }
.notfound-num { font-family: var(--font-display); font-style: italic; font-size: clamp(5rem, 18vw, 10rem); line-height: 1; }
.notfound h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1rem; }
.notfound p { color: var(--text-soft); margin-top: 1rem; max-width: 46ch; margin-inline: auto; }

/* -------- Footer -------- */
.site-footer { background: var(--bg-3); border-top: 1px solid var(--gold-line-2); padding: 4.5rem 0 2rem; }
.footer-grid { display:grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width:1024px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; gap: 2rem; } }
.footer-brand p { margin-top: 1.25rem; color: var(--text-mute); font-size:.9rem; max-width: 24rem; line-height: 1.7; }
.socials { margin-top: 1.5rem; display:flex; gap:.75rem; }
.socials a { width:40px; height:40px; border-radius:50%; border:1px solid var(--gold-line); color: var(--gold); display:flex; align-items:center; justify-content:center; transition: background .25s, border-color .25s; }
.socials a:hover { background: rgba(212,175,122,.1); border-color: rgba(212,175,122,.6); }
.socials svg { width:16px; height:16px; }
.footer-col .eyebrow { margin-bottom: 1rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.55rem; }
.footer-col a, .footer-col address { font-size:.9rem; color: var(--text-soft); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col address { font-style: normal; line-height: 1.7; }
.site-footer .led-line { max-width: none; margin: 3.5rem 0 1.5rem; }
.footer-bottom { display:flex; flex-direction:column; gap:.5rem; font-size:12px; color: var(--text-faint); }
@media (min-width:768px) { .footer-bottom { flex-direction:row; align-items:center; justify-content:space-between; } }
.footer-tag { font-family: var(--font-display); font-style: italic; }

/* -------- Reveal-Animation -------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .9s, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:0s !important; transition-duration:0s !important; }
  .reveal { opacity: 1; transform: none; }
}
