/*
Theme Name: Juwelier Stefan
Theme URI: https://myvisionagency.com
Author: My Vision Agency
Description: Elegantes Custom Theme für Juwelier Stefan Gießen – Werte die bleiben.
Version: 1.0
*/

/* Fonts werden in functions.php eingebunden */

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

:root {
  --gold:       #BEA069;
  --gold-light: #CEB07A;
  --gold-dark:  #9E8245;
  --dark:       #1a1a1a;
  --dark2:      #2c2c2c;
  --cream:      #FAF8F4;
  --cream2:     #F5F1EB;
  --white:      #ffffff;
  --muted:      #888880;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══ */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
}
.admin-bar nav#main-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav#main-nav { top: 46px; } }
nav#main-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(196,165,90,0.2);
}
.nav-links { display: flex; gap: 32px; list-style: none; flex: 1; }
.nav-links:first-child { justify-content: flex-start; }
.nav-links:last-of-type { justify-content: flex-end; }
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark2);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-logo { text-align: center; cursor: pointer; text-decoration: none; display: flex; align-items: center; }
.nav-logo img.logo-white { display: none; height: 72px; width: auto; }
.nav-logo img.logo-dark  { display: block; height: 72px; width: auto; }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  text-decoration: none; padding: 10px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: background 0.3s, transform 0.3s var(--ease);
}
.nav-wa:hover { background: var(--gold-dark); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: background 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 100000; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--dark); text-decoration: none; }
.mobile-close { position: absolute; top: 20px; right: 20px; cursor: pointer; color: var(--dark); background: none; border: none; padding: 10px; line-height: 0; z-index: 10; }

@media (max-width: 768px) {
  nav#main-nav { padding: 18px 20px; justify-content: center; }
  nav#main-nav.scrolled { padding: 14px 20px; }
  .nav-links, .nav-wa { display: none; }
  .burger { display: flex; position: absolute; right: 20px; }
  .nav-logo { margin: 0 auto; }
}

/* ══ ORNAMENT ══ */
.ornament { display: flex; align-items: center; gap: 16px; justify-content: center; margin: 24px auto; }
.ornament-line { flex: 1; max-width: 80px; height: 1px; background: var(--gold); opacity: 0.4; }
.ornament-diamond { color: var(--gold); font-size: 10px; letter-spacing: 4px; }

/* ══ HERO ══ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: visible; background: var(--white);
}

.hero-grid { display: none; }
.hero-content { position: relative; z-index: 3; padding: 0 24px; max-width: 800px; width: 100%; }
.hero-brand { font-family: 'Lato', sans-serif; font-size: clamp(40px,6vw,80px); font-weight: 700; letter-spacing: 2px; text-transform: none; color: var(--gold); opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s var(--ease) 0.6s forwards; white-space: nowrap; }
.hero-tagline { font-family: 'Lato', sans-serif; font-size: clamp(16px,2vw,26px); font-style: normal; font-weight: 300; color: var(--dark); letter-spacing: 2px; text-transform: none; opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s var(--ease) 1.0s forwards; margin-top: 16px; }
.hero-divider { width: 60px; height: 1px; background: var(--gold); margin: 28px auto; opacity: 0; animation: fadeUp 0.8s var(--ease) 1.3s forwards; }
.hero-btns {
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease) 1.5s forwards;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 15px 32px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.hero-cta--outline {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.hero-cta--outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.25);
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero-cta { font-size: 12px; padding: 10px 14px; gap: 6px; }
  .hero-cta svg { width: 13px; height: 13px; }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-img-left,
.hero-img-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 540px;
  height: 95%;
  overflow: visible;
  opacity: 0;
  animation: heroImgIn 1.2s var(--ease) 1.0s forwards;
  z-index: 0;
}
.hero-img-left  { left: 0; }
.hero-img-right { right: 0; }
.hero-img-left img,
.hero-img-right img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
}
@keyframes heroImgIn { to { opacity: 1; } }

/* ══ HERO SOCIAL ══ */
/* Desktop: absolut rechts relativ zu #hero */
.hero-social {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.8s forwards;
}
.hero-social-link {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.hero-social-link:hover { color: var(--gold-dark); transform: scale(1.2); }

/* Mobile-Bilder-Zeile: nur auf Mobile sichtbar */
.hero-imgs-mobile { display: none; }

/* Tablet: Seitenbilder etwas schmaler */
@media (max-width: 1024px) {
  .hero-img-left, .hero-img-right { width: 22%; }
}

/* Mobile: komplett anderes Layout */
@media (max-width: 768px) {
  /* Hero kürzer als Viewport → Mission unten sichtbar */
  #hero {
    height: auto;
    min-height: unset;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 48px;
    overflow: visible;
  }

  /* Absolute Seitenbilder verstecken */
  .hero-img-left,
  .hero-img-right { display: none; }

  /* Trennlinie sehr kompakt */
  .hero-divider { margin: 10px auto; }

  /* Mobile Bilder-Zeile */
  .hero-imgs-mobile {
    display: flex;
    justify-content: center;
    gap: 0;
    width: calc(100% + 48px);
    margin: 8px -24px;
  }
  .hero-imgs-mobile img {
    width: 50%;
    height: 145px;
    object-fit: contain;
    object-position: center bottom;
  }

  /* Buttons kompakter */
  .hero-btns { gap: 8px; margin-top: 4px; }

  /* Social Icons */
  .hero-social {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 24px;
    opacity: 1;
    animation: none;
    justify-content: center;
    margin-top: 10px;
  }
  /* Header-Text */
  .hero-brand { font-size: clamp(26px, 7vw, 44px); white-space: nowrap; }
  .hero-tagline { font-size: clamp(14px, 4vw, 20px); margin-top: 6px; }
}

