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

/* ==========================================
   KETTENLIEBE - LUXURY JEWELRY THEME
   Theme: Elegant Rose Gold / Cream / Ivory
   ========================================== */

:root {
  --clr-bg: #FAF8F5;
  --clr-surface: #FFFFFF;
  --clr-surface-2: #F5F0EB;
  --clr-surface-3: #EDE6DD;
  --clr-border: #E2D9CF;
  --clr-rose: #B76E79;
  --clr-rose-light: #D4898F;
  --clr-rose-dark: #9A5560;
  --clr-gold: #C5A46D;
  --clr-gold-light: #D9BC92;
  --clr-gold-dark: #A8884E;
  --clr-text: #2C2420;
  --clr-text-muted: #7A6E66;
  --clr-text-light: #A89E94;
  --clr-white: #FFFFFF;
  --clr-dark: #1A1512;
  --clr-success: #6B9E78;
  --shadow-sm: 0 2px 12px rgba(44,36,32,.07);
  --shadow-md: 0 8px 30px rgba(44,36,32,.10);
  --shadow-lg: 0 20px 60px rgba(44,36,32,.12);
  --shadow-xl: 0 30px 80px rgba(44,36,32,.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; }

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

/* === PRELOADER === */
.preloader-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #1A1512 0%, #2C2420 50%, #1A1512 100%);
  display: flex; justify-content: center; align-items: center;
  z-index: 99999;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader-content { 
  display: flex; flex-direction: column; align-items: center; gap: 2rem; 
  animation: fadeInScale .6s ease;
}
@keyframes fadeInScale { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
.preloader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: #C5A46D;
  letter-spacing: .25em;
  font-weight: 300;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: .6; text-shadow: 0 0 20px rgba(197,164,109,.3); }
  50% { opacity: 1; text-shadow: 0 0 40px rgba(197,164,109,.6); }
}
.preloader-dots { display: flex; gap: .6rem; }
.preloader-dot {
  width: 8px; height: 8px;
  background: #C5A46D;
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.preloader-dot:nth-child(2) { animation-delay: .2s; }
.preloader-dot:nth-child(3) { animation-delay: .4s; }
@keyframes dotPulse { 
  0%, 80%, 100% { transform: scale(.6); opacity: .4; } 
  40% { transform: scale(1); opacity: 1; } 
}
.preloader-text {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 300;
}

/* === COOKIE === */
.cookie-consent-popup {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--clr-white);
  padding: 1.8rem 2rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -8px 40px rgba(44,36,32,.1);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.cookie-consent-popup.cookie-popup-show {
  display: block;
  transform: translateY(0);
  animation: slideUpCookie .5s cubic-bezier(.16,1,.3,1);
}
@keyframes slideUpCookie { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content-wrapper {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.cookie-icon { font-size: 1.8rem; margin-right: .8rem; }
.cookie-text-message { 
  flex: 1; min-width: 280px; 
  font-size: .88rem; line-height: 1.6; 
  color: var(--clr-text-muted); 
  display: flex; align-items: flex-start; gap: .8rem;
}
.cookie-text-message strong { color: var(--clr-rose); font-weight: 600; }
.cookie-buttons-group { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.cookie-btn-accept, .cookie-btn-reject {
  padding: .7rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 50px; cursor: pointer;
  transition: all .3s ease; border: none;
}
.cookie-btn-accept { 
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%);
  color: var(--clr-white); 
  box-shadow: 0 4px 15px rgba(183,110,121,.3);
}
.cookie-btn-accept:hover { 
  background: linear-gradient(135deg, var(--clr-rose-light) 0%, var(--clr-rose) 100%);
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(183,110,121,.4);
}
.cookie-btn-reject { 
  background: transparent; color: var(--clr-text-muted); 
  border: 1.5px solid var(--clr-border);
}
.cookie-btn-reject:hover { 
  background: var(--clr-surface-2); 
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
}

/* === DISCLOSURE BAR === */
.disclosure-bar {
  background: linear-gradient(90deg, rgba(197,164,109,.06) 0%, rgba(183,110,121,.06) 100%);
  border-bottom: 1px solid rgba(197,164,109,.2);
  padding: .6rem 1rem;
  font-size: .78rem;
  line-height: 1.5;
}
.disclosure-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.disclosure-strong { color: var(--clr-gold-dark); font-weight: 600; }

/* === HEADER === */
.brand-header {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s ease;
}
.brand-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner-box {
  max-width: 1300px; margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.brand-link-logo { text-decoration: none; display: flex; align-items: center; gap: .6rem; }
.brand-name-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--clr-dark);
  letter-spacing: .12em;
  font-weight: 400;
  position: relative;
}
.brand-name-text::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin-top: 2px;
}
.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: .85rem; font-weight: 500;
  color: var(--clr-text-muted);
  transition: color .25s ease;
  position: relative;
  letter-spacing: .03em;
}
.nav-anchor-link:hover { color: var(--clr-rose); }
.nav-anchor-link-active { color: var(--clr-rose) !important; }
.nav-anchor-link-active::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--clr-rose); border-radius: 2px;
}

