/* Premium Brand – additive enhancements (Hero, CTA, Trust, Placeholders) */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10200;
  padding: 0.75rem 1.25rem;
  background: var(--accent, #ffea00);
  color: #0a0a0c;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ── Hero media placeholder (future video / detail shot) ── */
.hero--premium .hero-bg.hero-media-placeholder {
  position: absolute;
  inset: 0;
}

.hero-media-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 72% 38%, rgba(255, 234, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 18% 72%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: hero-glow-drift 14s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
  0% { opacity: 0.65; transform: scale(1) translate(0, 0); }
  100% { opacity: 1; transform: scale(1.05) translate(2%, -1%); }
}

.hero--premium .hero-overlay {
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.55) 48%, rgba(8, 8, 10, 0.35) 100%),
    linear-gradient(180deg, transparent 40%, rgba(8, 8, 10, 0.75) 100%);
}

.hero--premium .hero-inner {
  position: relative;
  z-index: 2;
}

.hero--premium .hero-sub {
  max-width: 36rem;
  line-height: 1.65;
}

/* ── Before/After placeholders (swap img src later) ── */
.lux-before-after {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.before-after-placeholder {
  position: relative;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(22, 22, 26, 0.95) 0%, rgba(12, 12, 14, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.before-after-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 58%
  );
  animation: ba-shine 6s ease-in-out infinite;
}

@keyframes ba-shine {
  0%, 100% { transform: translateX(-30%); opacity: 0.4; }
  50% { transform: translateX(30%); opacity: 0.85; }
}

.before-after-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.before-after-placeholder-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.before-after-placeholder-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 234, 0, 0.25);
  border-radius: 4px;
  color: var(--accent, #ffea00);
}

.home-before-after .ba-slider {
  margin-top: 2rem;
}

/* ── Premium process (5 steps) ── */
.lux-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: min(1140px, 92vw);
  margin-inline: auto;
}

.lux-process-step {
  padding: 1.35rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius, 12px);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.lux-process-step:hover {
  border-color: rgba(255, 234, 0, 0.28);
  transform: translateY(-2px);
}

.lux-process-nr {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent, #ffea00);
  margin-bottom: 0.5rem;
}

.lux-process-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.lux-process-step p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ── Trust grid (home) ── */
.lux-trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.lux-trust-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.lux-trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #ffea00);
  box-shadow: 0 0 8px rgba(255, 234, 0, 0.5);
}

/* ── Warum story block ── */
.warum-story {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.warum-story h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.warum-story p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Geschichte (Zoran & David) ── */
.geschichte-feature {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: var(--bg-card, rgba(0, 0, 0, 0.35));
  box-shadow: var(--shadow, 0 12px 40px rgba(0, 0, 0, 0.35));
}

.geschichte-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 820;
  object-fit: cover;
  border-radius: var(--radius, 12px);
}

.geschichte-feature figcaption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.geschichte-story {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.geschichte-story-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  margin: 0 0 1.25rem;
  color: var(--yellow, #ffea00);
  letter-spacing: 0.02em;
}

.geschichte-story p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}

.geschichte-lead {
  font-size: clamp(1.15rem, 2.8vw, 1.35rem) !important;
  line-height: 1.55 !important;
  color: var(--text, #f5f5f5) !important;
  font-weight: 600;
  margin-bottom: 1.5rem !important;
}

.geschichte-values {
  margin: 2rem 0 2.5rem;
  padding: 2rem 0;
  border-radius: var(--radius, 4px);
}

.geschichte-values-inner {
  max-width: 44rem;
}

.geschichte-values-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.geschichte-values-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.geschichte-values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--yellow, #ffea00);
  border-radius: 50%;
}

.geschichte-quote {
  margin: 0 0 2.5rem;
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--yellow, #ffea00);
  background: rgba(255, 234, 0, 0.06);
  border-radius: 0 var(--radius, 4px) var(--radius, 4px) 0;
  max-width: 44rem;
}

.geschichte-quote p {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text, #f5f5f5);
}

.geschichte-tagline {
  margin: 0 !important;
  font-size: 1.25rem !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.geschichte-tagline span {
  color: var(--yellow, #ffea00);
}

.geschichte-gallery {
  max-width: 52rem;
  margin: 0 auto 2.75rem;
}

.geschichte-gallery-inner .section-head {
  margin-bottom: 1.25rem;
  text-align: center;
}

.geschichte-gallery-inner .section-head h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin: 0.35rem 0 0.5rem;
}

.geschichte-gallery-inner .section-intro {
  max-width: 36rem;
  margin: 0 auto;
}

.geschichte-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.section-cta-wrap.page-cta-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
  text-align: left;
}

/* ── Paket premium labels ── */
.pkg-premium-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #ffea00);
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.card-package h3 {
  margin-top: 0;
}

/* ── Gallery categories ── */
.gallery-categories {
  padding-bottom: 2rem;
}