/* Mission auf Mobile: weniger Abstand oben damit es sofort sichtbar ist */
@media (max-width: 768px) {
  #mission { padding: 12px 24px 48px; }
}

/* ══ SECTIONS ══ */
.section-label { font-size: 15px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); font-weight: 700; text-align: center; color: var(--dark); line-height: 1.15; letter-spacing: -0.5px; }
.section-sub { font-size: 16px; color: var(--muted); text-align: center; max-width: 520px; margin: 16px auto 0; line-height: 1.7; }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; } .reveal-d3 { transition-delay: 0.3s; }

/* ══ MATERIALIEN ══ */
#materialien {
  background: var(--cream);
  padding: 80px 48px 96px;
}
.mat-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px 56px;
  max-width: 1200px;
  margin: 56px auto 0;
}
.mat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 148px;
  cursor: pointer;
}
.mat-circle {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.mat-item:hover .mat-circle {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(190,160,105,0.22);
  transform: translateY(-4px);
}
.mat-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.mat-item:hover .mat-circle img { transform: scale(1.07); }
.mat-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--dark2); text-align: center;
  transition: color 0.3s;
}
.mat-item:hover .mat-label { color: var(--gold-dark); }

@media (max-width: 768px) {
  #materialien { padding: 64px 24px; }
  /* Immer 2 Spalten auf Mobile */
  .mat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .mat-item { width: auto; }
  .mat-circle {
    width: 100%;
    max-width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .mat-label { font-size: 12px; }
}
@media (max-width: 400px) {
  .mat-circle { max-width: 120px; height: 120px; }
  .mat-grid { gap: 24px 16px; }
}

/* ══ ANKAUF ══ */
#ankauf { background: var(--cream); padding: 100px 48px; }
#ankauf .card { background: var(--cream); }
#ankauf .card:hover { background: var(--cream2); }
.homepage-teaser-text { max-width: 580px; margin: 32px auto 0; font-size: 16px; color: var(--muted); line-height: 1.75; }
.homepage-teaser-btn { display: inline-block; margin-top: 36px; background: var(--white); color: var(--dark); border: 2px solid var(--gold); font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; padding: 16px 40px; transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s; }
.homepage-teaser-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(190,160,105,0.25); }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1100px; margin: 56px auto 0; }
.card { background: var(--white); padding: 0; border-top: 2px solid transparent; transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease); overflow: hidden; }
.card:hover { border-top-color: var(--gold); box-shadow: 0 8px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }
.card-img { width: 100%; height: 220px; overflow: hidden; display: block; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 36px 36px 40px; }
.card-icon { font-size: 36px; margin-bottom: 20px; display: block; color: var(--gold-dark); }
.card-icon.material-symbols-outlined { font-size: 40px; font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 40; }
.card-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.card-text { font-size: 15px; color: var(--muted); line-height: 1.7; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); background: rgba(196,165,90,0.08); border: 1px solid rgba(196,165,90,0.2); padding: 5px 12px; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } #ankauf, #verkauf, #service { padding: 72px 24px; } .card-img { height: 200px; } }

