/* ════════════════════════════════════════════════════════════
   JUWELIER BEHRENDT — Design System
   Warm black · Champagne gold · Editorial serif
   ════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0B0A08;
  --bg-soft:   rgba(20, 17, 14, 0.86);
  --surface:   rgba(25, 21, 17, 0.92);
  --line:      rgba(232, 206, 154, 0.14);
  --ink:       #EFE8DB;
  --muted:     #9C917E;
  --gold:      #C6A15B;
  --gold-hi:   #E8CE9A;
  --gold-lo:   #7A5A24;
  --gold-grad: linear-gradient(120deg, #E8CE9A 0%, #C6A15B 45%, #8F6B2E 100%);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Manrope", -apple-system, sans-serif;

  --container: min(92vw, 1240px);
  --section-pad: clamp(6rem, 12vw, 11rem);
  --radius: 2px;

  --ease: cubic-bezier(0.65, 0.01, 0.15, 1);
  --dur: 0.9s;
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

::selection { background: var(--gold); color: var(--bg); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: var(--section-pad); position: relative; }
main, .footer { position: relative; z-index: 1; }

/* ── Licht-Ringe (Hintergrund) ─────────────────────────────── */
.bg-rings {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-rings__scene {
  position: absolute;
  width: min(62vw, 820px);
  height: auto;
  right: -12vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.42;
  filter: drop-shadow(0 0 60px rgba(232, 195, 125, 0.16));
}
.bg-rings__scene g { will-change: transform; }
@media (max-width: 900px) {
  .bg-rings__scene {
    width: 110vw;
    right: -40vw;
    opacity: 0.3;
  }
}

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  display: block;
  width: clamp(220px, 32vw, 340px);
  margin-inline: auto;
  animation: fadeUp 1.2s var(--ease) both;
}
.preloader__line {
  display: block;
  height: 1px;
  margin-top: 1.5rem;
  background: var(--gold-grad);
  animation: lineGrow 1.6s var(--ease) 0.2s both;
  transform-origin: left;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ── Cursor ────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 2500;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-hi);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  opacity: 0;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              border-color 0.5s var(--ease), transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-block: 0.85rem;
  background: rgba(11, 10, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__logo { display: flex; align-items: center; }
.nav__logo img {
  height: clamp(34px, 4vw, 44px);
  width: auto;
  transition: height 0.5s var(--ease);
}
.nav.is-scrolled .nav__logo img { height: 32px; }

.nav__links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.35s;
  padding-block: 0.3rem;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-hi);
  border: 1px solid rgba(198, 161, 91, 0.4);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.nav__burger {
  display: none;
  flex-direction: column; gap: 7px;
  padding: 0.5rem;
  z-index: 1200;
}
.nav__burger span {
  width: 28px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}
.nav__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ── Mobile menu ───────────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(11, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.5rem, 6vw, 4rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  padding-block: 0.35rem;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), color 0.3s;
}
.menu__links a:hover { color: var(--gold-hi); }
.menu__links a em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  vertical-align: super;
  margin-right: 0.8rem;
}
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.08s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.14s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.20s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.26s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.32s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.38s; }
.menu__foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: flex; flex-direction: column; gap: 0.3rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
  padding: clamp(7rem, 14vh, 10rem) 0 2rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  top: -20%; left: 50%;
  width: 90vw; height: 90vw;
  max-width: 1100px; max-height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(198, 161, 91, 0.13) 0%, transparent 60%);
}
.hero__content {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.hero__overline {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1.5rem, 3.5vh, 2.8rem);
}
.hero__overline .rule { height: 1px; width: clamp(2rem, 6vw, 5rem); background: var(--gold-grad); opacity: 0.7; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.9rem, 9.2vw, 8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: clamp(1.6rem, 4vh, 2.8rem);
}
.hero__title em, .section__title em, .kontakt__title em, .werte__quote em {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}
.hero__sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__foot {
  width: var(--container);
  margin: auto auto 0;
  padding-top: 3rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  position: relative; z-index: 2;
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll i {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-hi);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}
.hero__tag {
  text-align: right;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.45s;
  isolation: isolate;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  transition: transform 0.55s var(--ease);
}
.btn--solid { color: var(--bg); }
.btn--solid::before { background: var(--gold-grad); }
.btn--solid:hover::before { transform: scale(1.06); }
.btn--solid:hover { color: #000; }
.btn--ghost {
  color: var(--ink);
  border: 1px solid rgba(239, 232, 219, 0.25);
}
.btn--ghost::before { background: var(--ink); transform: scaleX(0); transform-origin: right; border-radius: 0; }
.btn--ghost:hover { color: var(--bg); border-color: var(--ink); }
.btn--ghost:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--light { border-color: rgba(11, 10, 8, 0.35); color: #1A1610; }
.btn--light::before { background: #1A1610; }
.btn--light:hover { color: var(--gold-hi); }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.6rem;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex; align-items: center; gap: 3.2rem;
  padding-right: 3.2rem;
  flex-shrink: 0;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  width: clamp(84px, 9vw, 128px);
  height: clamp(30px, 3.4vw, 44px);
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.35s var(--ease);
}
.marquee__track img:hover { opacity: 1; }
.marquee__track i { color: var(--gold); font-size: 0.55rem; font-style: normal; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ── Section primitives ────────────────────────────────────── */
.section__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
  display: flex; align-items: center; gap: 0.9rem;
}
.section__label em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-display);
}
.section__label::after {
  content: "";
  height: 1px; width: 3.5rem;
  background: var(--line);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.section__head { margin-bottom: clamp(3rem, 7vh, 5rem); }
.section__text {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 1.8rem;
}
.section__text--head { margin-top: 1.6rem; }

/* line-split reveal */
.line { display: block; overflow: hidden; }
.line > span { display: inline-block; will-change: transform; }

/* ── Photo component ───────────────────────────────────────── */
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.94);
  transition: filter 0.6s var(--ease), transform 1.2s var(--ease);
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(11, 10, 8, 0.45), transparent 45%),
              radial-gradient(ellipse at center, transparent 55%, rgba(11, 10, 8, 0.25));
}
.photo:hover img { filter: saturate(1) contrast(1.04) brightness(1); transform: scale(1.03); }
.photo figcaption {
  position: absolute; left: 1.2rem; bottom: 1rem; z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-hi);
}
.photo--frame { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }

/* ── Werte ─────────────────────────────────────────────────── */
.werte { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.werte__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  line-height: 1.18;
  max-width: 30ch;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.werte__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.werte__grid--photo { align-items: center; }
.werte__photo { aspect-ratio: 10 / 7; }
.werte__grid--photo .werte__text { margin-bottom: 2.5rem; }
.werte__text { color: var(--muted); font-size: 1.1rem; }
.werte__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Schmuck ───────────────────────────────────────────────── */
.schmuck__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.card {
  background: rgba(13, 11, 9, 0.82);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  transition: background 0.5s var(--ease);
}
.card:hover { background: var(--surface); }
.card__index {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 1.2rem 0 0.9rem;
}
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.8rem; }
.card__brands { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.card__brands li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: border-color 0.35s, color 0.35s;
}
.card:hover .card__brands li { border-color: rgba(198, 161, 91, 0.45); }

/* Fördeleben */
.foerdeleben {
  background: var(--gold-grad);
  border-radius: var(--radius);
  color: #1A1610;
  overflow: hidden;
}
.foerdeleben__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}
.foerdeleben__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1rem;
}
.foerdeleben__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.foerdeleben__title em { font-style: italic; }
.foerdeleben__desc {
  max-width: 32rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 2.2rem;
}
.foerdeleben__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 22, 16, 0.35);
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease);
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin-inline: auto;
}
.foerdeleben:hover .foerdeleben__photo { transform: rotate(0deg) scale(1.015); }
.foerdeleben__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trauringe ─────────────────────────────────────────────── */
.trauringe { background: var(--bg-soft); border-block: 1px solid var(--line); }
.trauringe__wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.trauringe__visual { position: relative; }
.trauringe__visual .photo { aspect-ratio: 4 / 4.4; max-width: 480px; }
.trauringe__badge {
  position: absolute;
  right: clamp(-1.5rem, -2vw, -0.5rem);
  bottom: -2rem;
  width: clamp(110px, 12vw, 160px);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
}
.feature-list { margin: 2.2rem 0 2.8rem; display: grid; gap: 1rem; }
.feature-list li {
  display: flex; gap: 1rem; align-items: baseline;
  color: var(--muted);
  font-size: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.feature-list li strong { color: var(--ink); font-weight: 500; }
.feature-list i { color: var(--gold); font-style: normal; font-size: 0.6rem; flex-shrink: 0; }

/* ── Uhren ─────────────────────────────────────────────────── */
.uhren__list { border-top: 1px solid var(--line); }
.uhren__row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: clamp(1.4rem, 3vh, 2.1rem) 0.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.5s var(--ease);
  cursor: default;
}
.uhren__row::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(198, 161, 91, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.uhren__row:hover { padding-left: 1.6rem; }
.uhren__row:hover::before { opacity: 1; }
.uhren__idx {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.uhren__brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  transition: color 0.4s;
}
.uhren__row:hover .uhren__brand {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.uhren__note {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.uhren__preview {
  position: fixed;
  top: 0; left: 0;
  width: clamp(240px, 22vw, 340px);
  aspect-ratio: 10 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  border: 1px solid var(--line);
  will-change: transform, opacity;
}
.uhren__preview.is-visible { opacity: 1; }
.uhren__preview img { width: 100%; height: 100%; object-fit: cover; }
@media (pointer: coarse) { .uhren__preview { display: none; } }

/* ── Werkstatt ─────────────────────────────────────────────── */
.werkstatt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.werkstatt__strip {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.werkstatt__img { height: clamp(220px, 28vw, 360px); }

.werkstatt__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wcard {
  background: var(--bg-soft);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  transition: background 0.5s var(--ease);
}
.wcard:hover { background: var(--surface); }
.wcard svg {
  width: 42px; height: 42px;
  color: var(--gold);
  margin-bottom: 1.6rem;
  transition: transform 0.5s var(--ease);
}
.wcard:hover svg { transform: translateY(-4px); }
.wcard h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}
.wcard p { color: var(--muted); font-size: 0.92rem; }

/* ── Goldankauf ────────────────────────────────────────────── */
.gold {
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(198, 161, 91, 0.1), transparent 60%);
}
.gold__wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.section__label--gold em { color: var(--gold-hi); }
.gold__photo { aspect-ratio: 10 / 6.5; margin-top: 2.5rem; }
.gold__points { display: grid; gap: 0; border-top: 1px solid var(--line); }
.gold__points li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.gold__points li h3, .gold__points li p { grid-column: 2; }
.gold__num { grid-row: 1 / span 2; }
.gold__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.gold__points h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.gold__points p { color: var(--muted); font-size: 0.95rem; }

/* ── Kontakt ───────────────────────────────────────────────── */
.kontakt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.kontakt__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  line-height: 1;
  margin-bottom: clamp(3.5rem, 8vh, 6rem);
}
.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 5vh, 4rem);
}
.kontakt__block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.kontakt__block p { color: var(--muted); }
.kontakt__link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.kontakt__link:hover { color: var(--gold-hi); }
.kontakt__hours { display: flex; flex-direction: column; gap: 0.2rem; }
.kontakt__time {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.3;
}
.kontakt__note { margin-top: 1.2rem; font-size: 0.9rem; font-style: italic; font-family: var(--font-display); }
.kontakt__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.kontakt__big:hover { color: var(--gold-hi); }
.kontakt__big--mail { font-size: clamp(1.05rem, 2vw, 1.3rem); word-break: break-all; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vh, 5rem) 0 2.5rem;
}
.footer__wrap { text-align: center; }
.footer__logo { display: inline-flex; }
.footer__logo img { height: clamp(44px, 5vw, 56px); width: auto; }
.footer__claim {
  margin: 1.4rem 0 2.8rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
}
.footer__meta {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__social, .footer__legal { display: flex; gap: 1.6rem; }
.footer__social a, .footer__legal a {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer__social a:hover, .footer__legal a:hover { color: var(--gold-hi); }

/* ── Reveal (JS hook) ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); }
html.no-motion .reveal, html.no-js .reveal { opacity: 1; transform: none; }
html.no-motion .line > span { transform: none !important; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .schmuck__grid { grid-template-columns: 1fr; }
  .werkstatt__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .werte__grid, .trauringe__wrap, .gold__wrap { grid-template-columns: 1fr; }
  .werte__stats { border-left: 0; padding-left: 0; padding-top: 2rem; border-top: 1px solid var(--line); }
  .trauringe__visual { order: 2; margin-top: 2.5rem; }
  .trauringe__visual .photo { margin-inline: auto; }
  .trauringe__badge { right: 0.5rem; bottom: -1.5rem; }
  .foerdeleben__inner { grid-template-columns: 1fr; }
  .foerdeleben__photo { margin-top: 1.5rem; max-width: 320px; }
  .werkstatt__strip { grid-template-columns: 1fr; }
  .werkstatt__img { height: auto; aspect-ratio: 16 / 9; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .hero__tag { display: none; }
  .uhren__row { grid-template-columns: 2.6rem 1fr; }
  .uhren__note { display: none; }
  .br-desktop { display: none; }
}

@media (max-width: 560px) {
  .werkstatt__grid { grid-template-columns: 1fr; }
  .werte__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero__overline .rule { display: none; }
  .hero__overline { letter-spacing: 0.24em; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
