/* Premium Domain Landing – Schwarz / Gold */
:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-light: #e8e6e1;
  --text: #f5f5f5;
  --text-dark: #1a1a1a;
  --muted: #b0b0b0;
  --muted-dark: #5a5a5a;
  --gold: #c5a059;
  --gold-dim: #9a7d42;
  --gold-glow: rgba(197, 160, 89, 0.35);
  --border: rgba(197, 160, 89, 0.35);
  --border-light: rgba(0, 0, 0, 0.12);
  --danger: #e57373;
  --success: #81c784;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 4px;
  --font: "Lato", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.luxury-page {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 300;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--gold:hover { background: color-mix(in srgb, var(--gold) 88%, #fff); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: rgba(197, 160, 89, 0.12); }
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 0.9rem 1.75rem; font-size: 0.8rem; }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.7rem; }
.btn--block { width: 100%; }

/* Header */
.lux-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.lux-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.lux-brand {
  text-decoration: none;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lux-brand__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lux-brand__tagline {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font);
}
.lux-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: center;
}
.lux-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lux-nav a:hover { color: var(--gold); }
.lux-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lux-header__stat {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Hero */
.lux-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  background: var(--bg-soft) center/cover no-repeat;
}
.lux-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #000 0%, #000 55%, #000 100%);
  pointer-events: none;
}
.lux-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
  max-width: 640px;
}
.lux-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: #fff;
}
.lux-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.lux-hero__text {
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
}
.lux-hero__stats {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Trust badges */
.lux-trust {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.lux-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.lux-trust__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lux-trust__icon svg { width: 20px; height: 20px; }

/* Section titles */
.lux-section-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 2.5rem;
}
.lux-section-title__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gold);
}
.lux-section-title--light { color: var(--gold); }

.section { padding: 4rem 0; }

/* Features */
.lux-features {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lux-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.lux-feature {
  text-align: center;
}
.lux-feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.lux-feature__icon svg { width: 40px; height: 40px; }
.lux-feature h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}
.lux-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Split + Form */
.lux-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.lux-split__left {
  position: relative;
  background: var(--bg-light);
  color: var(--text-dark);
  min-height: 100%;
}
.lux-split__left--has-image {
  min-height: clamp(520px, 62vh, 720px);
  overflow: hidden;
}
.lux-split__left--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    155deg,
    rgba(252, 249, 243, 0.96) 0%,
    rgba(252, 249, 243, 0.9) 38%,
    rgba(252, 249, 243, 0.72) 62%,
    rgba(20, 18, 14, 0.35) 100%
  );
}
.lux-split__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}
.lux-split__left--has-image .lux-split__heading,
.lux-split__left--has-image .lux-split__text,
.lux-split__left--has-image .lux-split__list li {
  text-shadow: 0 1px 12px rgba(252, 249, 243, 0.85);
}
.lux-split__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--text-dark);
}
.lux-split__text {
  color: var(--muted-dark);
  margin: 0 0 1.25rem;
}
.lux-split__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.lux-split__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.lux-split__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.lux-split__figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.lux-split__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.lux-split__right {
  background: var(--bg);
  border-left: 1px solid var(--border);
}
.lux-form-wrap {
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 520px;
}
.lux-form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.lux-form__sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.lux-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lux-form .field {
  display: block;
  margin-bottom: 0.85rem;
}
.lux-form .field span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.lux-form input,
.lux-form select,
.lux-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
}
.lux-form input::placeholder,
.lux-form textarea::placeholder { color: #666; }
.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-glow);
}
.lux-form textarea { resize: vertical; min-height: 100px; }
.lux-form__privacy {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.lux-form__privacy input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }

.lux-form__domain-box {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-align: center;
  background: rgba(197, 160, 89, 0.08);
}
.lux-form__domain-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.lux-form__domain-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  word-break: break-all;
}
.lux-form__domain-price {
  display: block;
  margin: 0.85rem auto 0;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: var(--gold);
}
.lux-form__private-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Process */
.lux-process {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.lux-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem 0;
}
.lux-process__step {
  flex: 1 1 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 0.5rem;
}
.lux-process__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.lux-process__icon svg { width: 26px; height: 26px; }
.lux-process__step h3 {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.lux-process__step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.lux-process__arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.25rem;
  padding: 0 0.25rem;
  list-style: none;
}

