/* =========================================================
/* =========================================================
/* =========================================================
/* =========================================================
/* =========================================================
   SELECTED TOYS — Main Stylesheet
   Luxury Dark HiFi Aesthetik
   Fonts: Cormorant Garamond (Display) + Montserrat (UI)
   ========================================================= */

/* ---------------------------------------------------------
   CUSTOM PROPERTIES
   --------------------------------------------------------- */
:root {
  /* Colors */
  --c-bg:          #0a0a0c;
  --c-bg-2:        #111116;
  --c-bg-3:        #18181f;
  --c-bg-card:     #13131a;
  --c-border:      rgba(255,255,255,0.08);
  --c-border-gold: rgba(201,169,110,0.3);

  --c-gold:        #c9a96e;
  --c-gold-light:  #dfc090;
  --c-gold-dark:   #9a7840;
  --c-silver:      #8a8a9a;
  --c-text:        #e8e6e0;
  --c-text-muted:  #8a8896;
  --c-text-dim:    #5a5868;
  --c-white:       #f5f3ee;

  /* Accent (overridden per brand) */
  --brand-accent:  #c9a96e;

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 120px;
  --container:   1280px;
  --gutter:      clamp(20px, 5vw, 60px);

  /* Radius */
  --r-sm: 2px;
  --r-md: 4px;

  /* Transitions */
  --t-fast:   0.2s ease;
  --t-mid:    0.4s ease;
  --t-slow:   0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------
   RESET & BASE
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--c-white);
}

/* ---------------------------------------------------------
   LAYOUT UTILITIES
   --------------------------------------------------------- */
.st-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.st-section {
  padding-block: var(--section-gap);
}

.st-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.st-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 12px;
}

.st-label {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}

.st-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.st-btn:hover::before { opacity: 0.06; }

.st-btn--gold {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}
.st-btn--gold:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
}

.st-btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.35);
}
.st-btn--ghost:hover {
  border-color: var(--c-white);
}

.st-btn--sm { padding: 10px 24px; }

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.st-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-mid), box-shadow var(--t-mid), padding var(--t-mid);
  padding: 28px 0;
}

.st-header.scrolled {
  background: rgba(10,10,12,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
  padding: 16px 0;
}

.st-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.st-header__logo { display: block; flex-shrink: 0; }
.st-header__logo img { height: 36px; width: auto; }

.st-header__logo-text {
  font-family: var(--f-ui);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.st-header__logo-selected { color: var(--c-gold); font-weight: 300; }
.st-header__logo-toys     { color: var(--c-white); font-weight: 600; }

/* Nav */
.st-nav { margin-left: auto; }
.st-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.st-nav__list li { position: relative; }

.st-nav__list a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  padding-bottom: 2px;
}

.st-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t-mid);
}

.st-nav__list a:hover,
.st-nav__list .current-menu-item > a {
  color: var(--c-gold);
}
.st-nav__list a:hover::after { width: 100%; }

/* Submenu */
.st-nav__list .has-submenu {
  position: relative;
}

/* Unsichtbare Brücke: füllt die Lücke zwischen Link und Submenu */
.st-nav__list .has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
}

.st-nav__list .submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-gold);
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.st-nav__list .has-submenu:hover .submenu,
.st-nav__list .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.st-nav__list .submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.st-nav__list .submenu a:hover {
  color: var(--c-gold);
  background: rgba(201, 169, 110, 0.05);
}

.st-nav__list .submenu a::after {
  display: none;
}

/* Burger */
.st-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.st-header__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-white);
  transition: all var(--t-mid);
}

/* Mobile Menu */
.st-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-slow);
}
.st-mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.st-mobile-menu__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.st-mobile-menu__list a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 300;
  color: var(--c-white);
  transition: color var(--t-fast);
}
.st-mobile-menu__list a:hover { color: var(--c-gold); }

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.st-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.st-hero__bg-slider {
  position: absolute;
  inset: 0;
}

.st-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s linear;
}
.st-hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.st-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,12,0.92) 0%,
    rgba(10,10,12,0.65) 50%,
    rgba(10,10,12,0.30) 100%
  );
  z-index: 1;
}

.st-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding: var(--gutter);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.st-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: st-fadein 0.8s ease 0.2s forwards;
}

.st-hero__title {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.st-hero__title-line {
  opacity: 0;
  transform: translateY(30px);
  animation: st-fadein 0.9s ease forwards;
}
.st-hero__title-line:nth-child(1) { animation-delay: 0.4s; }
.st-hero__title-line:nth-child(2) { animation-delay: 0.6s; }
.st-hero__title-line--gold { color: var(--c-gold); font-style: italic; }

.st-hero__subtitle {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: st-fadein 0.8s ease 0.8s forwards;
}

.st-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: st-fadein 0.8s ease 1s forwards;
}

