:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-text: #14120f;
  --color-muted: #74695c;
  --color-gold: #b8934a;
  --color-gold-dark: #8f6f34;
  --color-gold-light: #d9b877;
  --color-silver: #9aa0a6;
  --color-line: #eae5db;
  --font-heading: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-line);
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
}
.logo img {
  height: 64px;
  width: auto;
}
.logo span {
  color: var(--color-gold-dark);
  font-weight: 800;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--color-text); }

.account-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 9px 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.account-link:hover {
  border-color: var(--color-gold);
  background: #fbf7ef;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  background: #14120f url('../assets/img/hero-home.png') center / cover no-repeat;
  color: #fff;
  padding: 128px 0 116px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(20,18,15,0.25) 0%, rgba(20,18,15,0.45) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 20px;
}
.hero p {
  color: #cdc4b4;
  font-size: 1.15rem;
  margin: 0 0 36px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-primary {
  background: var(--color-gold);
  color: #14120f;
  box-shadow: 0 8px 24px rgba(184,147,74,0.3);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184,147,74,0.38);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #0b1d13;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #2fe273;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
}

/* Bereiche: Schmuck vs. Anlage */
.bereiche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 72px auto 0;
}
.bereich-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 56px 40px;
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bereich-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
.bereich-schmuck {
  background:
    linear-gradient(90deg, rgba(20,18,15,0.75) 0%, rgba(20,18,15,0.35) 45%, rgba(20,18,15,0.15) 100%),
    url('../assets/img/bereich-schmuck.png');
  background-size: cover;
  background-position: center;
}
.bereich-anlage {
  background:
    linear-gradient(90deg, rgba(10,9,8,0.8) 0%, rgba(10,9,8,0.4) 45%, rgba(10,9,8,0.15) 100%),
    url('../assets/img/bereich-anlage.png');
  background-size: cover;
  background-position: center;
}
.bereich-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
  margin-bottom: 10px;
}
.bereich-card h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.bereich-card p {
  margin: 0 0 20px;
  color: #d8d2c6;
  font-size: 0.98rem;
}
.bereich-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: gap 0.25s var(--ease);
}

/* Section titles */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 36px;
}

