/* Seelenmagnet – style.css */

@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/Cinzel-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/Cinzel-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/Cinzel-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --wine:        #381e24;
  --wine-dark:   #261318;
  --wine-mid:    #4a2830;
  --gold:        #c6a063;
  --gold-light:  #f4d27a;
  --gold-dark:   #a07840;
  --cream:       #fffef6;
  --cream-dark:  #f5eedf;
  --text:        #2c1810;
  --text-light:  #fffef6;
  --text-muted:  rgba(255,254,246,0.72);
  --shadow:      0 8px 32px rgba(38,19,24,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: #381e24;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.is-hidden { display: none !important; }

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

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.bg-cream     { background: var(--cream); }
.bg-wine      { background: var(--wine); }
.bg-wine-dark { background: var(--wine-dark); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

/* gold gradient text */
.gold-text {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* section titles */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  color: var(--wine);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title.light { color: var(--cream); }
.section-title.light::after { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.section-title.gold-title { color: var(--gold-light); }
.section-title.gold-title::after { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

.section-sub {
  text-align: center;
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: -2rem auto 3rem;
  line-height: 1.7;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.9rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine);
  box-shadow: 0 4px 16px rgba(198,160,99,0.35);
}
.btn-gold:hover { box-shadow: 0 8px 28px rgba(198,160,99,0.55); }

.btn-wine {
  background: var(--wine);
  color: var(--cream);
  border: 1px solid rgba(198,160,99,0.35);
}
.btn-wine:hover { background: var(--wine-mid); box-shadow: 0 8px 24px rgba(38,19,24,0.3); }

.btn-wine-dark {
  background: var(--wine-dark);
  color: var(--cream);
  border: none;
  letter-spacing: 0.04em;
}
.btn-wine-dark:hover { background: var(--wine); box-shadow: 0 8px 24px rgba(38,19,24,0.35); }

.btn-outline-light {
  background: rgba(255,254,246,0.12);
  color: var(--cream);
  border: 1.5px solid rgba(255,254,246,0.55);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,254,246,0.2);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78rem 1.9rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--cream);
  background: rgba(198,160,99,0.08);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn-gold-outline:hover {
  transform: translateY(-2px);
  background: rgba(198,160,99,0.18);
  box-shadow: 0 8px 24px rgba(198,160,99,0.2);
}

/* scroll progress */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* HEADER */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(38,19,24,0.65) 0%, rgba(38,19,24,0) 100%);
  transition: background var(--transition), box-shadow var(--transition);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header.scrolled {
  background: rgba(38,19,24,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.logo img { transition: transform var(--transition); }
.logo:hover img { transform: scale(1.06); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,254,246,0.82);
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--gold-light); }

.desktop-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine) !important;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}
.desktop-nav .nav-cta:hover {
  box-shadow: 0 4px 18px rgba(198,160,99,0.45);
  transform: translateY(-1px);
}

/* dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,254,246,0.82);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
  padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--gold-light); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: rgba(38,19,24,0.97);
  border: 1px solid rgba(198,160,99,0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(12px);
  z-index: 1100;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,254,246,0.78);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: var(--gold-light);
  background: rgba(198,160,99,0.06);
}

/* mobile overlay dropdown */
.overlay-dropdown-toggle {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 3.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,254,246,0.8);
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 1.1rem 2rem;
  transition: color var(--transition);
}
.overlay-dropdown-toggle:hover { color: var(--gold-light); }
.overlay-dropdown.is-open .overlay-dropdown-toggle { color: var(--gold); }

.overlay-dropdown-toggle span {
  display: inline-block;
  font-size: 0.75em;
  transition: transform 0.3s ease;
}
.overlay-dropdown.is-open .overlay-dropdown-toggle span { transform: rotate(180deg); }

.overlay-dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0;
  background: rgba(255,254,246,0.02);
  border-top: 0 solid rgba(198,160,99,0.12);
}
.overlay-dropdown.is-open .overlay-dropdown-menu {
  max-height: 280px;
  padding: 0.6rem 0 0.9rem;
  border-top-width: 1px;
}
.overlay-dropdown-menu li { border-bottom: none; }
.overlay-dropdown-menu li a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,254,246,0.55) !important;
  padding: 0.55rem 2rem !important;
  background: none !important;
  display: block !important;
  text-align: center !important;
}
.overlay-dropdown-menu li a:hover { color: var(--gold-light) !important; }