.st-hero__slider-nav {
  position: absolute;
  bottom: 48px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-hero__dot {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--t-mid);
  position: relative;
  padding: 0;
}
.st-hero__dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--c-gold);
  transition: height var(--t-slow);
}
.st-hero__dot.active::before { height: 100%; }

.st-hero__scroll-hint {
  position: absolute;
  bottom: 48px;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: st-fadein 0.8s ease 1.5s forwards;
}
.st-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  animation: st-pulse-width 2s ease-in-out infinite;
}
.st-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ---------------------------------------------------------
   INTRO SECTION
   --------------------------------------------------------- */
.st-intro {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.st-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.st-intro__text .st-label { margin-bottom: 16px; }
.st-intro__text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.st-intro__text p { color: var(--c-text-muted); margin-bottom: 16px; max-width: 520px; }

.st-intro__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--c-border-gold);
}

.st-stat {
  padding: 36px 40px;
  border-bottom: 1px solid var(--c-border-gold);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.st-stat:last-child { border-bottom: none; }

.st-stat__number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}
.st-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ---------------------------------------------------------
   BRANDS GRID
   --------------------------------------------------------- */
.st-brands-section { background: var(--c-bg); }

.st-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
}

.st-brand-card {
  position: relative;
  background: var(--c-bg-card);
  overflow: hidden;
  transition: background var(--t-mid);
}

.st-brand-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.st-brand-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.st-brand-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75) saturate(0.8);
}

.st-brand-card:hover .st-brand-card__img img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(0.9);
}

.st-brand-card__body {
  padding: 36px 40px 40px;
  position: relative;
  z-index: 1;
}

.st-brand-card__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  opacity: 0.9;
}

.st-brand-card__name {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.st-brand-card__country {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent, var(--c-gold));
  margin-bottom: 16px;
}

.st-brand-card__tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  max-width: 380px;
  line-height: 1.6;
}

.st-brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-accent, var(--c-gold));
  transition: gap var(--t-fast);
  position: relative;
  z-index: 3;
}
.st-brand-card__cta::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-accent, var(--c-gold));
  transition: width var(--t-mid);
}
.st-brand-card:hover .st-brand-card__cta { gap: 12px; }
.st-brand-card:hover .st-brand-card__cta::after { width: 100%; }

/* ---------------------------------------------------------
   DEALER CTA SECTION
   --------------------------------------------------------- */
.st-dealer-cta {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
}

.st-dealer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.st-dealer-cta__text .st-label { margin-bottom: 16px; }
.st-dealer-cta__text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.st-dealer-cta__text p { color: var(--c-text-muted); margin-bottom: 40px; max-width: 480px; }

.st-dealer-cta__decoration {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-dealer-cta__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--c-border-gold);
  animation: st-spin 20s linear infinite;
}

.st-dealer-cta__lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-dealer-cta__line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-gold-dark), transparent);
  height: 300px;
  transform: rotate(calc(var(--i) * 36deg));
  opacity: 0.3;
}

/* ---------------------------------------------------------
   BRAND HERO
   --------------------------------------------------------- */
.st-brand-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.st-brand-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.st-brand-hero:hover .st-brand-hero__bg { transform: scale(1); }

.st-brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,12,1) 0%,
    rgba(10,10,12,0.6) 50%,
    rgba(10,10,12,0.2) 100%
  );
}

.st-brand-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.st-brand-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.st-brand-hero__country,
.st-brand-hero__founded {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.st-brand-hero__sep { color: var(--c-text-dim); }

.st-brand-hero__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 20px;
}

.st-brand-hero__title {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 20px;
}

.st-brand-hero__tagline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold);
  margin-bottom: 16px;
}

.st-brand-hero__subtitle {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

/* ---------------------------------------------------------
   BRAND CONTENT
   --------------------------------------------------------- */
.st-brand-content {
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
}

.st-brand-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.st-brand-content__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text-muted);
}
.st-brand-content__text p { margin-bottom: 20px; }
.st-brand-content__text h2,
.st-brand-content__text h3 { color: var(--c-white); margin-bottom: 16px; margin-top: 32px; }

.st-brand-content__sidebar {
  position: sticky;
  top: 100px;
  border: 1px solid var(--c-border-gold);
}

.st-brand-sidebar-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--c-border);
}
.st-brand-sidebar-item:last-child { border-bottom: none; }
.st-brand-sidebar-item .st-label { display: block; margin-bottom: 8px; }
.st-brand-sidebar-item p { color: var(--c-text-muted); font-size: 14px; }
.st-brand-sidebar-item a { color: var(--c-gold); }
.st-brand-sidebar-item a:hover { text-decoration: underline; }

/* ---------------------------------------------------------
   OTHER BRANDS
   --------------------------------------------------------- */