/* FAQ */
.lux-faq {
  border-top: 1px solid var(--border);
}
.lux-faq__list { max-width: 760px; margin: 0 auto; }
.lux-faq__item {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}
.lux-faq__item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  padding: 0.85rem 0;
  list-style: none;
}
.lux-faq__item summary::-webkit-details-marker { display: none; }
.lux-faq__item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hinweis für eingeloggte Admins bei aktivem Wartungsmodus */
.site-admin-notice {
  position: sticky;
  top: 0;
  z-index: 2000;
  padding: 0.65rem 1rem;
  background: #1a1408;
  border-bottom: 1px solid color-mix(in srgb, var(--gold, #c5a059) 45%, transparent);
  color: #f5e6c8;
  font-size: 0.85rem;
  text-align: center;
}
.site-admin-notice p { margin: 0; }
.site-admin-notice a {
  color: var(--gold, #c5a059);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.has-admin-maintenance-notice .skip-link { top: 2.75rem; }

/* Wartung / Coming Soon */
.lux-maintenance__hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-soft) center/cover no-repeat;
}
.lux-maintenance__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #000 0%, #000 55%, #000 100%);
  pointer-events: none;
}
.lux-maintenance__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 0 2rem;
  max-width: 640px;
}
.lux-maintenance__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
}
.lux-maintenance__domain {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}
.lux-maintenance__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #fff;
}
.lux-maintenance__text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.lux-maintenance__foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  margin-top: auto;
}
.lux-maintenance__brand {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.lux-maintenance__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Bildschutz (kein Rechtsklick / kein Ziehen) */
img {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* More domains */
.lux-domains {
  border-top: 1px solid var(--border);
  text-align: center;
}
.lux-domains__lead { color: var(--muted); margin: -1.5rem 0 2rem; }
.lux-domains__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  text-align: left;
}
.lux-domains__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lux-domains__list a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.lux-domains__list a:hover { text-decoration: underline; }
.lux-domains__list span { color: var(--muted); font-size: 0.9rem; }

/* Footer */
.lux-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 5rem;
  background: var(--bg);
}
.lux-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lux-footer__brand-line {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.lux-footer__tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.lux-trust--footer { margin: 0; justify-content: flex-end; }
.lux-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-nav { display: flex; gap: 1rem; }
.footer-link,
.inline-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}
.footer-stats { margin: 0; }

/* Ads */
.lux-ad { padding: 1.5rem 0; }
.lux-ad__heading {
  text-align: center;
  margin: 0 0 1rem;
  font-family: var(--font-serif);
}
.lux-ad__title {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.lux-ad__badge {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.ad-slot { text-align: center; min-height: 60px; }
.ad-placeholder {
  padding: 1rem;
  border: 1px dashed var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
.ad-content img { max-width: 100%; height: auto; }

/* Form feedback */
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}
.form-feedback.is-success {
  background: rgba(129, 199, 132, 0.12);
  border: 1px solid rgba(129, 199, 132, 0.4);
  color: var(--success);
}
.form-feedback.is-error {
  background: rgba(229, 115, 115, 0.12);
  border: 1px solid rgba(229, 115, 115, 0.4);
  color: var(--danger);
}

/* Promo */
.promo-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: min(300px, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  background: #111;
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.promo-widget[hidden] { display: none !important; }
.promo-widget__close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}
.promo-widget__text { margin: 0 0 0.85rem; font-size: 0.92rem; font-weight: 600; }
.promo-widget__pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

/* Consent overlay */
body.consent-locked { overflow: hidden; }
body.consent-locked .site-main { pointer-events: none; }
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.92);
}
.consent-overlay[hidden] { display: none !important; }
.consent-overlay__panel {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: #111;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.consent-overlay h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin: 0 0 0.5rem;
}
.consent-overlay__intro { color: var(--muted); margin: 0 0 1.25rem; }
.consent-overlay__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.consent-overlay__legal { margin: 1rem 0 0; font-size: 0.85rem; text-align: center; color: var(--muted); }
.consent-categories { display: flex; flex-direction: column; gap: 0.75rem; }
.consent-cat {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}
.consent-cat--required { border-color: var(--border); }
.consent-cat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}
.consent-cat__head h3 { margin: 0; font-size: 0.95rem; }
.consent-cat__badge { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; }
.consent-cat__detail { margin: 0; font-size: 0.82rem; color: var(--muted); }
.consent-cat__list { margin: 0.5rem 0 0; padding-left: 1.1rem; font-size: 0.78rem; color: var(--muted); }
.consent-cat__list code { color: var(--gold); }
.consent-toggle { position: relative; display: inline-flex; cursor: pointer; }
.consent-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-toggle__ui {
  width: 44px;
  height: 24px;
  background: #333;
  border-radius: 999px;
  transition: background 0.2s;
  position: relative;
}
.consent-toggle__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.consent-toggle input:checked + .consent-toggle__ui { background: var(--gold); }
.consent-toggle input:checked + .consent-toggle__ui::after { transform: translateX(20px); }