/* === BUTTONS === */
.btn-base {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 600;
  border-radius: 50px; text-decoration: none; cursor: pointer;
  transition: all .35s ease; border: none;
  text-transform: uppercase; letter-spacing: .1em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(197,164,109,.3);
}
.btn-gold:hover { 
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(197,164,109,.4);
}
.btn-rose {
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(183,110,121,.3);
}
.btn-rose:hover { 
  background: linear-gradient(135deg, var(--clr-rose-light) 0%, var(--clr-rose) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183,110,121,.4);
}
.btn-outline {
  background: transparent; 
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn-outline:hover { 
  background: var(--clr-surface-2); 
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
  transform: translateY(-2px);
}
.btn-outline-rose {
  background: transparent; 
  color: var(--clr-rose);
  border: 1.5px solid var(--clr-rose);
}
.btn-outline-rose:hover { 
  background: rgba(183,110,121,.08);
  transform: translateY(-2px);
}
.btn-large { padding: 1.1rem 2.5rem; font-size: .85rem; }
.btn-full { width: 100%; }

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

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

/* === TYPOGRAPHY === */
.eyebrow {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .22em; color: var(--clr-rose); margin-bottom: .8rem; display: block;
}
.heading-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; line-height: 1.1;
  color: var(--clr-dark); margin: 0 0 1.2rem 0;
  font-weight: 400;
}
.heading-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; line-height: 1.2;
  color: var(--clr-dark); margin: 0 0 1rem 0;
  font-weight: 400;
}
.heading-3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; line-height: 1.3;
  color: var(--clr-dark); margin: 0 0 .8rem 0;
  font-weight: 400;
}
.heading-4 {
  font-size: 1rem; font-weight: 600; line-height: 1.4;
  color: var(--clr-dark); margin: 0 0 .5rem 0;
}
.para { font-size: .95rem; line-height: 1.8; color: var(--clr-text-muted); margin: 0 0 1rem 0; }
.para-lg { font-size: 1.1rem; line-height: 1.7; color: var(--clr-text-muted); margin: 0 0 1.5rem 0; }
.para-sm { font-size: .85rem; line-height: 1.6; color: var(--clr-text-light); margin: 0 0 1rem 0; }

/* === HERO === */
.hero { 
  padding: 5rem 2rem 4rem; 
  position: relative; 
  overflow: hidden;
  background: linear-gradient(160deg, var(--clr-bg) 0%, var(--clr-surface-2) 50%, var(--clr-bg) 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(197,164,109,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(183,110,121,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.hero-text { max-width: 540px; }
.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--clr-rose);
  margin-bottom: 1.5rem;
}
.hero-heading-accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; font-style: italic;
  color: var(--clr-gold-dark); line-height: 1.1;
  margin-bottom: .5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: .8rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 500px; width: 100%;
  position: relative;
}
.hero-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197,164,109,.2);
  pointer-events: none;
}
.hero-img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }
.hero-img-tag { 
  margin-top: 1rem; text-align: center; 
  font-size: .72rem; color: var(--clr-text-light); 
  font-weight: 500; letter-spacing: .08em; 
  text-transform: uppercase; 
}
.hero-gallery-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1rem;
}
.hero-gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: all .3s ease;
}
.hero-gallery-dot.active {
  background: var(--clr-rose);
  width: 24px;
  border-radius: 4px;
}

/* === HERO BULLETS === */
.hero-bullets { list-style: none; margin: 1.8rem 0; }
.hero-bullet-item {
  display: flex; align-items: center; gap: .9rem;
  font-size: 1rem; font-weight: 500; margin-bottom: .9rem;
  color: var(--clr-text-muted);
}
.hero-bullet-icon { color: var(--clr-rose); font-size: 1.1rem; font-weight: 600; }