.st-other-brands { background: var(--c-bg); }

.st-other-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
}

.st-other-brand {
  background: var(--c-bg-card);
  overflow: hidden;
  display: block;
  transition: background var(--t-mid);
}

.st-other-brand:hover { background: var(--c-bg-3); }

.st-other-brand__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.st-other-brand__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: filter var(--t-mid), transform 0.6s ease;
}
.st-other-brand:hover .st-other-brand__img img {
  filter: brightness(0.8) saturate(0.9);
  transform: scale(1.04);
}

.st-other-brand__info {
  padding: 24px 28px;
}
.st-other-brand__info img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 8px;
}
.st-other-brand__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-white);
  display: block;
  margin-bottom: 4px;
}
.st-other-brand__country {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ---------------------------------------------------------
   PAGE HERO (generic)
   --------------------------------------------------------- */
.st-page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.st-page-hero--slim { padding: 140px 0 60px; }

.st-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
}

.st-page-hero__content { position: relative; z-index: 2; }
.st-page-hero__content .st-label { margin-bottom: 16px; }
.st-page-hero__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 20px;
}
.st-page-hero__content p { color: var(--c-text-muted); font-size: 17px; }

/* ---------------------------------------------------------
   DEALERS SECTION
   --------------------------------------------------------- */
.st-dealers-section { background: var(--c-bg); }

.st-dealers-country {
  margin-bottom: 64px;
}
.st-dealers-country:last-child { margin-bottom: 0; }

.st-dealers-country__name {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}
.st-dealers-country__flag { font-size: 20px; }

.st-dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-border);
}

.st-dealer-card {
  background: var(--c-bg-card);
  padding: 28px 32px;
  border-left: 2px solid transparent;
  transition: border-color var(--t-mid), background var(--t-fast);
}

.st-dealer-card:hover {
  border-left-color: var(--brand-accent, var(--c-gold));
  background: var(--c-bg-3);
}

.st-dealer-card__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 12px;
}

.st-dealer-card__address {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.st-dealer-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st-dealer-card__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  word-break: break-all;
}
.st-dealer-card__contact:hover { color: var(--c-gold); }
.st-dealer-card__contact svg { flex-shrink: 0; opacity: 0.6; }

/* ---------------------------------------------------------
   DEALER SEARCH PAGE
   --------------------------------------------------------- */
.st-dealer-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--c-border);
  margin-bottom: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.st-dealer-tabs::-webkit-scrollbar { display: none; }

.st-dealer-tab {
  flex-shrink: 0;
  padding: 16px 28px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-dealer-tab:last-child { border-right: none; }
.st-dealer-tab:hover { color: var(--c-white); background: var(--c-bg-3); }
.st-dealer-tab.active {
  background: var(--c-bg-3);
  color: var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
}
.st-dealer-tab img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.st-dealer-tab.active img,
.st-dealer-tab:hover img { opacity: 1; }

.st-dealer-panel { display: none; }
.st-dealer-panel.active { display: block; }
.st-dealer-panel__empty {
  color: var(--c-text-muted);
  font-style: italic;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--c-border);
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.st-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-top: 80px;
}

.st-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.st-footer__logo {
  display: block;
  font-family: var(--f-ui);
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.st-footer__claim {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-text-muted);
}

.st-footer__nav h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.st-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.st-footer__nav a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}
.st-footer__nav a:hover { color: var(--c-white); }

.st-footer__contact h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.st-footer__contact p { font-size: 14px; color: var(--c-text-muted); line-height: 1.8; margin-bottom: 12px; }
.st-footer__contact a { color: var(--c-gold); }

.st-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: 24px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.st-footer__bottom p {
  font-size: 12px;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
}

.st-footer__legal { list-style: none; display: flex; gap: 24px; }
.st-footer__legal a { font-size: 12px; color: var(--c-text-dim); transition: color var(--t-fast); }
.st-footer__legal a:hover { color: var(--c-text-muted); }

/* ---------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------- */
@keyframes st-fadein {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes st-spin {
  to { transform: rotate(360deg); }
}

@keyframes st-pulse-width {
  0%, 100% { width: 40px; opacity: 0.8; }
  50%       { width: 60px; opacity: 1; }
}

/* Scroll-reveal */
.st-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.st-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   SCROLLBAR
   --------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold-dark); }

/* ---------------------------------------------------------

/* ---------------------------------------------------------
   ÜBER UNS
   --------------------------------------------------------- */
