@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   SCHIMMERZEIT — LUXURY JEWELLERY THEME
   Theme: Deep Navy / Champagne Gold / Elegant
   ========================================== */

:root {
  --clr-bg: #0c0d1a;
  --clr-surface: #12132a;
  --clr-surface-2: #1a1b3a;
  --clr-surface-3: #22244f;
  --clr-border: #2a2b55;
  --clr-gold: #c8a96e;
  --clr-gold-light: #dfc590;
  --clr-gold-dark: #a88a4f;
  --clr-gold-muted: rgba(200, 169, 110, 0.15);
  --clr-text: #ddd8ce;
  --clr-text-muted: #8a8aaa;
  --clr-text-dark: #555580;
  --clr-white: #f5f0e8;
  --clr-success: #6aaa7a;
  --shadow-gold: 0 8px 40px rgba(200, 169, 110, 0.18);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

.site-body {
  font-family: 'Inter', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === PRELOADER === */
.preloader-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #0c0d1a 0%, #12132a 100%);
  display: flex; justify-content: center; align-items: center;
  z-index: 99999;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader-spinner {
  width: 52px; height: 52px;
  border: 2.5px solid rgba(200,169,110,.12);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--clr-gold);
  letter-spacing: .3em;
  font-style: italic;
  text-transform: lowercase;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* === COOKIE === */
.cookie-consent-popup {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, #12132a 0%, #0c0d1a 100%);
  padding: 1.5rem 2rem;
  z-index: 9998;
  display: none;
  border-top: 1px solid var(--clr-gold-muted);
  box-shadow: 0 -10px 40px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-consent-popup.cookie-popup-show {
  display: block;
  transform: translateY(0);
  animation: slideUp .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content-wrapper {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text-message { flex: 1; min-width: 300px; font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted); }
.cookie-text-message strong { color: var(--clr-gold); }
.cookie-buttons-group { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-reject {
  padding: .65rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  border-radius: 50px; cursor: pointer;
  transition: var(--transition); border: none;
}
.cookie-btn-accept { background: var(--clr-gold); color: #0c0d1a; }
.cookie-btn-accept:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.cookie-btn-reject { background: transparent; color: var(--clr-text-muted); border: 1.5px solid var(--clr-border); }
.cookie-btn-reject:hover { border-color: var(--clr-text-muted); color: var(--clr-text); }

/* === DISCLOSURE BAR === */
.disclosure-bar {
  background: linear-gradient(90deg, rgba(200,169,110,.06) 0%, rgba(200,169,110,.02) 100%);
  border-bottom: 1px solid rgba(200,169,110,.15);
  padding: .5rem 1rem;
  font-size: .75rem;
  line-height: 1.45;
}
.disclosure-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.disclosure-strong { color: var(--clr-gold); font-weight: 600; }

/* === HEADER === */
.brand-header {
  background: rgba(12, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.header-inner-box {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem;
}
.brand-link-logo { text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.brand-name-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--clr-white);
  letter-spacing: .05em;
  font-weight: 500;
}
.nav-links-menu {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-item-list { display: inline-block; }
.nav-anchor-link {
  text-decoration: none;
  font-size: .82rem; font-weight: 500;
  color: rgba(221, 216, 206, 0.65);
  transition: color .3s ease;
  letter-spacing: .04em;
  position: relative;
}
.nav-anchor-link:hover { color: var(--clr-gold); }
.nav-anchor-link-active { color: var(--clr-gold); }
.nav-anchor-link-active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--clr-gold); border-radius: 2px;
}

/* === BUTTONS === */
.btn-base {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 700;
  border-radius: 50px; text-decoration: none; cursor: pointer;
  transition: var(--transition); border: none;
  text-transform: uppercase; letter-spacing: .1em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: #0c0d1a;
  box-shadow: 0 4px 20px rgba(200,169,110,.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,.4);
}
.btn-outline {
  background: transparent; color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}
.btn-outline:hover {
  background: var(--clr-gold-muted);
  color: var(--clr-gold-light);
  transform: translateY(-2px);
}
.btn-large { padding: 1rem 2.5rem; font-size: .85rem; }
.btn-full { width: 100%; }

/* === MOBILE TOGGLE === */
.mobile-nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .4rem;
}
.toggle-icon-bar {
  display: block; width: 24px; height: 1.5px;
  background: var(--clr-gold); margin: 6px 0;
  transition: all .3s ease; border-radius: 2px;
}

/* === SECTIONS === */
.section-wrapper { padding: 6rem 2rem; }
.section-surface { background: var(--clr-surface); }
.layout-container { max-width: 1200px; margin: 0 auto; }
.layout-container-sm { max-width: 780px; margin: 0 auto; }
.heading-block-center { text-align: center; max-width: 640px; margin: 0 auto 4rem auto; }

/* === TYPOGRAPHY === */
.eyebrow {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .25em; color: var(--clr-gold); margin-bottom: 1rem; display: block;
}
.heading-1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; line-height: 1.1;
  color: var(--clr-white); margin: 0 0 1.2rem 0;
  font-weight: 500;
}
.heading-2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; line-height: 1.2;
  color: var(--clr-white); margin: 0 0 1rem 0;
  font-weight: 500;
}
.heading-3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; line-height: 1.3;
  color: var(--clr-white); margin: 0 0 .8rem 0;
  font-weight: 500;
}
.heading-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500; line-height: 1.4;
  color: var(--clr-white); margin: 0 0 .5rem 0;
}
.para { font-size: .95rem; line-height: 1.8; color: rgba(221,216,206,.65); margin: 0 0 1rem 0; }
.para-lg { font-size: 1.1rem; line-height: 1.75; color: rgba(221,216,206,.75); margin: 0 0 1.5rem 0; }
.para-sm { font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted); margin: 0 0 1rem 0; }

