/* =========================================================
   Bedfords About Luxus – Site Stylesheet
   Fonts: Urbanist (Headlines), Inter (Text)
   ========================================================= */

@font-face { font-family: "Urbanist"; src: url("../fonts/urbanist-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Urbanist"; src: url("../fonts/urbanist-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Urbanist"; src: url("../fonts/urbanist-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Urbanist"; src: url("../fonts/urbanist-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

:root {
  --bg: #ffffff;
  --bg-soft: #f6f3ec;
  --ink: #121212;
  --ink-2: #575757;
  --ink-3: #8a8a8a;
  --line: #e7e9ee;
  --gold: #cc9a3a;
  --gold-dark: #b4862d;
  --gold-soft: rgba(204, 154, 58, 0.14);
  --dark: #121212;
  --dark-2: #1c1c1c;
  --on-dark-2: rgba(255, 255, 255, 0.72);
  --radius: 24px;
  --radius-sm: 16px;
  --font-head: "Urbanist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(64px, 9vw, 120px);
  --header-h: 64px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 .5em; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--gold); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark p { color: var(--on-dark-2); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 48px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head h2 { margin: 0; max-width: 20ch; }
.section-head > .side { max-width: 460px; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-2--rev > :first-child { order: 2; } }
.stack > * + * { margin-top: 16px; }

/* ---------- Media ---------- */
.media { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.media img, .media video { width: 100%; height: 100%; object-fit: cover; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x5 { aspect-ratio: 4 / 5; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--portrait { aspect-ratio: 4 / 5; }
@media (min-width: 880px) { .media--tall { aspect-ratio: 3 / 4; } }
.media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.media-pair .media { aspect-ratio: 4 / 5; border-radius: var(--radius-sm); }
@media (min-width: 880px) { .media-pair { gap: 16px; } }

/* ---------- Buttons & Links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #2a2a2a; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #f0f0f0; }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.18); }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; color: var(--ink); position: relative; padding-bottom: 6px; }
.link-arrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.link-arrow:hover::after { width: 100%; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light { color: #fff; }
.link-arrow--dash { padding-left: 34px; padding-bottom: 0; }
.link-arrow--dash::after { left: 0; top: 50%; bottom: auto; width: 22px; transform: translateY(-50%); }
.link-arrow--dash:hover::after { width: 22px; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 14px; left: 0; right: 0; z-index: 100; padding-inline: 14px; pointer-events: none; }
.site-header .bar { pointer-events: auto; max-width: var(--container); margin-inline: auto; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 10px 0 18px; border-radius: 999px; background: rgba(20, 18, 15, .55); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 40px rgba(0,0,0,.18); transition: background .3s var(--ease); }
.site-header.is-scrolled .bar { background: rgba(18, 18, 18, .82); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; }
.brand svg, .brand img { width: 40px; height: 40px; }
.brand span { font-size: .95rem; white-space: nowrap; }
@media (max-width: 420px) { .brand span { display: none; } }
.nav { display: none; align-items: center; gap: 6px; }
.nav a { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 999px; color: #fff; font-size: .875rem; font-weight: 500; background: rgba(255,255,255,.06); transition: background .2s var(--ease); }
.nav a:hover { background: rgba(255,255,255,.14); }
.nav a[aria-current="page"] { background: rgba(255,255,255,.16); }
.nav a.nav-cta { background: var(--gold); font-weight: 600; }
.nav a.nav-cta:hover { background: var(--gold-dark); }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
body.menu-open .nav-toggle .icon-close { display: block; }
body.menu-open .nav-toggle .icon-menu { display: none; }
@media (min-width: 900px) { .nav { display: flex; } .nav-toggle { display: none; } }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--dark); color: #fff; padding: calc(var(--header-h) + 40px) var(--gutter) 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s; overflow-y: auto; }
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li + li { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu a.menu-link { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: var(--font-head); font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 600; }
.mobile-menu a.menu-link svg { width: 22px; height: 22px; color: var(--gold); }
.mobile-menu a.menu-link[aria-current="page"] { color: var(--gold); }
.mobile-menu .menu-foot { display: grid; gap: 16px; }
.mobile-menu .menu-foot p { color: var(--on-dark-2); font-size: .95rem; }
.mobile-menu .menu-foot a.meta-link { color: #fff; font-weight: 500; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 0; color: #fff; min-height: clamp(560px, 82vh, 860px); display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); }
.hero--short { min-height: clamp(440px, 62vh, 620px); }
.hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.hero .hero-media img, .hero .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); }
.hero .hero-media video { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero .hero-media video.is-playing { opacity: 1; }
.hero .hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,.18) 100%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(40px, 7vw, 96px); }
.hero h1 { margin: 0; max-width: 26ch; text-shadow: 0 2px 24px rgba(0,0,0,.3); hyphens: manual; -webkit-hyphens: manual; }
.hero p { color: rgba(255,255,255,.85); max-width: 52ch; margin-top: 18px; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Cards ---------- */
.card-dark { background: var(--dark); color: #fff; border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.card-dark h3 { margin: 6px 0 0; }
.card-dark p { color: var(--on-dark-2); }
.icon-circle { width: 48px; height: 48px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; flex: none; }
.icon-circle svg { width: 22px; height: 22px; }
.icon-circle--soft { background: var(--gold-soft); color: var(--gold); }

/* Feature list (Warum) */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.feature-list svg { width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.feature-list strong { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.feature-list span { color: var(--on-dark-2); }
.panel-dark { background: var(--dark); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.panel-dark h2 { margin: 0; }

/* ---------- Carousel (Im Fokus) ---------- */
.carousel { position: relative; }
.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 999px; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s var(--ease), opacity .2s; }
.carousel-nav button:hover { background: var(--gold-dark); }
.carousel-nav button:disabled { opacity: .35; cursor: default; }
.carousel-nav svg { width: 20px; height: 20px; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
.carousel-track::-webkit-scrollbar { display: none; }
.slide { position: relative; z-index: 0; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; background: var(--dark); color: #fff; aspect-ratio: 4 / 5; isolation: isolate; }
@media (min-width: 720px) { .slide { aspect-ratio: 16 / 9; } }
@media (min-width: 1000px) { .slide { aspect-ratio: 21 / 10; } }
.slide img, .slide video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%); }
.slide-body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(22px, 4vw, 48px); max-width: 640px; }
.slide-body .eyebrow { color: var(--gold); }
.slide-body h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); margin-bottom: 10px; color: #fff; }
.slide-body p { color: rgba(255,255,255,.82); margin-bottom: 18px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 999px; background: #d7d3ca; transition: background .2s, transform .2s; }
.carousel-dots button[aria-current="true"] { background: var(--gold); transform: scale(1.3); }

/* ---------- Gallery (Unsere Arbeiten) ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: 1fr; }
.gallery .media { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(220px, 28vw, 380px); gap: 16px; }
  .gallery .media { aspect-ratio: auto; height: 100%; }
  .gallery .g1 { grid-column: span 7; } .gallery .g2 { grid-column: span 5; }
  .gallery .g3 { grid-column: span 5; } .gallery .g4 { grid-column: span 7; }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 64px); text-align: center; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--on-dark-2); max-width: 46ch; margin: 0 auto 28px; }

/* ---------- Questions (Noch Fragen) ---------- */
.questions { display: grid; gap: 28px 64px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .questions { grid-template-columns: 1.1fr 1fr; } }
.questions h2 { margin: 0; }
.questions .side p { margin-bottom: 18px; }

/* ---------- Logos ---------- */
.logo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 32px; align-items: center; justify-items: center; }
@media (min-width: 720px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
.logo-strip img { max-height: 64px; width: auto; max-width: 180px; object-fit: contain; filter: grayscale(1) contrast(.9); opacity: .6; transition: opacity .25s, filter .25s; }
.logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 820px; margin-inline: auto; }
.quote blockquote { margin: 0 0 18px; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.25; color: #fff; }
.quote cite { font-style: normal; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; gap: 14px; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .num { color: var(--gold); font-size: .95rem; }
.faq summary svg { width: 22px; height: 22px; color: var(--ink-3); transition: transform .25s var(--ease); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .answer { padding: 16px 20px 22px 68px; }
@media (max-width: 560px) { .faq summary { grid-template-columns: 1fr 24px; } .faq summary .num { display: none; } .faq .answer { padding-left: 20px; } }

/* ---------- Tabs (Produkte) ---------- */
.tabs-nav { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.tabs-nav button { padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--ink-2); transition: background .2s var(--ease), color .2s var(--ease); white-space: nowrap; }
.tabs-nav button[aria-selected="true"] { background: var(--dark); color: #fff; }
.tabs-nav-wrap { display: flex; justify-content: center; margin-top: -36px; position: relative; z-index: 2; padding-inline: var(--gutter); }
.no-js .tabs-nav-wrap { display: none; }
.tabs-panel[hidden] { display: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; }
.contact-list strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.contact-list a, .contact-list span { color: var(--ink-2); overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--gold); }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-soft); color: var(--gold); transition: background .2s, color .2s; }
.social a:hover { background: var(--gold); color: #fff; }
.social svg { width: 20px; height: 20px; }
.form-card { background: #fff; border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 1px solid var(--line); }
.form-card h3 { margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea { width: 100%; font: inherit; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #cfcfcf; padding: 10px 0; border-radius: 0; transition: border-color .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-note { font-size: .82rem; color: var(--ink-3); margin: 6px 0 22px; }
.form-note a { text-decoration: underline; }
.form-status { margin-top: 14px; font-size: .9rem; min-height: 1.4em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #b23b3b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.map-card { display: grid; gap: 24px; align-items: center; background: var(--bg-soft); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .map-card { grid-template-columns: 1fr auto; } }
.map-card h3 { margin-bottom: 6px; }
.map-card p { margin: 0; }

/* ---------- Prose (Impressum / Datenschutz) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.2em; }
.prose li + li { margin-top: .3em; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose address { font-style: normal; color: var(--ink-2); margin-bottom: 1em; }
.prose .signature { width: 220px; margin-top: 40px; }
.prose .updated { font-size: .85rem; color: var(--ink-3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #fff; padding: clamp(48px, 7vw, 88px) 0 32px; margin-top: auto; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand svg { width: 56px; height: 56px; }
.footer-brand p { color: var(--on-dark-2); max-width: 36ch; font-size: .95rem; }
.site-footer h4 { font-family: var(--font-head); font-size: 1rem; margin: 0 0 16px; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer li a { color: var(--on-dark-2); font-size: .95rem; transition: color .2s; }
.site-footer li a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: calc(var(--header-h) + 60px); }
.notfound svg { width: 72px; height: 72px; margin-inline: auto; margin-bottom: 20px; }
.notfound p { max-width: 42ch; margin-inline: auto; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.text-center { text-align: center; }
.max-50 { max-width: 50ch; }
.actions { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }
.page { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* =========================================================
   Premium-Feinschliff: Bewegung, Karten, Footer, Konfigurator
   ========================================================= */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* Hero: sanfter Zoom */
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero .hero-media img { animation: heroZoom 12s var(--ease) forwards; }
.hero .hero-media video.is-playing { animation: none; }

/* Header */
.site-header .bar { transition: background .3s var(--ease), height .3s var(--ease), box-shadow .3s var(--ease); }
.site-header.is-scrolled .bar { height: 58px; box-shadow: 0 14px 40px rgba(0,0,0,.28); }
.brand svg { transition: transform .5s var(--ease); }
.brand:hover svg { transform: rotate(-8deg) scale(1.06); }
.nav a { transition: background .25s var(--ease), transform .25s var(--ease); }
.nav a:hover { transform: translateY(-1px); }

/* Buttons: Glanz + Lift */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.22) 50%, transparent 65%); transform: translateX(-130%); transition: transform .8s var(--ease); }
.btn:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(0,0,0,.55); }
.btn--gold:hover { box-shadow: 0 14px 30px -12px rgba(204,154,58,.7); }
.btn:active { transform: translateY(0); }

/* Bilder */
.media { position: relative; }
.media img { transition: transform 1.4s var(--ease); }
.media:hover img { transform: scale(1.04); }
.gallery .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 50%); opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.gallery .media:hover::after { opacity: 1; }
.slide img { transition: transform 1.6s var(--ease); }
.slide:hover img { transform: scale(1.04); }

/* Dunkle Karten */
.card-dark, .panel-dark { position: relative; overflow: hidden; background: linear-gradient(160deg, #1d1d1d 0%, #0f0f0f 100%); border: 1px solid rgba(255,255,255,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 48px -30px rgba(0,0,0,.7); transition: transform .55s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease); }
.card-dark::before, .panel-dark::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(460px 240px at 0% 0%, rgba(204,154,58,.22), transparent 62%); opacity: .75; transition: opacity .55s var(--ease); pointer-events: none; }
.card-dark::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; border: 1px solid rgba(204,154,58,.18); pointer-events: none; transition: transform .8s var(--ease), border-color .8s var(--ease); }
.card-dark > *, .panel-dark > * { position: relative; }
.card-dark:hover { transform: translateY(-6px); border-color: rgba(204,154,58,.38); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 36px 60px -32px rgba(0,0,0,.8), 0 0 0 1px rgba(204,154,58,.1); }
.card-dark:hover::before { opacity: 1; }
.card-dark:hover::after { transform: scale(1.25); border-color: rgba(204,154,58,.35); }
.card-dark .card-num { position: absolute; top: 26px; right: 30px; font-family: var(--font-head); font-size: .8rem; letter-spacing: .16em; color: rgba(255,255,255,.3); }
.card-dark h3 { transition: color .3s; }
.icon-circle { background: linear-gradient(135deg, #dcb05a, #b8862d); box-shadow: 0 0 0 6px rgba(204,154,58,.12), 0 12px 26px -12px rgba(204,154,58,.7); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card-dark:hover .icon-circle { transform: translateY(-2px) rotate(-6deg); box-shadow: 0 0 0 10px rgba(204,154,58,.14), 0 16px 30px -10px rgba(204,154,58,.8); }
.feature-list li { transition: transform .4s var(--ease); }
.feature-list li:hover { transform: translateX(4px); }
.feature-list svg { transition: transform .5s var(--ease), color .3s; }
.feature-list li:hover svg { transform: rotate(-12deg) scale(1.15); color: #e4bb5e; }
.cta-band { position: relative; overflow: hidden; background: linear-gradient(160deg, #1b1b1b, #0e0e0e); border: 1px solid rgba(255,255,255,.06); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(204,154,58,.18), transparent 65%); pointer-events: none; }
.cta-band > * { position: relative; }
.section--dark .quote blockquote { text-shadow: 0 2px 30px rgba(0,0,0,.4); }

/* FAQ & Tabs */
.faq details { transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.faq details:hover { border-color: rgba(204,154,58,.45); }
.faq details[open] { box-shadow: 0 16px 36px -24px rgba(0,0,0,.3); border-color: rgba(204,154,58,.35); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.faq details[open] .answer { animation: fadeUp .4s var(--ease); }
.tabs-nav button { transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.tabs-nav button:hover:not([aria-selected="true"]) { color: var(--ink); background: var(--bg-soft); }
.logo-strip img { transition: opacity .4s, filter .4s, transform .4s var(--ease); }
.logo-strip img:hover { transform: translateY(-3px); }
.contact-list li { transition: transform .35s var(--ease); }
.contact-list li:hover { transform: translateX(4px); }
.contact-list li:hover .icon-circle--soft { background: var(--gold); color: #fff; }
.icon-circle--soft { background: var(--gold-soft); color: var(--gold); box-shadow: none; }

/* Footer */
.site-footer { position: relative; background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%); padding-top: 0; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(204,154,58,.7), transparent); }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); border-bottom: 1px solid rgba(255,255,255,.08); }
@media (min-width: 880px) { .footer-top { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; } }
.footer-brand svg { width: 64px; height: 64px; }
.footer-brand p { font-size: 1rem; }
.social--dark a { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); }
.social--dark a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.social a { transition: background .25s var(--ease), color .25s, transform .25s var(--ease); }
.footer-newsletter h4 { font-size: 1.25rem; margin-bottom: 8px; }
.footer-newsletter p { color: var(--on-dark-2); max-width: 44ch; }
.newsletter-form { position: relative; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.newsletter-form input[type="email"] { flex: 1 1 240px; min-width: 0; height: 48px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font: inherit; transition: border-color .25s, background .25s; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.newsletter-form .form-status { flex-basis: 100%; margin: 4px 0 0; color: var(--on-dark-2); }
.newsletter-form .form-status.ok { color: #9fd3a5; } .newsletter-form .form-status.err { color: #f3a2a2; }
.site-footer .footer-grid { padding-top: clamp(36px, 5vw, 56px); }
.site-footer li a, .site-footer li span, .site-footer li .link-btn { color: var(--on-dark-2); font-size: .95rem; transition: color .2s, transform .25s var(--ease); display: inline-block; }
.site-footer li a:hover, .site-footer li .link-btn:hover { color: var(--gold); transform: translateX(3px); }
.link-btn { padding: 0; font: inherit; }
.site-footer h4 { letter-spacing: .02em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* Consent-Banner */
.consent { position: fixed; z-index: 120; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: flex-start; pointer-events: none; }
.consent-body { pointer-events: auto; max-width: 460px; background: rgba(18,18,18,.96); color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 22px 24px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); animation: fadeUp .5s var(--ease); }
.consent-body strong { font-family: var(--font-head); font-size: 1.1rem; display: block; margin-bottom: 6px; }
.consent-body p { color: var(--on-dark-2); font-size: .9rem; margin-bottom: 14px; }
.consent-body p a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .btn { padding: 11px 20px; font-size: .9rem; }

/* Formular-Bausteine (Kontakt, Konfigurator) */
.field-grid { display: grid; gap: 0 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.hint { font-size: .88rem; color: var(--ink-3); margin-top: 14px; }
.check { display: flex; gap: 12px; align-items: center; font-size: .9rem; color: var(--ink-2); margin-top: 8px; cursor: pointer; }
.check a { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Einheitliche Custom-Formularelemente (überall)
   ========================================================= */
:root { --fc-bg: #fff; --fc-border: #e2ddd2; --fc-border-hover: #cfc7b7; --fc-text: var(--ink); --fc-ph: #9a9a9a; --fc-label: var(--ink-2); --fc-focus: rgba(204,154,58,.16); --fc-radius: 14px; --fc-h: 52px; }
.site-footer, .section--dark, .stage, .card-dark, .panel-dark, .config-summary, .dark-form { --fc-bg: rgba(255,255,255,.06); --fc-border: rgba(255,255,255,.16); --fc-border-hover: rgba(255,255,255,.3); --fc-text: #fff; --fc-ph: rgba(255,255,255,.42); --fc-label: rgba(255,255,255,.62); --fc-focus: rgba(204,154,58,.22); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label, .f label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fc-label); margin: 0; }
.field .opt, .f .opt { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--fc-ph); }
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea,
.f input:not([type="checkbox"]):not([type="radio"]), .f select, .f textarea,
.newsletter-form input[type="email"], .toolbar input[type="search"], .toolbar select, .composer input, .login-card .field input, .note-form textarea, .admin .field input, .admin .field select, .admin .field textarea {
  width: 100%; height: var(--fc-h); padding: 0 18px; font: inherit; font-size: 1rem; color: var(--fc-text); background: var(--fc-bg);
  border: 1.5px solid var(--fc-border); border-radius: var(--fc-radius); box-shadow: none; -webkit-appearance: none; appearance: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field textarea, .f textarea, .note-form textarea, .admin .field textarea { height: auto; min-height: 120px; padding: 14px 18px; line-height: 1.55; resize: vertical; }
.field input::placeholder, .field textarea::placeholder, .f input::placeholder, .f textarea::placeholder, .newsletter-form input::placeholder, .toolbar input::placeholder, .composer input::placeholder { color: var(--fc-ph); }
.field input:hover, .field select:hover, .field textarea:hover, .f input:hover, .f select:hover, .f textarea:hover { border-color: var(--fc-border-hover); }
.field input:focus, .field select:focus, .field textarea:focus, .f input:focus, .f select:focus, .f textarea:focus, .newsletter-form input:focus, .toolbar input:focus, .toolbar select:focus, .composer input:focus, .note-form textarea:focus, .admin .field input:focus, .admin .field select:focus, .admin .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--fc-focus);
}
.field select, .f select, .toolbar select, .admin .field select { padding-right: 46px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9a3a' stroke-width='2.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 16px center; background-size: 18px; cursor: pointer; }
.field select option, .f select option { color: #111; background: #fff; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c94b4b; box-shadow: 0 0 0 4px rgba(201,75,75,.14); }
/* Checkbox & Radio */
input[type="checkbox"]:not(.opt input), input[type="radio"]:not(.opt input) { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; margin: 0; flex: none; border: 1.5px solid var(--fc-border); border-radius: 7px; background: var(--fc-bg); display: inline-grid; place-items: center; cursor: pointer; transition: all .2s var(--ease); vertical-align: middle; }
input[type="radio"]:not(.opt input) { border-radius: 50%; }
input[type="checkbox"]:not(.opt input):hover, input[type="radio"]:not(.opt input):hover { border-color: var(--gold); }
input[type="checkbox"]:not(.opt input)::after { content: ""; width: 12px; height: 12px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat; transform: scale(0); transition: transform .2s var(--ease); }
input[type="radio"]:not(.opt input)::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #fff; transform: scale(0); transition: transform .2s var(--ease); }
input[type="checkbox"]:not(.opt input):checked, input[type="radio"]:not(.opt input):checked { background: var(--gold); border-color: var(--gold); box-shadow: 0 6px 16px -8px rgba(204,154,58,.8); }
input[type="checkbox"]:not(.opt input):checked::after, input[type="radio"]:not(.opt input):checked::after { transform: scale(1); }
input[type="checkbox"]:not(.opt input):focus-visible, input[type="radio"]:not(.opt input):focus-visible { outline: none; box-shadow: 0 0 0 4px var(--fc-focus); }
.check { align-items: center; gap: 12px; }
.check input { margin: 0; }
.newsletter-form { gap: 10px; }
.newsletter-form .btn { height: var(--fc-h); }
.form-card .field { margin-bottom: 16px; }