.st-about {
  max-width: 820px;
  margin-inline: auto;
}
.st-about__lead {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-white);
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border-gold);
}
.st-about__section {
  margin-bottom: 64px;
}
.st-about__section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  color: var(--c-white);
}
.st-about__section p {
  color: var(--c-text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 680px;
}
.st-about__team {
  margin-bottom: 64px;
  padding: 48px;
  border: 1px solid var(--c-border-gold);
  background: var(--c-bg-card);
}
.st-about__team h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 40px;
  color: var(--c-white);
}
.st-about__person {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border);
}
.st-about__person:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.st-about__person h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}
.st-about__person .st-label {
  display: block;
  margin-bottom: 20px;
}
.st-about__person p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 660px;
}
.st-about__person p em {
  color: var(--c-gold);
  font-style: normal;
}
.st-about__contact {
  padding: 40px 48px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
}
.st-about__contact h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.st-about__contact p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.st-about__contact a {
  color: var(--c-gold);
  transition: opacity 0.2s ease;
}
.st-about__contact a:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------
   LEGAL (Impressum, Datenschutz)
   --------------------------------------------------------- */
.st-legal {
  max-width: 900px;
  margin-inline: auto;
}
.st-legal__lead {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-gold);
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border-gold);
  max-width: 700px;
}
.st-legal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--c-border);
  margin-bottom: 64px;
}
.st-legal__block {
  background: var(--c-bg-card);
  padding: 36px 40px;
}
.st-legal__block .st-label {
  display: block;
  margin-bottom: 12px;
}
.st-legal__block h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 16px;
}
.st-legal__block p,
.st-legal__address {
  font-style: normal;
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.9;
}
.st-legal__block a {
  color: var(--c-gold);
}
.st-legal__sections {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-border);
}
.st-legal__section {
  padding: 36px 40px;
  border-bottom: 1px solid var(--c-border);
}
.st-legal__section:last-child {
  border-bottom: none;
}
.st-legal__section .st-label {
  display: block;
  margin-bottom: 10px;
}
.st-legal__section h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 16px;
}
.st-legal__section p {
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 12px;
  max-width: 680px;
}
.st-legal__section p:last-child {
  margin-bottom: 0;
}
.st-legal__section a {
  color: var(--c-gold);
  transition: opacity 0.2s ease;
}
.st-legal__section a:hover {
  opacity: 0.75;
}
.st-legal__card {
  display: inline-block;
  padding: 24px 32px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-gold);
  border-left: 2px solid var(--c-gold);
  color: var(--c-text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 8px;
}
.st-legal__card strong {
  display: block;
  color: var(--c-white);
  margin-bottom: 4px;
  font-weight: 500;
}
.st-legal__card a {
  color: var(--c-gold);
}
@media (max-width: 768px) {
  .st-legal__block,
  .st-legal__section {
    padding: 28px 24px;
  }
  .st-contact__block {
    padding: 28px 24px;
  }
}


/* ---------------------------------------------------------
   KONTAKT
   --------------------------------------------------------- */
.st-contact {
  max-width: 960px;
  margin-inline: auto;
}
.st-contact__lead {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-white);
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border-gold);
  max-width: 680px;
}
.st-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--c-border);
}
.st-contact__block {
  background: var(--c-bg-card);
  padding: 40px;
}
.st-contact__block .st-label {
  display: block;
  margin-bottom: 12px;
}
.st-contact__block h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}
.st-contact__block p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.st-contact__address {
  font-style: normal;
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 2;
}


   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  .st-intro__grid,
  .st-dealer-cta__inner { grid-template-columns: 1fr; gap: 48px; }

  .st-intro__stats { grid-template-columns: repeat(3, 1fr); }
  .st-stat { border-bottom: none; border-right: 1px solid var(--c-border-gold); }
  .st-stat:last-child { border-right: none; }

  .st-brand-content__grid { grid-template-columns: 1fr; }
  .st-brand-content__sidebar { position: static; }

  .st-footer__inner { grid-template-columns: 1fr 1fr; }

  .st-other-brands__grid { grid-template-columns: repeat(2, 1fr); }

  .st-dealer-cta__decoration { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; }

  .st-nav { display: none; }
  .st-header__burger { display: flex; }

  .st-brands-grid { grid-template-columns: 1fr; }
  .st-other-brands__grid { grid-template-columns: 1fr; }

  .st-hero__slider-nav { flex-direction: row; bottom: 28px; right: 50%; transform: translateX(50%); }

  .st-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .st-footer__bottom { flex-direction: column; text-align: center; }

  .st-brand-hero { min-height: 60vh; }
  .st-page-hero { padding: 120px 0 50px; }

  .st-dealers-grid { grid-template-columns: 1fr; }

  .st-dealer-tab { padding: 14px 18px; font-size: 10px; }
}

@media (max-width: 480px) {
  .st-hero__cta { flex-direction: column; }
  .st-btn { justify-content: center; }
}





/* Brand Gallery */
.st-brand-gallery {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.st-brand-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.st-brand-gallery__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
@media (max-width: 768px) {
  .st-brand-gallery__grid { grid-template-columns: 1fr; }
}