/* header right group */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--gold-light);
  border: 1.5px solid rgba(244,210,122,0.7);
  border-radius: 50%;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  position: relative;
}
.cart-btn:hover {
  color: var(--cream);
  border-color: var(--gold-light);
  box-shadow: 0 0 14px rgba(244,210,122,0.35);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  background: var(--gold-light);
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  line-height: 1;
}
.cart-badge.is-visible { opacity: 1; transform: scale(1); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--wine-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.nav-overlay.is-open { transform: translateX(0); }

.nav-overlay > ul {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(198,160,99,0.15);
}

.nav-overlay > ul > li {
  border-bottom: 1px solid rgba(198,160,99,0.1);
}
.nav-overlay > ul > li:last-child { border-bottom: none; }

.nav-overlay > ul > li > a:not(.nav-overlay-cta) {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 3.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,254,246,0.8);
  padding: 1.1rem 2rem;
  text-align: center;
  transition: color var(--transition), background var(--transition);
}
.nav-overlay > ul > li > a:not(.nav-overlay-cta):hover {
  color: var(--gold-light);
  background: rgba(198,160,99,0.04);
}

.nav-overlay-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(198,160,99,0.35);
  margin: 1.8rem auto 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.nav-overlay-portal {
  display: block;
  text-align: center;
  color: rgba(255,254,246,0.5) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.7rem 2rem;
  transition: color var(--transition);
}
.nav-overlay-portal:hover { color: var(--gold) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(38,19,24,0.92) 0%,
    rgba(38,19,24,0.75) 45%,
    rgba(38,19,24,0.2) 75%,
    rgba(38,19,24,0.05) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(60px, 10vh, 120px);
  width: 100%;
}

.hero-content {
  max-width: 820px;
  text-align: left;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(38,19,24,0.9), 0 1px 6px rgba(38,19,24,0.8);
}

.hero-content h1 .gold-text {
  filter:
    drop-shadow(0 2px 10px rgba(20, 5, 8, 0.9))
    drop-shadow(0 1px 3px rgba(20, 5, 8, 0.75));
}

.hero-divider {
  display: block;
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 1.4rem;
}
.hero-divider * { display: none; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,254,246,0.88);
  max-width: 560px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}

.gold-text-inline {
  color: var(--gold);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}