/* === PRODUCT GALLERY === */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.product-gallery-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--clr-border);
  transition: all .3s ease;
}
.product-gallery-img:hover {
  border-color: var(--clr-rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.product-gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product-gallery-img:hover img { transform: scale(1.05); }

/* === COMPARISON === */
.comparison-grid {
  display: grid; grid-template-columns: .8fr 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem; align-items: start;
}
.comp-labels { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.comp-label {
  height: 4.5rem; display: flex; align-items: center;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}
.comp-card {
  background: var(--clr-white); border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.comp-card-featured {
  background: var(--clr-white);
  border: 2px solid var(--clr-gold);
  position: relative; 
  box-shadow: var(--shadow-lg);
}
.comp-card-featured::before {
  content: 'UNSERE WAHL'; 
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--clr-white);
  font-size: .68rem; font-weight: 700; padding: .35rem 1.1rem;
  border-radius: 20px; letter-spacing: .1em;
}
.comp-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-dark);
}
.comp-row {
  height: 4.5rem; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .9rem; line-height: 1.4;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}
.comp-row-good { color: var(--clr-success); font-weight: 600; }
.comp-row-bad { color: #C06060; }

/* === FEATURED / SPOTLIGHT === */
.featured-section {
  background: linear-gradient(160deg, var(--clr-dark) 0%, #2C2420 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(197,164,109,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(183,110,121,.05) 0%, transparent 60%);
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative;
  z-index: 1;
}
.featured-text { color: var(--clr-white); }
.featured-text .eyebrow { color: var(--clr-gold-light); }
.featured-text .heading-2 { color: var(--clr-white); }
.featured-text .para { color: rgba(255,255,255,.65); }
.featured-metrics { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.featured-metric { 
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 1.5rem; 
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.featured-metric:last-child { border-bottom: none; padding-bottom: 0; }
.featured-metric-icon {
  width: 3rem; height: 3rem;
  background: rgba(197,164,109,.12);
  border: 1px solid rgba(197,164,109,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.featured-metric-title { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.4rem; color: var(--clr-gold-light); 
  display: block; margin-bottom: .2rem;
}
.featured-metric-desc { font-size: .85rem; color: rgba(255,255,255,.5); }
.featured-img { border-radius: var(--radius-lg); overflow: hidden; }
.featured-img img { width: 100%; height: auto; display: block; }

/* === PRODUCT DETAIL === */
.detail-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 4rem; align-items: start; }
.detail-scroll { display: flex; flex-direction: column; gap: 3.5rem; }

.detail-card {
  background: var(--clr-white); border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.detail-card:hover { box-shadow: var(--shadow-md); }
.detail-card-img { 
  width: 100%; border-radius: var(--radius-md); 
  overflow: hidden; margin-bottom: 1.8rem;
  background: var(--clr-surface-2);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.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-highlights { list-style: none; margin: 1.2rem 0 0 0; }
.detail-highlights-item {
  position: relative; padding-left: 1.4rem;
  font-size: .9rem; line-height: 1.7; margin-bottom: .7rem; color: var(--clr-text-muted);
}
.detail-highlights-item::before { 
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--clr-rose);
  border-radius: 50%;
}

/* === STICKY OFFER === */
.sticky-offer { position: sticky; top: 5rem; }
.offer-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--clr-border);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--clr-rose), var(--clr-gold), var(--clr-rose));
}
.offer-badge {
  display: inline-block; 
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%);
  color: var(--clr-white);
  font-size: .7rem; font-weight: 700; padding: .45rem 1.1rem; border-radius: 20px;
  letter-spacing: .06em; margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.offer-img { 
  width: 100%; max-width: 220px; margin: 0 auto 1.2rem; 
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--clr-border);
}
.offer-img img { width: 100%; height: auto; display: block; }
.offer-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: var(--clr-dark); text-decoration: none; display: block;
  margin-bottom: .8rem; line-height: 1.3;
  letter-spacing: .02em;
}
.offer-title:hover { color: var(--clr-rose); }
.stars { font-size: 1rem; color: var(--clr-gold); margin-bottom: 1rem; letter-spacing: .15em; }
.stars-sub { font-size: .78rem; color: var(--clr-text-muted); font-weight: 500; letter-spacing: 0; }
.offer-price-display {
  display: flex; justify-content: center; align-items: baseline;
  gap: .5rem; margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.offer-price { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.8rem; font-weight: 400; 
  color: var(--clr-dark); 
}
.offer-price-label { font-size: .8rem; color: var(--clr-text-muted); }
.trust-list { list-style: none; margin: 1.2rem 0 0 0; border-top: 1px solid var(--clr-border); padding-top: 1rem; text-align: left; }
.trust-item {
  font-size: .82rem; 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 === */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.benefit-card {
  background: var(--clr-white); border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--clr-rose); }
.benefit-icon {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, rgba(183,110,121,.1) 0%, rgba(197,164,109,.1) 100%);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--clr-rose); margin-bottom: 1.2rem; font-weight: 700;
  border: 1px solid rgba(183,110,121,.2);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%);
  color: white;
  border-color: transparent;
}