/* ══ VERKAUF ══ */
#verkauf { background: var(--cream); padding: 100px 48px; }

/* ══ GOLD TEASER ══ */
.gold-teaser-section { background: var(--white); padding: 90px 48px; }
.gold-teaser-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 72px; }
.gold-teaser-left { flex: 1; text-align: left; }
.gold-teaser-label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.gold-teaser-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--dark); line-height: 1.25; margin: 0 0 4px; }
.gold-teaser-text { font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0; }
.gold-teaser-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.gold-teaser-price-badge { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); border-radius: 10px; padding: 28px 44px; min-width: 260px; box-shadow: 0 8px 32px rgba(158,130,69,0.25); }
.gold-teaser-price-label { font-family: 'Lato', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(10,8,6,0.65); margin: 0 0 10px; }
.gold-teaser-price-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--dark); margin: 0 0 6px; line-height: 1.1; }
.gold-teaser-price-unit { font-size: 11px; color: rgba(10,8,6,0.6); margin: 0; }
.gold-teaser-btn { display: inline-block; background: var(--dark); color: var(--white); font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; padding: 15px 32px; border-radius: 2px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.gold-teaser-btn:hover { background: var(--gold); color: var(--dark); }
.gold-teaser-hint { font-size: 11px; letter-spacing: 1px; color: var(--muted); margin: 0; }
@media (max-width: 820px) {
  .gold-teaser-inner { flex-direction: column; gap: 44px; }
  .gold-teaser-left { text-align: center; }
  .gold-teaser-section { padding: 72px 24px; }
  .gold-teaser-price-badge { min-width: 0; width: 100%; }
}

/* ══ SERVICE ══ */
#service { background: var(--white); padding: 100px 48px; }
#service .section-title { color: var(--dark); }
#service .section-sub { color: rgba(30,28,24,0.55); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; max-width: 1000px; margin: 56px auto 0; background: rgba(196,165,90,0.2); }
.service-item { background: var(--white); padding: 48px 36px; text-align: center; transition: background 0.4s; }
.service-item:hover { background: var(--cream2); }
.service-icon { font-size: 40px; display: block; margin-bottom: 20px; color: var(--gold); }
.service-icon.material-symbols-outlined { font-size: 44px; font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 44; }
.service-item h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-item p { font-size: 14px; color: rgba(30,28,24,0.55); line-height: 1.7; }
.gold-line { width: 32px; height: 2px; background: var(--gold); margin: 0 auto 20px; }
@media (max-width: 700px) { .service-grid { grid-template-columns: 1fr; } }

/* ══ PERSÖNLICHE BERATUNG ══ */
#beratung {
  background: var(--cream);
  padding: 80px 48px;
}
#termin-cta {
  background: var(--white);
  padding: 130px 48px;
}
.beratung-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Content-Box: zentriert, ohne Bild */
.beratung-box--content {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.beratung-box--content .section-label { margin-bottom: 8px; }

.beratung-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 22px;
}
.beratung-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 620px;
}

/* 3 Kontakt-Icons */
.beratung-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 36px;
  width: 100%;
}
.beratung-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.beratung-icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(190,160,105,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.beratung-icon-item:hover .beratung-icon-circle {
  border-color: var(--gold);
  background: rgba(190,160,105,0.06);
}
.beratung-icon-circle .material-symbols-outlined {
  font-size: 24px; color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.beratung-icon-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); line-height: 1.3;
}
.beratung-icon-value {
  font-size: 13px; color: var(--dark2); line-height: 1.4;
}
.beratung-icon-value a {
  color: var(--dark2); text-decoration: none; transition: color 0.3s;
}
.beratung-icon-value a:hover { color: var(--gold); }

