:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --text: #E8E0D0;
  --text-muted: #9A8E7A;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .45;
}

/* ─────────── NAV ─────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(10, 10, 10, .95), transparent);
  transition: background .4s;
}

nav.scrolled {
  background: rgba(10, 10, 10, .97);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold);
  text-decoration: none;
  font-style: italic;
}

.nav-logo span {
  color: var(--text);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .3s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: background .3s, color .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─────────── HERO ─────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, .08) 0%, transparent 70%),
    linear-gradient(160deg, #0f0c00 0%, #0A0A0A 50%, #0d0a00 100%);
}

/* decorative lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201, 168, 76, .08);
  border-radius: 50%;
}

.hero-lines::before {
  width: 70vw;
  height: 70vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-lines::after {
  width: 50vw;
  height: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-dark);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 2;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
}

.btn-primary {
  display: inline-block;
  padding: .9rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background .3s, transform .3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: .9rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

/* ─────────── SECTION SHARED ─────────── */
section {
  padding: 8rem 4rem;
}

.section-label {
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─────────── TICKER ─────────── */
.ticker-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, .15);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  padding: .75rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.ticker-item strong {
  color: var(--gold);
  font-weight: 500;
}

.ticker-item .up {
  color: #4CAF50;
  font-size: .6rem;
}

.ticker-item .dot {
  color: var(--gold-dark);
}

/* ─────────── SERVICES ─────────── */
#services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: 4rem;
  border: 1.5px solid rgba(201, 168, 76, .12);
}

.service-card {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s;
}

.service-card:hover {
  background: var(--dark-3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: .8rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.metals-list {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.metal-tag {
  padding: .45rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, .25);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color .3s, color .3s;
}

.metal-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────── ABOUT / TRUST ─────────── */
#about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-frame-inner {
  font-size: 8rem;
}

.about-frame-inner-image:hover {
  opacity: .5;
  transform: scale(1.15);
}

.about-frame-inner-image {
  transition: all 1s ease;
  max-width: 100%;
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, .08);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.about-badge .years {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge .label {
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.trust-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.trust-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
}

.trust-point-text h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .3rem;
}

.trust-point-text p {
  font-size: .75rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─────────── STATS BAR ─────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, .12);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .5rem;
}

/* ─────────── CONTACT ─────────── */
#contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-maps-link {
  text-decoration: underline;
  margin-top: 15px;
  text-underline-offset: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.contact-block-label {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.contact-block-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

.contact-block-info {
  font-size: 10px;
  padding-top: 15px;
}

.contact-block-value a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

.contact-block-value a:hover {
  color: var(--gold);
}

.contact-divider {
  height: 1px;
  background: rgba(201, 168, 76, .12);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-group label {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--text);
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--dark-3);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold-light);
}

/* ─────────── MAP PLACEHOLDER ─────────── */
.map-embed {
  margin-top: 5rem;
  border: 1px solid rgba(201, 168, 76, .15);
  overflow: hidden;
  height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(.85);
}


/* ─────────── page-hero ─────────── */
.page-hero {
  padding: 10rem 4rem 5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, .06) 0%, transparent 70%),
    var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
}

.page-hero-inner {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--gold-dark);
}

.page-eyebrow {
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

.page-subtitle {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.9;
}


/* ─────────── FOOTER ─────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, .12);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .3s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* ── FAQ Layout ── */
.faq-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, .15);
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}

/* ── Trigger button ── */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  text-align: left;
  transition: background .2s;
}

.faq-trigger:hover .faq-q {
  color: var(--gold);
}

.faq-q {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  transition: color .3s;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .4s ease, background .3s, color .3s;
}

/* ── Open state ── */
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.faq-trigger[aria-expanded="true"] .faq-q {
  color: var(--gold);
}

/* ── Answer body (animated) ── */
.faq-body {
  display: grid;
  max-height: 0;
  transition: max-height .4s ease;
  overflow: hidden;
}

.faq-body.open {
  max-height: 400px;
}

.faq-body>p {
  overflow: hidden;
  font-size: .82rem;
  line-height: 2;
  color: var(--text-muted);
  padding-bottom: 2rem;
  min-height: 0;
}