.gallery-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-category-tab {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  pointer-events: auto;
  font-family: inherit;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.gallery-category-tab:hover,
.gallery-category-tab.is-active {
  border-color: var(--yellow, #ffea00);
  color: var(--heading, #fff);
  background: rgba(255, 234, 0, 0.08);
}

.gallery-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-category {
  border-radius: var(--radius, 12px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface, #111);
}

.gallery-category-media,
.detail-shot-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 160px;
  background: rgba(10, 10, 12, 1);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
}

.gallery-category-media::after,
.detail-shot-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 234, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-category-media .zoomable-trigger,
.detail-shot-placeholder .zoomable-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.gallery-category-media .zoomable-trigger img,
.detail-shot-placeholder .zoomable-trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.5s var(--ease, ease);
}

.gallery-category-media:hover .zoomable-trigger img,
.detail-shot-placeholder:hover .zoomable-trigger img {
  transform: scale(1.03);
}

.gallery-category-media .zoom-hint,
.detail-shot-placeholder .zoom-hint {
  z-index: 3;
  pointer-events: none;
}

.gallery-category-caption {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-category-note {
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ── Kontakt enhancements ── */
.contact-form-lead {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.contact-whatsapp-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-left: 2px solid rgba(255, 234, 0, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}

.field-optional {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}

/* ── Kontakt: kompaktes Layout (eine Bildschirmhöhe) ── */
#kontakt.section {
  padding-bottom: 1.5rem;
}

#kontakt .section-head {
  padding: 1.25rem 0 0.85rem;
  margin-bottom: 0.75rem;
}

#kontakt.page-hero .section-head h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

#kontakt .section-intro {
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

#kontakt .contact-grid {
  gap: 1rem 1.75rem;
}

#kontakt .contact-info p {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

#kontakt .contact-info .btn {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

#kontakt .contact-list li {
  margin-bottom: 0.55rem;
}

#kontakt .contact-list a,
#kontakt .contact-list span {
  font-size: 0.9rem;
}

#kontakt .contact-form--compact.card,
#kontakt .contact-verify-panel.card,
#kontakt .contact-success.card {
  padding: 1rem 1.15rem;
}

#kontakt .contact-form-lead {
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

#kontakt .contact-form--compact .form-row {
  gap: 0.6rem;
}

#kontakt .contact-form--compact .form-row .field {
  margin-bottom: 0.45rem;
}

#kontakt .contact-form--compact .field label {
  margin-bottom: 0.2rem;
  font-size: 0.58rem;
}

#kontakt .contact-form--compact .field input,
#kontakt .contact-form--compact .field select,
#kontakt .contact-form--compact .field textarea,
#kontakt .contact-form--compact .date-picker-trigger {
  padding: 0.5rem 0.65rem;
  font-size: 0.86rem;
}

#kontakt .contact-form--compact .field textarea {
  min-height: 2.5rem;
  resize: vertical;
}

#kontakt .contact-form--compact .form-row--termin-msg {
  align-items: start;
}

#kontakt .contact-whatsapp-hint {
  font-size: 0.72rem;
  line-height: 1.35;
  margin: 0.25rem 0 0.35rem;
  padding: 0.4rem 0.6rem;
}

#kontakt .contact-form--compact .checkbox {
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  gap: 0.45rem;
  line-height: 1.35;
}

#kontakt .contact-form--compact .btn-block {
  padding: 0.6rem 1rem;
}

#kontakt .contact-form--compact .form-msg {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

#kontakt .contact-verify-panel {
  margin-top: 0;
}

#kontakt .detailer-verify-title {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

#kontakt .detailer-verify-lead {
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

#kontakt .detailer-verify-field {
  margin-bottom: 0.55rem;
}

#kontakt .detailer-verify-code {
  font-size: 1.2rem;
  padding: 0.55rem 0.75rem;
  max-width: 13rem;
}

#kontakt .detailer-verify-actions {
  gap: 0.45rem;
}

#kontakt .detailer-verify-actions .btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
}

/* ── Sticky mobile CTA bar ── */
.sticky-cta--bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10100;
  padding: 0.5rem 0.65rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 12, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease, ease);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.sticky-cta--bar.is-visible {
  transform: translateY(0);
}

.sticky-cta--bar .sticky-cta-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  max-width: 520px;
  margin-inline: auto;
}

.sticky-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 48px;
  padding: 0.45rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-tap-highlight-color: transparent;
}

.sticky-cta-item--primary {
  background: var(--yellow-btn, #dcc832);
  color: #0a0a0c;
  border-color: var(--yellow-btn-border, #c4b028);
  box-shadow: none;
}

.sticky-cta-item[hidden] {
  display: none !important;
}

.sticky-cta-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .sticky-cta--bar {
    display: block;
  }

  .sticky-cta--bar:not(.is-visible) {
    pointer-events: none;
  }
}

@media (min-width: 901px) {
  .sticky-cta--bar {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .lux-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .gallery-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lux-process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-category-grid {
    grid-template-columns: 1fr;
  }

  .lux-trust-points {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-glow,
  .before-after-placeholder::before {
    animation: none;
  }
}