/* CTA Button */
.beratung-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 15px 32px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold);
  background: var(--white); color: var(--dark);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.beratung-cta:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.25);
}

/* Zwei Buttons nebeneinander */
.beratung-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* WhatsApp-Variante — gleicher Outline-Stil, grüne Border */
.beratung-cta--wa {
  background: var(--white);
  border-color: var(--gold);
  color: var(--dark);
}
.beratung-cta--wa:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(190,160,105,0.25);
}

/* ══ BERATUNG MOBILE ══ */
@media (max-width: 768px) {
  #beratung { padding: 48px 24px; }
  .beratung-icons { gap: 24px; }
  .beratung-icon-circle { width: 52px; height: 52px; }
  .beratung-icon-circle .material-symbols-outlined { font-size: 20px; }
  .beratung-title { font-size: clamp(26px, 6vw, 38px); margin-bottom: 14px; }
  .beratung-text { font-size: 14px; }
  .beratung-cta { font-size: 11px; padding: 12px 20px; }
  .beratung-btns { justify-content: center; width: 100%; }
}

/* ══ RINGSTYLES ══ */
#ringstyles {
  background: var(--white);
  padding: 80px 48px 96px;
}
.ringstyle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}
.ringstyle-grid .mat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ringstyle-grid .mat-circle {
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  #ringstyles { padding: 64px 24px; }
  .ringstyle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    max-width: 400px;
  }
  .ringstyle-grid .mat-circle { width: 130px; height: 130px; }
}

/* ══ VORTEILE ══ */
#vorteile { background: var(--cream); padding: 100px 48px; }
.vorteile-icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 52px auto 0;
}
.vorteil-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex: 0 1 148px;
  text-align: center;
}
.vorteil-icon-circle {
  width: 110px;
  height: 110px;
  background: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.vorteil-icon-item:hover .vorteil-icon-circle {
  background: rgba(190,160,105,0.12);
}
.vorteil-icon-circle svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
}
.vorteil-icon-circle .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}
.vorteil-icon-label {
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 900px) {
  #vorteile { padding: 72px 24px; }
  .vorteil-icon-item { flex: 0 1 calc(33% - 16px); }
}
@media (max-width: 580px) {
  .vorteil-icon-item { flex: 0 1 calc(50% - 12px); }
  .vorteil-icon-circle { width: 90px; height: 90px; }
  .vorteil-icon-circle svg { width: 44px; height: 44px; }
}

/* ══ MISSION ══ */
#mission {
  background: var(--cream);
  padding: 110px 48px;
}
.mission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
#mission .section-label { color: var(--gold); }
.mission-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 12px 0 0;
}
.mission-sub {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(20px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin: 18px 0 0;
}
.mission-body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--muted);
  line-height: 1.9;
  margin: 32px auto 0;
  max-width: 600px;
}
.mission-cta-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  color: var(--dark);
  margin: 28px auto 0;
}
.mission-sig { margin-top: 40px; }
.mission-sig-line {
  width: 48px; height: 1px;
  background: var(--gold); opacity: 0.5;
  margin: 0 auto 20px;
}
.mission-sig-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 24px; font-style: italic; font-weight: 500;
  color: var(--gold);
}
.mission-sig-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 600px) { #mission { padding: 80px 24px; } }

/* ══ WARUM DESIGNTERMIN ══ */
#warum-termin {
  background: var(--white);
  padding: 100px 48px;
  text-align: center;
}
.warum-list {
  max-width: 620px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
  text-align: left;
}
.warum-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.warum-item-icon {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.warum-item-icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 40;
}
.warum-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.35;
}
.warum-item-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.warum-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.warum-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 16px 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold);
  background: var(--white); color: var(--dark);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.warum-cta:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.25);
}
@media (max-width: 800px) {
  #warum-termin { padding: 72px 24px; }
  .warum-list { gap: 36px; }
  .warum-item-title { font-size: 18px; }
}
@media (max-width: 500px) {
  #warum-termin { padding: 56px 20px; }
  .warum-item { gap: 20px; }
  .warum-item-icon { width: 36px; }
  .warum-item-icon .material-symbols-outlined { font-size: 30px; }
}