/* Modals */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.modal__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: 85vh;
  background: #111;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__header h2 { margin: 0; color: var(--gold); font-family: var(--font-serif); }
.modal__close { background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.modal__body { padding: 1.25rem; overflow-y: auto; color: var(--muted); }
.legal-content h2, .legal-content h3 { color: var(--gold); margin-top: 1.25rem; }

/* Floating tools + A11y */
.floating-tools {
  position: fixed;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.floating-tools[hidden] { display: none !important; }
.floating-tools__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}
.floating-tools__btn:hover { border-color: var(--gold); color: var(--gold); }
.a11y-panel {
  position: fixed;
  left: 0.75rem;
  bottom: 5.5rem;
  z-index: 86;
  width: min(280px, calc(100vw - 1.5rem));
  max-height: min(85vh, 520px);
  overflow-y: auto;
  padding: 1rem;
  background: #111;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.a11y-panel[hidden] { display: none !important; }
.a11y-panel h3 { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--gold); }
.a11y-panel__wcag { font-size: 0.7rem; color: var(--gold); }
.a11y-panel__hint { margin: 0 0 0.75rem; font-size: 0.78rem; color: var(--muted); }
.a11y-group { border: none; margin: 0 0 0.75rem; padding: 0; }
.a11y-group legend { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 0.35rem; }
.a11y-option { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.65rem; font-size: 0.85rem; }
.a11y-option select {
  padding: 0.45rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font: inherit;
}
.a11y-option--check { flex-direction: row; align-items: center; gap: 0.5rem; }
.reading-guide {
  position: fixed;
  left: 0;
  right: 0;
  height: 40px;
  margin-top: -20px;
  background: rgba(197, 160, 89, 0.25);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
  z-index: 9999;
}

body.a11y-contrast {
  --bg: #000;
  --text: #fff;
  --muted: #eee;
  --gold: #ff0;
}
body.a11y-grayscale { filter: grayscale(100%); }
body.a11y-invert { filter: invert(1) hue-rotate(180deg); }
body.a11y-invert img { filter: invert(1) hue-rotate(180deg); }
body.a11y-underline a { text-decoration: underline !important; }
body.a11y-highlight-links a { background: rgba(255, 255, 0, 0.35) !important; color: #000 !important; }
body.a11y-focus :focus-visible { outline: 4px solid #ff0 !important; outline-offset: 3px !important; }
body.a11y-readable-font { font-family: "Lexend", var(--font), sans-serif !important; }
body.a11y-dyslexia-font { font-family: "Atkinson Hyperlegible", var(--font), sans-serif !important; }
body.a11y-align-left { text-align: left !important; }
body[data-a11y-line-height="relaxed"] { line-height: 1.75 !important; }
body[data-a11y-line-height="loose"] { line-height: 2 !important; }
body[data-a11y-letter-spacing="wide"] { letter-spacing: 0.08em !important; }
body.a11y-reduce-motion *, body.a11y-reduce-motion *::before, body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

/* Responsive */
@media (max-width: 960px) {
  .lux-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lux-split { grid-template-columns: 1fr; }
  .lux-split__right { border-left: none; border-top: 1px solid var(--border); }
  .lux-split__copy { margin: 0 auto; max-width: none; }
  .lux-split__left--has-image { min-height: clamp(420px, 55vh, 560px); }
  .lux-form-wrap { margin: 0 auto; }
  .lux-process__arrow { display: none; }
  .lux-process__steps { gap: 1.5rem; }
  .lux-header__inner { justify-content: center; }
  .lux-nav { order: 3; width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .lux-features__grid { grid-template-columns: 1fr; }
  .lux-form__row--2 { grid-template-columns: 1fr; }
  .lux-trust--footer { justify-content: flex-start; }
  .lux-footer__top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