/* Categories */
.categories { margin: 80px auto; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.category-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--color-surface);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.category-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(20,18,15,0.06);
}
.category-card--soon { color: var(--color-muted); }
.category-card--soon span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gold-dark);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Product grid */
.featured { margin: 80px auto; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
  margin: 24px 0 64px;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.product-card:hover {
  box-shadow: 0 20px 36px rgba(20,18,15,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.product-card-img {
  aspect-ratio: 1 / 1;
  background: #f2efe9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-placeholder {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.product-card-body { padding: 18px; }
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-body h3 { margin: 0 0 4px; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.product-category { margin: 0; color: var(--color-muted); font-size: 0.85rem; }
.product-price { margin: 10px 0 0; font-weight: 600; font-size: 0.92rem; }

/* Products page */
.page-intro { padding: 64px 0 0; text-align: center; }
.page-intro h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.material-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: #f2efe9;
  border-radius: 999px;
  margin-bottom: 20px;
}
.material-toggle-btn {
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.material-toggle-btn:hover { color: var(--color-text); }
.material-toggle-btn.active {
  color: #fff;
  box-shadow: 0 6px 16px rgba(20,18,15,0.18);
}
.material-toggle-btn.active:not(.material-toggle-gold):not(.material-toggle-silber) {
  background: #14120f;
}
.material-toggle-gold.active { background: linear-gradient(135deg, #d3ac6a, #8f6f34); }
.material-toggle-silber.active { background: linear-gradient(135deg, #c2c7cc, #7c828a); }

.kategorie-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.kategorie-toggle-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.kategorie-toggle-btn:hover { border-color: var(--color-gold); color: var(--color-text); }
.kategorie-toggle-btn.active {
  background: #14120f;
  border-color: #14120f;
  color: #fff;
}

.empty-state { color: var(--color-muted); text-align: center; padding: 48px 0; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,18,15,0.7);
  backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  background: var(--color-surface);
  border-radius: 24px;
  max-width: 920px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  animation: modal-pop 0.3s var(--ease);
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  color: var(--color-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.modal-close:hover {
  background: #14120f;
  border-color: #14120f;
  color: #fff;
}
.modal-gallery {
  padding: 40px;
  background: linear-gradient(160deg, #f5f2ea, #eee8db);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-gallery img#modal-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(20,18,15,0.12);
}
.modal-thumbs { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.modal-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.modal-thumbs img:hover { transform: translateY(-2px); }
.modal-thumbs img.active,
.modal-thumbs img:hover { opacity: 1; border-color: var(--color-gold); }
.modal-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.modal-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-gold-dark);
  background: #f7f0e2;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.modal-info h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.modal-category { color: var(--color-muted); margin: 0 0 20px; font-size: 0.92rem; }
.modal-details {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-details:empty { display: none; border: none; padding: 0; margin: 0; }
.modal-details li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.modal-details li span:first-child { color: var(--color-muted); }
.modal-details li span:last-child { font-weight: 600; }
.modal-price { font-size: 1.5rem; font-weight: 700; margin: 4px 0 20px; font-family: var(--font-heading); }
.modal-no-photo { color: var(--color-muted); font-size: 0.9rem; margin: 0; }
.modal-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}
.modal-variants {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 14px;
  background: #f7f5f0;
  border-radius: var(--radius-sm);
}
.variant-option {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.modal-info .btn { align-self: stretch; text-align: center; }
.modal-buy-button { margin-bottom: 12px; min-height: 52px; }
.modal-buy-button iframe { width: 100% !important; }

/* Ankauf page */
.ankauf-hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, #2a2620 0%, #14120f 65%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.ankauf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(184,147,74,0.18), transparent 60%);
  pointer-events: none;
}
.ankauf-hero-inner { position: relative; padding: 100px 0; }
.ankauf-hero-inner .bereich-eyebrow { color: var(--color-gold-light); }
.ankauf-hero-inner h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.9rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 10px 0 14px;
}
.ankauf-hero-inner p {
  font-size: 1.2rem;
  color: #d8d2c6;
  margin: 0 0 32px;
}

.ankauf-was { margin: 80px auto; }
.ankauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ankauf-card {
  border-radius: var(--radius);
  padding: 44px 36px;
  color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ankauf-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,18,15,0.16); }
.ankauf-card-gold { background: linear-gradient(135deg, #d3ac6a, #8f6f34); }
.ankauf-card-silber { background: linear-gradient(135deg, #c2c7cc, #7c828a); }
.ankauf-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.ankauf-card p { margin: 0; opacity: 0.9; font-size: 0.95rem; }

.ankauf-steps-section {
  background: #f4f1ea;
  padding: 80px 0;
}
.ankauf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.ankauf-step {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--color-line);
}
.ankauf-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #14120f;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}
.ankauf-step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin: 0 0 8px; }
.ankauf-step p { margin: 0; color: var(--color-muted); font-size: 0.92rem; }
.ankauf-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 20px;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.ankauf-cta {
  background: #14120f;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.ankauf-cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ankauf-cta-inner p { color: #cdc4b4; margin: 0 0 32px; }
.ankauf-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.kontakt-form-section { margin: 80px auto; }
.kontakt-form-wrap { max-width: 600px; margin: 0 auto; }
.kontakt-form-wrap .section-title { margin-bottom: 32px; }
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px;
}
.kontakt-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kontakt-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}
.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  resize: vertical;
}
.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.kontakt-form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.kontakt-form-note { margin: 0; font-size: 0.8rem; color: var(--color-muted); }
.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}
.btn-outline-dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .ankauf-hero-inner h1 { font-size: 2.1rem; }
  .ankauf-grid { grid-template-columns: 1fr; }
  .ankauf-steps { grid-template-columns: 1fr; }
  .kontakt-form .form-row { grid-template-columns: 1fr; }
  .kontakt-form { padding: 24px; }
}

/* Legal pages */
.legal-page {
  max-width: 760px;
  padding: 64px 24px 40px;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.legal-page h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 32px 0 10px;
}
.legal-page p, .legal-page li {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-page a { color: var(--color-gold-dark); text-decoration: underline; }
.legal-page ul, .legal-page ol { padding-left: 20px; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 560px;
  margin: 0 auto;
  background: #14120f;
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cookie-banner p { margin: 0; font-size: 0.85rem; color: #cdc4b4; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--color-gold-light); text-decoration: underline; }
.cookie-banner .btn { padding: 10px 22px; font-size: 0.85rem; white-space: nowrap; }

/* Footer */
.site-footer {
  background: #14120f;
  color: #cdc4b4;
  margin-top: 72px;
  padding: 60px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.site-footer p { margin: 0; font-size: 0.9rem; }
.site-footer a { color: #cdc4b4; transition: color 0.2s var(--ease); }
.site-footer a:hover { color: var(--color-gold); }
.copyright {
  text-align: center;
  margin: 44px 0 0;
  font-size: 0.78rem;
  color: #756c5e;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 10px;
    padding: 8px;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(20, 18, 15, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    pointer-events: none;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }
  .main-nav a:hover, .main-nav a.active {
    background: rgba(184, 147, 74, 0.1);
  }
  .header-inner { height: 80px; position: relative; gap: 12px; }
  .logo { font-size: 1.2rem; gap: 10px; min-width: 0; }
  .logo img { height: 48px; flex-shrink: 0; }
  .account-link span { display: none; }
  .account-link { padding: 9px; }
  .header-right { gap: 14px; }
  .hero { padding: 76px 0; background-position: right center; }
  .hero h1 { font-size: 2.2rem; }
  .bereiche { grid-template-columns: 1fr; }
  .modal-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