/* ══ TERMIN ABLAUF ══ */
#ablauf {
  background: var(--white);
  padding: 100px 48px;
  text-align: center;
}
.ablauf-list {
  max-width: 620px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
  text-align: left;
}
.ablauf-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.ablauf-item-icon {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.ablauf-item-icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 40;
}
.ablauf-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.35;
}
.ablauf-item-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.ablauf-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.ablauf-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 16px 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold);
  background: var(--white); color: var(--dark);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.ablauf-cta:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.25);
}
@media (max-width: 800px) {
  #ablauf { padding: 72px 24px; }
  .ablauf-list { gap: 36px; }
  .ablauf-item-title { font-size: 18px; }
}
@media (max-width: 500px) {
  #ablauf { padding: 56px 20px; }
  .ablauf-item { gap: 20px; }
  .ablauf-item-icon { width: 36px; }
  .ablauf-item-icon .material-symbols-outlined { font-size: 30px; }
}

/* ══ ÖFFNUNGSZEITEN ══ */
#oeffnungszeiten { background: var(--cream); padding: 100px 48px; }
.hours-table { max-width: 480px; margin: 48px auto 0; border-top: 1px solid rgba(196,165,90,0.2); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(196,165,90,0.2); }
.hours-day { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark2); }
.hours-time { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--gold-dark); font-weight: 600; }
.hours-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); font-style: italic; }
@media (max-width: 600px) { #oeffnungszeiten { padding: 72px 24px; } }

/* ══ KONTAKT ══ */
#kontakt { background: var(--white); padding: 100px 48px; }
.kontakt-inner { max-width: 1100px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.kontakt-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 28px; color: var(--dark); }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; color: var(--gold); }
.info-icon.material-symbols-outlined { font-size: 22px; font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-value { font-size: 16px; color: var(--dark2); line-height: 1.5; }
.info-value a { color: var(--dark2); text-decoration: none; transition: color 0.3s; }
.info-value a:hover { color: var(--gold); }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--dark); text-decoration: none; padding: 15px 32px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 12px; border: 2px solid var(--gold); transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; }
.wa-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(190,160,105,0.25); }
.maps-wrap { overflow: hidden; height: 380px; border: 1px solid rgba(196,165,90,0.2); }
.maps-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .kontakt-inner { grid-template-columns: 1fr; gap: 40px; } #kontakt { padding: 72px 24px; }
  .wa-btn { display: flex; width: fit-content; margin: 12px auto 0; }
}

/* ══ GOOGLE BEWERTUNGEN ══ */
#bewertungen { background: var(--cream); padding: 100px 48px; }
.bew-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.bew-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bew-card {
  background: var(--white);
  border: 1px solid rgba(190,160,105,0.25);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.bew-card:hover { border-color: rgba(190,160,105,0.55); transform: translateY(-3px); }
.bew-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.bew-text {
  font-size: 13px; color: rgba(30,28,24,0.65);
  line-height: 1.7; font-style: italic; flex: 1;
}
.bew-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.bew-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bew-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.bew-date { font-size: 11px; color: rgba(30,28,24,0.4); margin-top: 2px; }

/* Rechte CTA-Box */
.bew-cta-wrap {
  display: flex; flex-direction: column; gap: 24px;
  background: var(--white);
  border: 1px solid rgba(190,160,105,0.25);
  padding: 40px 36px;
}
.bew-google-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: var(--dark);
}
.bew-rating { display: flex; flex-direction: column; gap: 6px; }
.bew-rating-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: var(--dark); line-height: 1;
}
.bew-rating-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; }
.bew-rating-label { font-size: 11px; color: rgba(30,28,24,0.45); letter-spacing: 1px; text-transform: uppercase; }
.bew-cta-text { font-size: 14px; color: rgba(30,28,24,0.55); line-height: 1.7; }
.bew-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark);
  text-decoration: none; padding: 14px 24px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  border: 2px solid var(--gold);
}
.bew-btn:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(190,160,105,0.25);
}
@media (max-width: 960px) {
  .bew-inner { grid-template-columns: 1fr; gap: 40px; }
  #bewertungen { padding: 72px 24px; }
  .bew-btn { justify-content: center; }
}
@media (max-width: 600px) { .bew-cards { grid-template-columns: 1fr; } }