/* TOC */
.toc-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.toc-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: .8rem;
  white-space: nowrap;
}

.toc-link {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: .3rem .7rem;
  border: 1px solid transparent;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}

.toc-link:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, .25);
}

/* CONTENT */
.content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 4rem 7rem;
}

.legal-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.legal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.legal-block h2::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}

.legal-block h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 1.8rem 0 .7rem;
}

.legal-block p {
  font-size: .8rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: .9rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s;
}

.legal-block a:hover {
  color: var(--gold-light);
}

.legal-block ul {
  margin: .8rem 0 .8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-block ul li {
  font-size: .8rem;
  line-height: 1.9;
  color: var(--text-muted);
  padding-left: .5rem;
}

.legal-block ul li::marker {
  color: var(--gold);
}

.highlight-box {
  background: var(--dark-2);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  font-size: .8rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0;
}

.highlight-box strong {
  color: var(--text);
  font-weight: 500;
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 1.5rem 0;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .1);
}

.right-item {
  background: var(--dark-2);
  padding: 1.5rem 2rem;
}

.right-item h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: .5rem;
}

.right-item p {
  font-size: .75rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* impressum */
/* CONTENT */
.content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 4rem 7rem;
}

.legal-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.legal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.legal-block h2::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}

.legal-block h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 1.5rem 0 .6rem;
}

.legal-block p {
  font-size: .8rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: .8rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s;
}

.legal-block a:hover {
  color: var(--gold-light);
}

.info-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .15);
  padding: 2rem 2.5rem;
  margin: 1.5rem 0;
}

.info-card .info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: .5rem 1.5rem;
  align-items: baseline;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, .07);
}

.info-card .info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-row .value {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-row .value a {
  color: var(--gold);
  text-decoration: none;
}

.info-row .value a:hover {
  color: var(--gold-light);
}

/* ─────────── ANIMATIONS ─────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Cookie Banner ── */
  #cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: min(860px, calc(100vw - 2rem));
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.25);
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
    z-index: 9000;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease;
  }
  #cookie-banner.hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
  }

  .cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.6rem 2rem;
    flex-wrap: wrap;
  }

  .cookie-text { flex: 1; min-width: 220px; }

  .cookie-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .cookie-icon { font-size: 1rem; }

  .cookie-desc {
    font-size: .72rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  .cookie-desc a {
    color: var(--gold);
    text-decoration: none;
    transition: color .3s;
  }
  .cookie-desc a:hover { color: var(--gold-light); }

  .cookie-actions {
    display: flex;
    gap: .8rem;
    flex-shrink: 0;
  }

  .cookie-btn {
    padding: .7rem 1.6rem;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background .3s, color .3s, transform .2s;
  }
  .cookie-btn:hover { transform: translateY(-1px); }

  .cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(201,168,76,.3);
    color: var(--text-muted);
  }
  .cookie-btn-decline:hover {
    border-color: var(--gold);
    color: var(--text);
  }

  .cookie-btn-accept {
    background: var(--gold);
    color: var(--black);
  }
  .cookie-btn-accept:hover { background: var(--gold-light); }

  /* ── Map Placeholder ── */
  .map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: var(--dark-2);
    border: 1px dashed rgba(201,168,76,.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    text-align: center;
    padding: 2rem;
  }
  .map-placeholder-icon {
    font-size: 2.5rem;
    opacity: .4;
  }
  .map-placeholder p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
  }
  .map-accept-btn {
    margin-top: .5rem;
    padding: .7rem 1.8rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background .3s, transform .2s;
  }
  .map-accept-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ── Cookie-Einstellungen Button (nach Akzeptanz) ── */
  #cookie-settings-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
  }


/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 2rem;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .about-badge {
    width: 110px;
    height: 110px;
  }

  .about-badge .years {
    font-size: 2.2rem;
  }

  #faq {
    padding: 5rem 1.5rem;
  }

  .faq-q {
    font-size: 1.1rem;
  }

  .info-card .info-row {
    grid-template-columns: 1fr;
  }

  .toc-bar {
    padding: 1rem 1.5rem;
    top: 64px;
  }

  .content-wrapper {
    padding: 3rem 1.5rem 5rem;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }
}