/* === HERO === */
.hero {
  padding: 10rem 2rem 6rem;
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.2), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
  width: 100%;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--clr-gold-muted);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 50px;
  padding: .4rem 1.2rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--clr-gold);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--clr-gold);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.hero-bullets { list-style: none; margin: 1.5rem 0; }
.hero-bullet-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: .95rem; font-weight: 400; margin-bottom: .85rem;
  color: rgba(221,216,206,.8);
}
.hero-bullet-icon { color: var(--clr-gold); font-size: 1rem; flex-shrink: 0; }

.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  max-width: 460px; width: 100%;
}
.hero-img-main {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.hero-img-card:hover .hero-img-main { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(12,13,26,.9));
  font-size: .72rem; color: rgba(200,169,110,.7);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-align: center;
}

/* === IMAGE GALLERY STRIP === */
.hero-gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .8rem; margin-top: 1rem;
  max-width: 460px;
}
.gallery-thumb {
  border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--clr-gold); }
.gallery-thumb img { width: 100%; height: 100px; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-thumb:hover img { transform: scale(1.08); }

/* === COMPARISON === */
.comparison-grid {
  display: grid; grid-template-columns: .6fr 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.comp-labels { display: flex; flex-direction: column; justify-content: center; }
.comp-label {
  height: 4.5rem; display: flex; align-items: center;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  padding: 0 1rem;
}
.comp-card {
  background: var(--clr-surface); border-radius: 16px;
  border: 1px solid var(--clr-border);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.comp-card-featured {
  background: linear-gradient(145deg, #1a1b3a 0%, var(--clr-surface) 100%);
  border: 1.5px solid var(--clr-gold);
  position: relative;
  box-shadow: 0 20px 60px rgba(200,169,110,.1);
}
.comp-card-featured::before {
  content: 'Exklusiv'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0c0d1a; font-size: .65rem; font-weight: 800; padding: .3rem 1.1rem;
  border-radius: 50px; letter-spacing: .12em; text-transform: uppercase;
}
.comp-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500;
  text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-white);
}
.comp-row {
  height: 4.5rem; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .88rem; line-height: 1.45;
  color: rgba(221,216,206,.6);
  border-bottom: 1px solid var(--clr-border);
}
.comp-row-good { color: var(--clr-success); font-weight: 600; }
.comp-row-bad { color: #c06060; }

/* === PRODUCT DETAIL SECTION === */
.detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
.detail-scroll { display: flex; flex-direction: column; gap: 2rem; }

.detail-card {
  background: var(--clr-surface); border-radius: 16px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.detail-card:hover { border-color: rgba(200,169,110,.25); transform: translateY(-3px); }
.detail-card-img { width: 100%; height: 320px; overflow: hidden; }
.detail-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.detail-card:hover .detail-card-img img { transform: scale(1.04); }
.detail-card-body { padding: 2rem; }
.detail-highlights { list-style: none; margin: 1rem 0 0 0; }
.detail-highlights-item {
  position: relative; padding-left: 1.3rem;
  font-size: .88rem; line-height: 1.6; margin-bottom: .6rem; color: rgba(221,216,206,.65);
}
.detail-highlights-item::before { content: '—'; position: absolute; left: 0; color: var(--clr-gold); }

/* === STICKY OFFER === */
.sticky-offer { position: sticky; top: 5.5rem; }
.offer-card {
  background: linear-gradient(160deg, #1a1b3a 0%, var(--clr-surface) 50%, #0c0d1a 100%);
  border-radius: 20px; border: 1.5px solid var(--clr-gold);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-gold);
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0c0d1a; font-size: .68rem; font-weight: 800;
  padding: .4rem 1.2rem; border-radius: 50px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.offer-img { width: 100%; max-width: 220px; margin: 0 auto 1.5rem; border-radius: 14px; overflow: hidden; border: 1px solid var(--clr-border); }
.offer-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.offer-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500;
  color: var(--clr-white); text-decoration: none; display: block;
  margin-bottom: .5rem; line-height: 1.3;
}
.offer-title:hover { color: var(--clr-gold-light); }
.stars { font-size: 1.1rem; color: var(--clr-gold); margin: .6rem 0; letter-spacing: .08em; }
.stars-sub { font-size: .78rem; color: var(--clr-text-muted); font-weight: 600; }
.offer-price-display {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600;
  color: var(--clr-gold); margin: .5rem 0;
}
.offer-price-sub { font-size: .75rem; color: var(--clr-text-muted); margin-bottom: 1.2rem; }
.trust-list { list-style: none; margin: 1.2rem 0 0 0; border-top: 1px solid var(--clr-border); padding-top: 1.2rem; text-align: left; }
.trust-item {
  font-size: .8rem; color: var(--clr-text-muted); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .6rem;
}
.trust-item::before { content: '✓'; color: var(--clr-success); font-weight: 700; font-size: .9rem; }

/* === BENEFITS GRID === */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.benefit-card {
  background: var(--clr-surface); border-radius: 14px;
  border: 1px solid var(--clr-border);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(200,169,110,.3); box-shadow: 0 15px 45px rgba(0,0,0,.35); }
.benefit-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--clr-gold-muted);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--clr-gold); margin-bottom: 1.2rem;
}
.benefit-card .heading-4 { font-size: 1.05rem; }

/* === REVIEWS CAROUSEL === */
.reviews-slider { position: relative; overflow: hidden; padding: 2rem 0; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.review-slide { flex: 0 0 100%; min-width: 100%; padding: 0 1.5rem; box-sizing: border-box; }
.review-card {
  background: var(--clr-surface); border-radius: 18px;
  border: 1px solid var(--clr-border);
  padding: 3rem;
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 3rem; align-items: center;
  box-shadow: var(--shadow-card);
}
.review-quote {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.65;
  color: var(--clr-white); font-style: italic; margin: 0 0 1.5rem 0;
}
.review-avatar-row { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 3rem; height: 3rem; background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #0c0d1a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.review-name { font-size: .9rem; font-weight: 600; color: var(--clr-white); }
.review-verified { font-size: .72rem; color: var(--clr-success); font-weight: 600; }
.review-photo { border-radius: 12px; overflow: hidden; border: 1px solid var(--clr-border); }
.review-photo img { width: 100%; height: 240px; object-fit: cover; display: block; }
.carousel-nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.carousel-btn {
  background: var(--clr-surface); border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold); width: 3rem; height: 3rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.carousel-btn:hover { background: var(--clr-gold); color: #0c0d1a; }

/* === ARTICLES / TEASERS === */
.teasers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.teaser-card {
  background: var(--clr-surface); border-radius: 14px;
  border: 1px solid var(--clr-border); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.teaser-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,.3); }
.teaser-img { width: 100%; height: 180px; overflow: hidden; }
.teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.teaser-card:hover .teaser-img img { transform: scale(1.06); }
.teaser-content { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.teaser-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--clr-gold); margin-bottom: .6rem; display: block; }
.teaser-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; line-height: 1.35; color: var(--clr-white); margin: 0 0 .8rem 0; }
.teaser-link { margin-top: auto; font-size: .75rem; padding: .6rem 1.2rem; }

/* === FAQ === */
.faq-group { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: 12px; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(200,169,110,.2); }
.faq-trigger {
  width: 100%; background: none; border: none;
  padding: 1.4rem 1.8rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-q { font-size: .95rem; font-weight: 600; color: var(--clr-white); }
.faq-chevron { font-size: 1rem; color: var(--clr-gold); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-panel { max-height: 350px; }
.faq-inner { padding: 0 1.8rem 1.5rem; border-top: 1px solid var(--clr-border); }
.faq-answer { font-size: .88rem; line-height: 1.7; color: rgba(221,216,206,.65); margin: 1rem 0 0; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-form { background: var(--clr-surface); border-radius: 16px; border: 1px solid var(--clr-border); padding: 2.5rem; }
.contact-fields { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-text-muted); display: block; margin-bottom: .4rem; }
.form-input {
  font-family: 'Inter', sans-serif; font-size: .92rem; padding: .85rem 1rem;
  border: 1.5px solid var(--clr-border); border-radius: 10px;
  background: var(--clr-bg); color: var(--clr-text);
  transition: border-color .3s ease;
  width: 100%; display: block;
}
.form-input:focus { outline: none; border-color: var(--clr-gold); background: var(--clr-surface-2); }
textarea.form-input { min-height: 130px; resize: vertical; }
.contact-info-card {
  background: linear-gradient(135deg, #1a1b3a 0%, var(--clr-surface) 100%);
  border-radius: 16px; padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid var(--clr-border);
}
.info-list { list-style: none; margin: 1.5rem 0; }
.info-item { margin-bottom: 1.5rem; }
.info-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; color: var(--clr-gold); letter-spacing: .1em; display: block; margin-bottom: .4rem; }
.info-val { font-size: .95rem; display: block; color: var(--clr-text); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a1b3a 0%, var(--clr-surface) 50%, #1a1b3a 100%);
  padding: 7rem 2rem; text-align: center;
  border-top: 1px solid rgba(200,169,110,.15);
  border-bottom: 1px solid rgba(200,169,110,.15);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,.04) 0%, transparent 70%);
}
.cta-headline { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--clr-white); margin: 0 0 1rem 0; font-weight: 500; }
.cta-tag { color: var(--clr-gold); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

/* === FOOTER === */
.brand-footer {
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--clr-border);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--clr-white); font-weight: 500; margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: .8rem; }
.footer-col-title { font-size: .7rem; text-transform: uppercase; font-weight: 700; color: var(--clr-gold); letter-spacing: .12em; margin-bottom: .3rem; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-link { color: var(--clr-text-muted); text-decoration: none; font-size: .85rem; transition: color .25s; }
.footer-link:hover { color: var(--clr-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding-top: 2rem; text-align: center; }
.footer-disclaimer { font-size: .72rem; line-height: 1.6; color: var(--clr-text-muted); max-width: 900px; margin: 0 auto 1rem; }
.footer-copy { font-size: .72rem; color: var(--clr-text-dark); }

/* === IMPRESSUM === */
.impressum-block { background: var(--clr-surface); border-radius: 16px; padding: 3rem; margin-top: 2rem; border: 1px solid var(--clr-border); }
.impressum-block h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--clr-gold); margin: 1.8rem 0 .8rem 0; font-weight: 500; }
.impressum-block h2:first-child { margin-top: 0; }
.impressum-block p { font-size: .9rem; line-height: 1.7; color: rgba(221,216,206,.7); margin: 0 0 .8rem 0; }
.impressum-block a { color: var(--clr-gold); text-decoration: underline; }