/* ══ TERMIN ══ */
#termin { background: var(--white); padding: 100px 48px; }
.termin-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.termin-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.termin-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700; color: var(--dark);
  line-height: 1.15; margin: 0 0 20px;
}
.termin-info-text {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; margin-bottom: 32px;
}
.termin-sub {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin: 0 0 16px;
}
.termin-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.termin-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--dark2);
}
.termin-list .material-symbols-outlined {
  font-size: 20px; color: var(--gold); flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.termin-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark); text-decoration: none;
  padding: 16px 36px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.termin-cta-btn:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.25);
}

/* Form */
.termin-form-wrap {
  background: var(--cream); padding: 48px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.tf-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark); margin: 0 0 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(190,160,105,0.2);
}
.tf-row { margin-bottom: 20px; }
.tf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tf-field { display: flex; flex-direction: column; gap: 8px; }
.tf-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
}
.tf-field input,
.tf-field select,
.tf-field textarea {
  border: 1px solid rgba(190,160,105,0.25);
  background: var(--cream);
  padding: 13px 16px; font-size: 14px; font-family: 'Lato', sans-serif;
  color: var(--dark); outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%; resize: vertical;
}
.tf-field input:focus,
.tf-field select:focus,
.tf-field textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.tf-trust {
  display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0 16px;
  padding: 16px 20px;
  background: rgba(190,160,105,0.07);
  border-left: 3px solid var(--gold);
}
.tf-trust span {
  font-size: 13px; font-weight: 600; color: var(--dark2);
  letter-spacing: 0.3px;
}
.tf-submit-row { margin-top: 0; }
.tf-btn {
  width: 100%; background: var(--white); color: var(--dark);
  border: 2px solid var(--gold); padding: 18px 32px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.tf-btn:hover:not(:disabled) {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(190,160,105,0.35);
}
.tf-btn:disabled { opacity: 0.6; cursor: wait; }
.tf-privacy {
  font-size: 11px; color: var(--muted); margin-top: 12px;
  line-height: 1.5; text-align: center;
}
.tf-wa-alt {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(190,160,105,0.2);
  text-align: center;
}
.tf-wa-alt-text {
  font-size: 13px; color: var(--muted); margin-bottom: 12px;
  font-style: italic;
}
.tf-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  text-decoration: none; padding: 14px 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.tf-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.tf-success, .tf-error {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; margin-top: 16px; font-size: 14px;
}
.tf-success {
  background: rgba(37,211,102,0.08); color: #1a7a40;
  border: 1px solid rgba(37,211,102,0.3);
}
.tf-error {
  background: rgba(220,50,50,0.06); color: #a02020;
  border: 1px solid rgba(220,50,50,0.2);
}
.tf-success .material-symbols-outlined,
.tf-error .material-symbols-outlined {
  font-size: 22px; flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 22;
}
@media (max-width: 900px) {
  .termin-inner { grid-template-columns: 1fr; gap: 40px; }
  .tf-row-2 { grid-template-columns: 1fr; }
  .termin-form-wrap { padding: 32px 24px; }
  #termin { padding: 72px 24px; }
  .termin-cta-btn { display: flex; width: fit-content; margin: 0 auto; }
}

/* ══ FOOTER ══ */
/* ══ UNTERSEITEN — PAGE HERO ══ */
.page-hero {
  padding: 180px 48px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,8,6,0.72) 0%, rgba(10,8,6,0.55) 60%, rgba(10,8,6,0.75) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .section-label { color: var(--gold); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin: 16px 0 0;
}
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin: 20px auto 36px;
  max-width: 540px;
}
.page-hero .ornament-line { background: rgba(196,165,90,0.4); }
.page-hero .ornament-diamond { color: var(--gold); }
.page-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 16px 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold); color: var(--dark);
  background: var(--white);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.page-hero-cta:hover {
  background: var(--gold); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190,160,105,0.35);
}