/* CREATOR */
.section-title.no-underline::after { display: none; }
.section-title.creator-title {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.creator-card .gold-text-inline {
  color: var(--gold-dark);
  font-weight: 700;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -1rem auto 3rem;
}
.section-divider span:not(.section-divider-heart) {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-divider-heart {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.creator-card {
  margin: 0 auto 1.5rem;
  background: var(--cream-dark);
  border: 1px solid rgba(180,160,130,0.3);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.creator-card p {
  color: var(--text);
  margin-bottom: 1.2rem;
  font-size: 1.04rem;
  line-height: 1.8;
}
.creator-card p:last-child { margin-bottom: 0; }

.spurst-box {
  border-left: 3px solid var(--gold);
  background: #ede5d4;
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.6rem;
  margin: 1.5rem 0;
}
.spurst-box p { margin-bottom: 0.75rem !important; }
.spurst-box ul { display: flex; flex-direction: column; gap: 0.55rem; }
.spurst-box li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}
.spurst-box li span { color: var(--gold); flex-shrink: 0; }

.magnetisch-card {
  margin: 0 auto;
  background: var(--cream-dark);
  border: 1px solid rgba(180,160,130,0.3);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 2rem;
  align-items: center;
}
.magnetisch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.magnetisch-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.magnetisch-text p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.magnetisch-text p:last-child { margin-bottom: 0; }
.magnetisch-text strong { color: var(--wine); }
.magnetisch-cta {
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.97rem;
  padding: 0.85rem 1.8rem;
}

/* EXPECTS */
.expects-sub {
  color: rgba(255,254,246,0.85);
  margin-top: -1.5rem;
}

.expects-card {
  background: rgba(255,254,246,0.04);
  border: 1px solid rgba(198,160,99,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.expects-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(198,160,99,0.5);
}

.expects-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.expects-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expects-card-body {
  padding: clamp(1.4rem, 3vw, 2rem);
  flex: 1;
}

.expects-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.expects-divider {
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1rem;
}
.expects-divider * { display: none; }

.expects-card p {
  color: rgba(255,254,246,0.78);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* THEMEN */
#themen .section-title {
  color: var(--wine);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
#themen .section-title::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100px;
}

.thema-card {
  background: var(--cream-dark);
  border: 1px solid rgba(198,160,99,0.25);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.thema-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(56,30,36,0.14);
  border-color: rgba(198,160,99,0.5);
}
.thema-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.thema-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.thema-card p {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
}
.thema-btn {
  width: 100%;
  margin-top: auto;
}

/* ABOUT */
.about-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,254,246,0.05);
  border: 1px solid rgba(198,160,99,0.2);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.about-img-wrap {
  width: 260px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(198,160,99,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.about-card p {
  color: rgba(255,254,246,0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

/* SHOP */
.shop-sub { color: var(--text); margin-top: -1.5rem; }

.shop-card {
  background: var(--cream-dark);
  border: 1px solid rgba(198,160,99,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(56,30,36,0.14);
  border-color: rgba(198,160,99,0.5);
}

.shop-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card-body {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.shop-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.shop-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(198,160,99,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.shop-card-header h3,
.shop-title-solo {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.shop-title-solo {
  text-align: center;
  font-size: 1rem;
}
.shop-title-solo span {
  font-size: 0.88rem;
  font-weight: 600;
}

.shop-divider {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.6rem auto;
}
.shop-divider * { display: none; }

.shop-card-body p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}
.shop-card-body p strong { color: var(--wine); }

.shop-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.shop-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.91rem;
  color: var(--text);
  line-height: 1.5;
}
.shop-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(198,160,99,0.15);
  border: 1px solid rgba(198,160,99,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.shop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.shop-price {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine);
}
.shop-price.gold { color: var(--gold); }

.shop-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.shop-price-old {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: line-through;
  opacity: 0.6;
}
.shop-price-label {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.shop-btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.65rem 1.3rem;
}

.shop-banner {
  margin-top: 3rem;
  background: var(--cream-dark);
  border: 1px solid rgba(198,160,99,0.25);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.shop-banner-heart {
  font-size: 1.8rem;
  color: var(--gold);
}
.shop-banner p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

/* REVIEWS */
.reviews-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.reviews-stars-display {
  display: block;
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  margin-bottom: 0.4rem;
}

.reviews-count {
  font-size: 0.88rem;
  color: rgba(255,254,246,0.5);
  margin-bottom: 0.4rem;
}
.reviews-count.is-hidden { display: none; }

.reviews-google-logo {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}
.reviews-google-logo span:nth-child(1) { color: #4285F4; }
.reviews-google-logo span:nth-child(2) { color: #EA4335; }
.reviews-google-logo span:nth-child(3) { color: #FBBC05; }
.reviews-google-logo span:nth-child(4) { color: #4285F4; }
.reviews-google-logo span:nth-child(5) { color: #34A853; }
.reviews-google-logo span:nth-child(6) { color: #EA4335; }

.reviews-slider { overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.review-card {
  flex: 0 0 calc(50% - 10px);
  background: rgba(255,254,246,0.05);
  border: 1px solid rgba(198,160,99,0.18);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.review-quote {
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}
.avatar-0 { background: #4285F4; }
.avatar-1 { background: #34A853; }
.avatar-2 { background: #EA4335; }
.avatar-3 { background: #FBBC05; }
.avatar-4 { background: #9c27b0; }
.avatar-5 { background: #0077bb; }

.review-meta { flex: 1; min-width: 0; }

.review-author {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--gold-light);
}

.review-date {
  font-size: 0.76rem;
  color: rgba(255,254,246,0.45);
}

.review-g {
  font-size: 1rem;
  font-weight: 800;
  color: #4285F4;
  margin-left: auto;
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.91rem;
  line-height: 1.65;
  color: rgba(255,254,246,0.8);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-text.expanded {
  display: block;
  overflow: visible;
}
.review-read-more {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0.3rem 0;
  margin-top: 0.4rem;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.review-read-more:hover { opacity: 1; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,254,246,0.06);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--wine); }

.slider-dots { display: flex; gap: 6px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(198,160,99,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot.is-active { background: var(--gold); transform: scale(1.35); }

.reviews-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,254,246,0.4);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviews-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer { background: var(--wine-dark); }

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 24px clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
}

.footer-brand img {
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.footer-brand-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,254,246,0.55);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198,160,99,0.3);
  color: rgba(255,254,246,0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(198,160,99,0.1);
}

.footer-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(198,160,99,0.2);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  color: rgba(255,254,246,0.6);
  font-size: 0.87rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-legal a {
  color: rgba(255,254,246,0.6);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.4rem 24px;
  border-top: 1px solid rgba(255,254,246,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,254,246,0.65);
}

.footer-bottom a {
  color: rgba(255,254,246,0.65);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,254,246,0.88); }

/* SCROLL TO TOP */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(198,160,99,0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 900;
}
.scroll-top-btn.is-visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { box-shadow: 0 8px 28px rgba(198,160,99,0.65); transform: translateY(-3px); }

/* COOKIE */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,19,24,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.cookie-overlay.is-visible .cookie-modal {
  transform: translateY(0);
}

.cookie-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(198,160,99,0.25);
  gap: 0;
}

.cookie-modal-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 14px;
}

.cookie-modal-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 14px;
}

.cookie-modal-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine);
  margin: 0;
}

.cookie-modal-body {
  padding: 20px 24px 16px;
  text-align: center;
}

.cookie-modal-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}

.cookie-modal-body .cookie-group {
  text-align: left;
}

.cookie-modal-dsgvo-link {
  font-size: 0.83rem;
  color: #7a5c2e;
  text-decoration: underline;
  display: block;
  margin-top: 4px;
  margin-bottom: 16px;
}

.cookie-group {
  border: 1px solid rgba(198,160,99,0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 14px;
}

.cookie-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--wine);
  cursor: pointer;
  background: var(--cream-dark);
  list-style: none;
  user-select: none;
  gap: 8px;
}

.cookie-group-title::-webkit-details-marker { display: none; }
.cookie-group-title::marker { display: none; content: ''; }

.cookie-group-arrow {
  transition: transform 0.22s;
  flex-shrink: 0;
  color: var(--gold-dark);
}

details[open] .cookie-group-arrow { transform: rotate(180deg); }

.cookie-item {
  border-top: 1px solid rgba(198,160,99,0.2);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cookie-item + .cookie-item { border-top: 2px solid rgba(198,160,99,0.25); }

.cookie-item-row {
  display: flex;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.81rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(198,160,99,0.1);
}

.cookie-item-row:last-child { border-bottom: none; }

.cookie-item-label {
  color: var(--gold-dark);
  font-weight: 600;
  width: 72px;
  min-width: 72px;
  flex-shrink: 0;
}

.cookie-item code {
  background: var(--cream-dark);
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 0.78rem;
  color: var(--wine);
  font-family: monospace;
}

.cookie-modal-actions {
  padding: 4px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.cookie-modal-btn:hover { transform: translateY(-1px); }

.cookie-modal-btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine);
  box-shadow: 0 4px 16px rgba(198,160,99,0.35);
}

.cookie-modal-btn-primary:hover { box-shadow: 0 6px 20px rgba(198,160,99,0.5); }

.cookie-modal-footer {
  padding: 14px 24px;
  border-top: 1px solid rgba(198,160,99,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-modal-footer a {
  font-size: 0.77rem;
  color: #7a5c2e;
  text-decoration: underline;
}

.cookie-modal-footer span { font-size: 0.77rem; color: #7a5c2e; }

.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.87rem;
  color: rgba(255,254,246,0.6);
  font-family: inherit;
  text-align: left;
  transition: color var(--transition);
}

.footer-cookie-btn:hover { color: var(--gold-light); }

@media (max-width: 480px) {
  .cookie-overlay {
    padding: 16px;
  }
  .cookie-modal {
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
  }
  .cookie-overlay.is-visible .cookie-modal {
    transform: translateY(0) scale(1);
  }
  .cookie-modal-header {
    padding: 20px 18px 14px;
  }
  .cookie-modal-logo {
    height: 40px;
  }
  .cookie-modal-body {
    padding: 14px 18px 10px;
  }
  .cookie-modal-actions {
    padding: 4px 18px 18px;
  }
  .cookie-modal-footer {
    padding: 12px 18px;
  }
}

/* REVEAL */
.reveal, .reveal-stagger {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible, .reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.55s ease forwards;
}
.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.36s; }

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

/* quiz banner (index.html) */
.quiz-banner {
  background: var(--wine);
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(198,160,99,0.2);
}

.quiz-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quiz-banner-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.quiz-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.quiz-banner p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
  #header.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(38,19,24,0.97);
  }
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 16px; }
  .section { padding: 2.5rem 0; }
  .section-title { margin-bottom: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .review-card { flex: 0 0 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 280px; margin: 0 auto; }
  .about-img-wrap::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { text-align: center; }
  .footer-socials { justify-content: center; }
  .creator-btns { flex-direction: column; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { white-space: normal; font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .hero-sub { font-size: 0.97rem; margin-bottom: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-scroll { display: none; }
  .magnetisch-card { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .magnetisch-icon { justify-content: center; }
  .magnetisch-cta { width: 100%; }
  .reviews-actions { flex-direction: column; align-items: center; }
  .reviews-actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .section { padding: 2rem 0; }
  .section-title { font-size: clamp(1.45rem, 6vw, 1.9rem); margin-bottom: 1.4rem; }
  .section-sub { margin-top: -0.6rem; margin-bottom: 1.8rem; font-size: 0.92rem; }
  .review-card { padding: 1.2rem; }
  .cookie-modal { padding: 1.2rem; }
  .btn { padding: 0.82rem 1.7rem; font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-scroll { display: none; }
}