/* === REVIEWS === */
.reviews-slider { position: relative; overflow: hidden; padding: 2rem 0; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.review-slide { flex: 0 0 100%; min-width: 100%; padding: 0 1rem; box-sizing: border-box; }
.review-card {
  background: var(--clr-white); border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border); padding: 3rem;
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .7fr;
  gap: 3rem; align-items: center;
  box-shadow: var(--shadow-md);
}
.review-quote {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.4rem; line-height: 1.6;
  color: var(--clr-dark); font-style: italic; margin: 0 0 1.5rem 0;
  font-weight: 300;
}
.review-avatar-row { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 2.8rem; height: 2.8rem; 
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%);
  color: var(--clr-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem;
}
.review-name { font-size: .9rem; font-weight: 600; color: var(--clr-dark); }
.review-verified { font-size: .75rem; color: var(--clr-success); font-weight: 500; }
.review-photo { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--clr-border); }
.review-photo img { 
  width: 100%; height: 220px; object-fit: cover; 
  display: block; 
  transition: transform .4s ease;
}
.review-card:hover .review-photo img { transform: scale(1.03); }
.carousel-nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.carousel-btn {
  background: var(--clr-white); 
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text); width: 3.2rem; height: 3.2rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { 
  background: var(--clr-rose); border-color: var(--clr-rose); color: white;
  box-shadow: 0 4px 15px rgba(183,110,121,.3);
}

/* === ARTICLES / TEASERS === */
.teasers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.teaser-card {
  background: var(--clr-white); border-radius: var(--radius-md);
  border: 1px solid var(--clr-border); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(197,164,109,.3); }
.teaser-img { width: 100%; height: 190px; 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-rose); margin-bottom: .5rem; display: block;
}
.teaser-title { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.25rem; line-height: 1.35; 
  color: var(--clr-dark); margin: 0 0 .7rem 0; font-weight: 400;
}
.teaser-link { margin-top: auto; font-size: .78rem; padding: .7rem 1.3rem; }

/* === FAQ === */
.faq-group { max-width: 820px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--clr-white); border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item:hover { border-color: var(--clr-rose); }
.faq-trigger { 
  width: 100%; background: none; border: none; 
  padding: 1.5rem 2rem; text-align: left; 
  display: flex; justify-content: space-between; align-items: center; 
  cursor: pointer;
}
.faq-q { font-size: .95rem; font-weight: 500; color: var(--clr-dark); }
.faq-chevron { 
  font-size: 1.1rem; color: var(--clr-rose); 
  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 2rem 1.5rem; border-top: 1px solid var(--clr-border); }
.faq-answer { font-size: .9rem; line-height: 1.7; color: var(--clr-text-muted); margin: 1rem 0 0; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(160deg, var(--clr-dark) 0%, #2C2420 50%, #1A1512 100%);
  padding: 7rem 2rem; text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(197,164,109,.1) 0%, transparent 60%);
}
.cta-tag { 
  color: var(--clr-gold-light); font-size: .75rem; 
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  display: block; margin-bottom: 1.5rem;
}
.cta-headline { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 3rem; font-weight: 300; font-style: italic;
  color: var(--clr-white); margin: 0 0 1.5rem 0; 
  line-height: 1.2;
}
.cta-headline em { color: var(--clr-gold-light); font-style: italic; }