/* ══ ANKAUF PAGE ══ */
.ankauf-vorteile {
  background: var(--white); padding: 100px 48px; text-align: center;
}
.ankauf-vorteil-grid {
  max-width: 960px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.ankauf-vorteil-item { text-align: center; }
.ankauf-vorteil-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(190,160,105,0.1); border: 1px solid rgba(190,160,105,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.ankauf-vorteil-icon .material-symbols-outlined {
  font-size: 28px; color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 28;
}
.ankauf-vorteil-title {
  font-family: 'Playfair Display', serif; font-size: 17px;
  font-weight: 700; color: var(--dark); margin: 0 0 10px;
}
.ankauf-vorteil-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.ankauf-was {
  background: var(--cream); padding: 100px 48px; text-align: center;
}
.ankauf-card-list {
  list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px;
}
.ankauf-card-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--dark2);
}
.ankauf-card-list .material-symbols-outlined {
  font-size: 16px; color: var(--gold); flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 16;
}
/* ══ GOLDPREIS RECHNER ══ */
.goldrechner-section {
  background: var(--white);
  padding: 0 0 100px;
  text-align: center;
}
.gold-price-banner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 24px 48px; margin-bottom: 80px;
  flex-wrap: wrap;
}
.gold-price-icon {
  font-size: 36px; color: var(--white);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 40;
}
.gold-price-info { text-align: left; }
.gold-price-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.75); margin: 0 0 4px;
}
.gold-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--white);
  line-height: 1; margin: 0;
}
.gold-price-unit {
  font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.8);
}
.gold-price-updated {
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px; white-space: nowrap;
}
.gold-calc-wrap {
  max-width: 700px; margin: 48px auto 0;
}
.gold-calc-fields {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 16px; align-items: end;
  background: var(--cream); padding: 36px;
  border-top: 3px solid var(--gold);
}
.gold-calc-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.gold-calc-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark);
}
.gold-calc-field select,
.gold-calc-field input {
  border: 1px solid rgba(190,160,105,0.3);
  background: var(--white); padding: 13px 14px;
  font-size: 14px; font-family: 'Lato', sans-serif;
  color: var(--dark); outline: none; width: 100%;
  transition: border-color 0.3s;
}
.gold-calc-field select:focus,
.gold-calc-field input:focus { border-color: var(--gold); }
.gold-calc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  border: none; padding: 14px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; white-space: nowrap;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.gold-calc-btn .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.gold-calc-btn:hover {
  background: var(--gold-dark); color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(190,160,105,0.35);
}
.gold-calc-result {
  margin-top: 2px; background: var(--dark);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.gold-calc-result-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 6px;
}
.gold-calc-result-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--gold);
  line-height: 1; margin: 0;
}
.gold-calc-result-sub {
  font-size: 12px; color: rgba(255,255,255,0.4); margin: 6px 0 0;
}
.gold-calc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; padding: 14px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(196,165,90,0.5); color: var(--gold);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.gold-calc-cta:hover { background: var(--gold); color: var(--dark); }
.gold-calc-note {
  font-size: 12px; color: var(--muted); margin-top: 16px;
  line-height: 1.6; text-align: left;
}
@media (max-width: 700px) {
  .gold-price-banner { padding: 20px 24px; gap: 12px; }
  .gold-price-num { font-size: 24px; }
  .gold-calc-fields { grid-template-columns: 1fr; }
  .gold-calc-btn { width: 100%; justify-content: center; }
  .gold-calc-result { flex-direction: column; align-items: flex-start; }
  .gold-calc-result-value { font-size: 32px; }
  .gold-calc-cta { white-space: normal; }
}

.ankauf-ablauf { background: var(--white); padding: 100px 48px; text-align: center; }
.ankauf-cta-section { background: var(--cream); padding: 100px 48px; }