/* === ARTICLE RICH TEXT === */
.article-body { margin-top: 2rem; }
.article-body h2 { margin-top: 2.5rem; }

/* === DECORATIVE DIVIDER === */
.divider-gold {
  width: 60px; height: 1.5px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: 1.5rem auto 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .detail-grid { grid-template-columns: 1fr !important; }
  .hero-text { max-width: 100%; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-labels { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .teasers-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .review-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }
  .nav-links-menu {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--clr-bg); flex-direction: column;
    padding: 2rem; gap: 1.5rem;
    border-bottom: 2px solid var(--clr-border);
    box-shadow: 0 15px 30px rgba(0,0,0,.5);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s ease;
  }
  .nav-links-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .heading-1 { font-size: 2.4rem; }
  .heading-2 { font-size: 1.8rem; }
  .hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-row { height: auto; padding: .8rem; display: block; text-align: left; border-bottom: 1px solid var(--clr-border); }
  .benefits-grid { grid-template-columns: 1fr; }
  .teasers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .review-card { padding: 1.5rem; }
  .carousel-nav { gap: 1rem; }
  .cookie-content-wrapper { flex-direction: column; text-align: center; }
  .cookie-buttons-group { flex-direction: column; width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { width: 100%; }
}

@media (max-width: 480px) {
  .heading-1 { font-size: 1.9rem; }
  .heading-2 { font-size: 1.5rem; }
  .section-wrapper { padding: 3.5rem 1rem; }
  .cta-headline { font-size: 1.8rem; }
  .offer-price-display { font-size: 2.4rem; }
  .hero-gallery-strip { grid-template-columns: repeat(3,1fr); }
}