/* === FOOTER === */
.brand-footer {
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  padding: 5rem 2rem 2.5rem;
  border-top: 1px solid var(--clr-border);
}
.footer-grid { 
  display: grid; grid-template-columns: 1.3fr .8fr 1fr; 
  gap: 4rem; margin-bottom: 4rem; 
}
.footer-logo { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.6rem; color: var(--clr-dark); 
  font-weight: 400; margin-bottom: 1.2rem; letter-spacing: .1em;
}
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col-title { 
  font-size: .72rem; text-transform: uppercase; font-weight: 700; 
  color: var(--clr-rose); letter-spacing: .1em; margin-bottom: .4rem;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-link { 
  color: var(--clr-text-muted); text-decoration: none; 
  font-size: .88rem; transition: color .25s; 
}
.footer-link:hover { color: var(--clr-rose); }
.footer-bottom { 
  border-top: 1px solid var(--clr-border); 
  padding-top: 2rem; text-align: center; 
}
.footer-disclaimer { 
  font-size: .75rem; line-height: 1.6; color: var(--clr-text-light); 
  max-width: 860px; margin: 0 auto 1.2rem; 
}
.footer-copy { font-size: .75rem; color: var(--clr-text-light); }

/* === IMPRESSUM === */
.impressum-block { 
  background: var(--clr-white); border-radius: var(--radius-lg); 
  padding: 3.5rem; margin-top: 2rem; border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.impressum-block h2 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.4rem; color: var(--clr-rose); 
  margin: 2rem 0 .8rem 0; font-weight: 400;
}
.impressum-block h2:first-child { margin-top: 0; }
.impressum-block p { 
  font-size: .92rem; line-height: 1.7; 
  color: var(--clr-text-muted); margin: 0 0 .8rem 0; 
}
.impressum-block a { color: var(--clr-rose); text-decoration: underline; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-form { 
  background: var(--clr-white); border-radius: var(--radius-lg); 
  border: 1px solid var(--clr-border); padding: 3rem; 
  box-shadow: var(--shadow-sm);
}
.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: .75rem; font-weight: 700; text-transform: uppercase; 
  letter-spacing: .05em; color: var(--clr-text-muted); 
  display: block; margin-bottom: .4rem; 
}
.form-input {
  font-family: 'Jost', sans-serif; font-size: .92rem; padding: .9rem 1.1rem;
  border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm);
  background: var(--clr-bg); color: var(--clr-text);
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%; display: block;
}
.form-input:focus { 
  outline: none; 
  border-color: var(--clr-rose);
  box-shadow: 0 0 0 3px rgba(183,110,121,.1);
}
textarea.form-input { min-height: 130px; resize: vertical; }
.contact-info-card { 
  background: linear-gradient(160deg, var(--clr-dark) 0%, #2C2420 100%);
  border-radius: var(--radius-lg); padding: 3.5rem; 
  text-align: center; 
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.contact-info-card .heading-3 { color: var(--clr-white); margin-bottom: 1.5rem; }
.info-list { list-style: none; margin: 1rem 0; width: 100%; }
.info-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.info-item:last-child { border-bottom: none; }
.info-title { 
  font-size: .7rem; font-weight: 700; text-transform: uppercase; 
  color: var(--clr-gold-light); letter-spacing: .08em; display: block; margin-bottom: .4rem;
}
.info-val { font-size: .95rem; display: block; color: rgba(255,255,255,.8); }

/* === DIVIDER === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid, .featured-grid, .detail-grid { grid-template-columns: 1fr !important; }
  .sticky-offer { position: relative; top: auto; }
  .detail-grid { gap: 2.5rem; }
}

@media (max-width: 992px) {
  .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; gap: 1.5rem; }
}

@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 10px 30px rgba(44,36,32,.1);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all .35s ease;
    z-index: 99;
  }
  .nav-links-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .heading-1 { font-size: 2.4rem; }
  .heading-2 { font-size: 2rem; }
  .hero-heading-accent { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .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.8rem; }
  .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%; }
  .section-wrapper { padding: 4rem 1.5rem; }
  .featured-section { padding: 4rem 1.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  .cta-headline { font-size: 2rem; }
}

@media (max-width: 480px) {
  .heading-1 { font-size: 2rem; }
  .heading-2 { font-size: 1.7rem; }
  .section-wrapper { padding: 3rem 1rem; }
  .cta-headline { font-size: 1.8rem; }
  .offer-price { font-size: 2.2rem; }
  .comp-title { font-size: 1.3rem; }
  .header-inner-box { padding: 1rem 1.5rem; }
  .comparison-grid { gap: 1rem; }
  .comp-card { padding: 1.5rem; }
  .detail-card { padding: 1.8rem; }
  .offer-card { padding: 2rem 1.5rem; }
  .impressum-block { padding: 2rem 1.5rem; }
}