/* ══ SERVICE PAGE ══ */
.service-detail { background: var(--white); padding: 100px 48px; text-align: center; }
.service-detail-grid {
  max-width: 1060px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: left;
}
.service-detail-item {
  background: var(--cream); padding: 40px 36px;
  border-top: 3px solid rgba(190,160,105,0.3);
  transition: border-color 0.3s;
}
.service-detail-item:hover { border-color: var(--gold); }
.service-detail-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(190,160,105,0.12); border: 1px solid rgba(190,160,105,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-detail-icon .material-symbols-outlined {
  font-size: 26px; color: var(--gold);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 26;
}
.service-detail-title {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: var(--dark); margin: 0 0 12px;
}
.service-detail-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }
.service-detail-list {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.service-detail-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--dark2);
}
.service-detail-list .material-symbols-outlined {
  font-size: 16px; color: var(--gold); flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 16;
}
.service-trust { background: var(--cream); padding: 100px 48px; text-align: center; }
.service-cta-section { background: var(--white); padding: 100px 48px; }

/* ══ RESPONSIVE — UNTERSEITEN ══ */
@media (max-width: 900px) {
  .page-hero { padding: 140px 24px 72px; }
  .ankauf-vorteil-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ankauf-vorteile, .ankauf-was, .ankauf-ablauf,
  .ankauf-cta-section, .service-detail, .service-trust, .service-cta-section {
    padding: 72px 24px;
  }
}
@media (max-width: 560px) {
  .page-hero { padding: 130px 20px 60px; }
  .ankauf-vorteil-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-item { padding: 32px 24px; }
}

footer#main-footer { background: var(--cream2); padding: 56px 48px 36px; text-align: center; border-top: 1px solid rgba(196,165,90,0.25); }
.footer-logo { display: block; margin: 0 auto; height: 64px; width: auto; }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; color: var(--gold-dark); margin-top: 16px; }
.footer-divider { width: 60px; height: 1px; background: rgba(196,165,90,0.4); margin: 28px auto; }
.footer-links { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-dark); }
.footer-copy { font-size: 12px; color: var(--muted); margin-top: 20px; }
@media (max-width: 600px) { footer#main-footer { padding: 48px 24px 32px; } }

/* ══ COOKIE BANNER ══ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  padding: 0 16px 16px;
  pointer-events: none;
  animation: cookieSlideUp 0.4s var(--ease) both;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner.cookie-hide {
  animation: cookieSlideDown 0.4s var(--ease) forwards;
}
@keyframes cookieSlideDown {
  to { transform: translateY(110%); opacity: 0; }
}
.cookie-inner {
  pointer-events: all;
  background: var(--white);
  border: 1px solid rgba(190,160,105,0.35);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.10);
  max-width: 860px;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.cookie-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.65;
}
.cookie-desc a { color: var(--gold-dark); text-decoration: underline; }
.cookie-btns {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  border: 2px solid var(--gold);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.cookie-btn--accept:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-1px); }
.cookie-btn--decline {
  background: var(--white); color: var(--dark);
}
.cookie-btn--decline:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-inner { padding: 20px; gap: 16px; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ══ LEGAL PAGES (Impressum & Datenschutz) ══ */
.legal-page {
  min-height: 100vh;
  background: var(--white);
}
.legal-hero {
  background: var(--cream);
  text-align: center;
  padding: 140px 48px 64px;
  border-bottom: 1px solid rgba(196,165,90,0.15);
}
.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 0;
  line-height: 1.1;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 48px 100px;
}
.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,165,90,0.12);
}
.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.legal-block h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 24px 0 10px;
}
.legal-block p {
  font-size: 15px;
  color: var(--dark2);
  line-height: 1.8;
  margin: 0 0 14px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin: 10px 0 14px 20px;
  padding: 0;
}
.legal-block ul li {
  font-size: 15px;
  color: var(--dark2);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style-type: disc;
}
.legal-block a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-block a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .legal-hero { padding: 120px 24px 48px; }
  .legal-content { padding: 48px 24px 72px; }
  .legal-block { margin-bottom: 36px; padding-bottom: 36px; }
  .legal-block h2 { font-size: 19px; }
}
