/* =========================================================
   CAPTAIN'S BÄCKEREI — Globale Styles
   Dark Premium Design · B2B Gastronomie
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --bg-primary:      #0c0a07;
  --bg-secondary:    #120e09;
  --bg-surface:      #1a1510;
  --bg-card:         #211810;
  --bg-card-hover:   #2a2016;

  --gold:            #c8913a;
  --gold-light:      #dfaa50;
  --gold-dark:       #9a6e28;
  --gold-glow:       rgba(200, 145, 58, 0.12);

  --cream:           #f0e6d3;
  --cream-muted:     #b8a798;
  --cream-faint:     #7a6a5a;

  --border:          #2b1f12;
  --border-light:    #3e2d1a;
  --border-mid:      #4f3c22;

  --font-heading:    'Fraunces', Georgia, serif;
  --font-body:       'Space Grotesk', system-ui, sans-serif;

  --radius-xs:       4px;
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-xl:       32px;

  --shadow-sm:       0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:       0 6px 28px rgba(0,0,0,0.5);
  --shadow-lg:       0 16px 56px rgba(0,0,0,0.6);
  --shadow-gold:     0 0 40px rgba(200, 145, 58, 0.15);

  --ease-out:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:      0.25s var(--ease-out);

  --header-h:        72px;
  --container:       1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 18px;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: #100d08;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 145, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(200, 145, 58, 0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-muted);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--cream); }

/* ---- Gold Divider ---- */
.gold-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.gold-line::before,
.gold-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.gold-line.short::before { display: none; }
.gold-line-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(12, 10, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 7, 0.96);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom-color: var(--border-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
  transition: border-color var(--transition);
}
.nav-brand:hover .nav-logo-img { border-color: var(--gold); }
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.nav-brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream-muted);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cream); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cream); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(12, 10, 7, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 28px 28px;
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s var(--ease-out);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  padding-left: 6px;
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav-cta { margin-top: 20px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ================================================================
   PAGE HERO (Unterseiten)
   ================================================================ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Background photo */
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay so text stays readable */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200,145,58,0.12) 0%, transparent 60%),
    linear-gradient(to bottom,
      rgba(12,10,7,0.72) 0%,
      rgba(12,10,7,0.58) 50%,
      rgba(12,10,7,0.88) 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-title { margin-bottom: 12px; }
.page-hero .section-sub { margin: 0 auto; }

/* ================================================================
   SECTIONS
   ================================================================ */
section { padding: 96px 0; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ================================================================
   HERO (Startseite)
   ================================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 28px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Background photo with Ken-Burns zoom */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -4%;               /* slight oversize so zoom never shows edges */
  background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  animation: hero-ken-burns 22s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Dark overlay + gold glow */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, rgba(200,145,58,0.18) 0%, transparent 60%),
    linear-gradient(to bottom,
      rgba(12,10,7,0.72) 0%,
      rgba(12,10,7,0.55) 45%,
      rgba(12,10,7,0.82) 100%);
  pointer-events: none;
}

/* ---- Floating geometric shapes ---- */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  width: var(--w);
  height: var(--h);
  border-radius: 9999px;
  background: linear-gradient(to right, var(--clr), transparent);
  border: 1.5px solid rgba(200,145,58,0.18);
  box-shadow: 0 8px 32px rgba(200,145,58,0.08);
  backdrop-filter: blur(2px);
  transform: rotate(var(--r));
  animation:
    shape-enter 2.4s var(--delay, 0s) cubic-bezier(0.23,0.86,0.39,0.96) both,
    shape-float 12s calc(var(--delay, 0s) + 2.4s) ease-in-out infinite;
}

.hero-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(200,145,58,0.15), transparent 70%);
}

@keyframes shape-enter {
  from {
    opacity: 0;
    translate: 0 -80px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes shape-float {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shape { animation: none; opacity: 0.5; }
}

/* Hero content sits above shapes */
.hero-content { z-index: 2; }
.hero-scroll   { z-index: 2; }

@keyframes hero-ken-burns {
  from { transform: scale(1)    translateX(0)     translateY(0); }
  to   { transform: scale(1.08) translateX(-1.5%) translateY(-1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before { animation: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Hero Logo */
.hero-logo-wrapper {
  margin: 0 auto 36px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  box-shadow:
    0 0 0 1px var(--border-light),
    0 0 60px rgba(200, 145, 58, 0.2),
    0 16px 48px rgba(0,0,0,0.5);
  animation: hero-logo-enter 1s var(--ease-out) both;
}
.hero-logo-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes hero-logo-enter {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.hero .eyebrow {
  animation: fade-up 0.7s 0.2s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 22px;
  animation: fade-up 0.7s 0.35s var(--ease-out) both;
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  display: block;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite, fade-up 0.7s 0.35s var(--ease-out) both;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fade-up 0.7s 0.5s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.7s 0.65s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-faint);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-up 0.7s 1s var(--ease-out) both;
  z-index: 1;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--border-mid);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-bounce 1.8s ease infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200, 145, 58, 0.04); }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}

/* ================================================================
   FEATURE CARDS
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.feature-card:hover {
  border-color: var(--border-mid);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(200, 145, 58, 0.1);
  border: 1px solid rgba(200, 145, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: rgba(200, 145, 58, 0.18);
  box-shadow: 0 0 20px rgba(200, 145, 58, 0.15);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.feature-text {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

/* ================================================================
   PRODUCT SLIDER (Startseite)
   ================================================================ */
.slider-section { background: var(--bg-secondary); border-top: 1px solid var(--border); }

.slider-outer { position: relative; overflow: hidden; }

.slider-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.slider-track .slider-item {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 0;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #16110a 0%, #201812 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  color: rgba(200, 145, 58, 0.25);
  position: relative;
  overflow: hidden;
}

/* Gewichts-Badge (wie auf dem Kaufland-Plakat) */
.product-weight-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(12, 10, 7, 0.72);
  border: 1px solid rgba(200, 145, 58, 0.35);
  border-radius: 999px;
  padding: 4px 11px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(200,145,58,0.06) 0%, transparent 70%);
}
.product-img svg { width: 52px; height: 52px; position: relative; }
.product-img-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 145, 58, 0.3);
  position: relative;
}

/* Real photo inside product card */
.product-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(22px) brightness(0.55) saturate(1.1);
  transform: scale(1.2);
  z-index: 0;
}
.product-img-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-img-fg {
  transform: scale(1.05);
}
/* Gold overlay on hover */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,10,7,0.55) 0%,
    rgba(12,10,7,0.10) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
  transition: background 0.4s var(--ease-out);
}
.product-card:hover .product-img::after {
  background: linear-gradient(
    to top,
    rgba(12,10,7,0.82) 0%,
    rgba(12,10,7,0.22) 55%,
    transparent 100%
  );
}

/* Reveal-on-Hover: klickbares Foto + Detail-Hinweis (21st.dev-Muster, adaptiert) */
.product-img.is-clickable { cursor: pointer; }
.product-img-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 12px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #100d08;
  background: var(--gold);
  border-radius: 999px;
  padding: 8px 15px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.product-img-hint svg { width: 14px; height: 14px; }
.product-card:hover .product-img-hint,
.product-img.is-clickable:focus-visible .product-img-hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Sichtbare Fokus-Ringe für Tastatur-Navigation (Pro-Skill-Checkliste) */
a:focus-visible,
button:focus-visible,
.product-img.is-clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.product-body {
  padding: 20px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-artnr {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}
.product-weight {
  font-size: 0.82rem;
  color: var(--cream-faint);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.product-action { margin-top: auto; }
.product-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition), opacity var(--transition);
}
.product-info-btn:hover { gap: 11px; opacity: 0.85; }
.product-info-btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.product-info-btn:hover svg { transform: translateX(3px); }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: transparent;
  color: var(--cream-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 145, 58, 0.08);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ================================================================
   ABOUT TEASER (Startseite)
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-logo-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-logo-frame {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--border-light), var(--border-mid), var(--border-light));
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
}
.about-logo-frame::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.about-logo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-text .section-title { margin-bottom: 14px; }
.about-text p { color: var(--cream-muted); margin-bottom: 20px; line-height: 1.75; }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 34px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--cream-muted);
}
.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(200,145,58,0.08) 0%, transparent 70%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section .section-title { margin-bottom: 10px; }
.cta-section .section-sub { margin: 0 auto 36px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.cta-contact-item:hover { color: var(--gold); }
.cta-contact-item svg { color: var(--gold); flex-shrink: 0; }

/* ================================================================
   SORTIMENT GRID
   ================================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Nummerierter Sektions-Header im Plakat-Stil ("01 · Sortiment") */
.section-num-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.section-num-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  flex-shrink: 0;
}
.section-num-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-mid), transparent);
}

/* ================================================================
   PRODUCT OVERLAY
   ================================================================ */
.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.product-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.overlay-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s var(--ease-spring);
  box-shadow: var(--shadow-lg);
}
.product-overlay.active .overlay-card {
  transform: scale(1) translateY(0);
}
.overlay-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1208, #221a10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(200, 145, 58, 0.25);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.overlay-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(200,145,58,0.07) 0%, transparent 70%);
}
.overlay-img svg { width: 56px; height: 56px; position: relative; }
.overlay-img-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 145, 58, 0.3);
  position: relative;
}
/* Echtes Produktfoto im Overlay */
.overlay-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.overlay-weight-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(12, 10, 7, 0.72);
  border: 1px solid rgba(200, 145, 58, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.overlay-body { padding: 28px 30px 30px; }
.overlay-artnr {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 8px;
}
.overlay-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.overlay-desc {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.overlay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.overlay-anfrage-note {
  font-size: 0.82rem;
  color: var(--cream-faint);
  font-style: italic;
}
.overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-light);
  color: var(--cream-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}
.overlay-close:hover {
  background: var(--border-light);
  color: var(--cream);
}
.overlay-close svg { width: 16px; height: 16px; }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.about-story-text p {
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.about-story-text p:last-child { margin-bottom: 0; }

.about-tagline {
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(200, 145, 58, 0.06);
  border: 1px solid rgba(200, 145, 58, 0.18);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all 0.3s var(--ease-out);
}
.value-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(200, 145, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.value-text { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; }

.location-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.location-map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #1a1208, #221a10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200, 145, 58, 0.2);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 10px;
  flex-direction: column;
}
.location-map-placeholder svg { width: 36px; height: 36px; }
.location-info { padding: 24px; }
.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.location-address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cream-muted);
}
.location-address-item svg { color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.location-address-item a:hover { color: var(--gold); }

/* ================================================================
   KONTAKT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}
.form-label .req { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--cream-faint); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200, 145, 58, 0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b8a798' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-select option { background: var(--bg-card); color: var(--cream); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--cream-faint);
  line-height: 1.5;
}
.form-privacy a { color: var(--gold-dark); text-decoration: underline; }

.submit-btn {
  min-width: 180px;
  justify-content: center;
  gap: 8px;
}
.submit-btn.loading .btn-text::after { content: '...'; }

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-message.show { display: flex; }
.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}
.form-message svg { flex-shrink: 0; width: 18px; height: 18px; }

/* Contact info sidebar */
.contact-info-box { display: flex; flex-direction: column; gap: 0; }
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.contact-info-sub {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}
.contact-item:hover {
  border-color: var(--border-mid);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(200, 145, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.92rem;
  color: var(--cream);
  font-weight: 500;
}

.contact-hours-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}
.contact-hours-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-hours-list { display: flex; flex-direction: column; gap: 8px; }
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--cream-muted);
}
.contact-hours-row span:first-child { font-weight: 500; color: var(--cream); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #070604;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer-desc {
  font-size: 0.87rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--cream-muted);
  line-height: 1.4;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--cream-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--cream-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--cream-faint); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-dark); }

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.25s var(--ease-spring);
  animation: wa-pulse 2.8s ease infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.from-scale { transform: scale(0.94); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-grid > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.stagger-grid.visible > *:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(2) { transition-delay: 0.11s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(3) { transition-delay: 0.18s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(6) { transition-delay: 0.39s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(7) { transition-delay: 0.46s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(8) { transition-delay: 0.53s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(9) { transition-delay: 0.60s; opacity: 1; transform: none; }
.stagger-grid.visible > *:nth-child(10) { transition-delay: 0.67s; opacity: 1; transform: none; }

/* ================================================================
   SHARED KEYFRAMES
   ================================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-logo-side { order: -1; }
  .about-logo-frame { width: 200px; height: 200px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slider-track .slider-item { flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-logo-wrapper { width: 140px; height: 140px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-bottom: none; border-right: none; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .submit-btn { width: 100%; justify-content: center; }
  .contact-form-box { padding: 28px 22px; }
  .slider-track .slider-item { flex: 0 0 100%; }
  .about-logo-frame { width: 160px; height: 160px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .stat-num { font-size: 1.6rem; }
}

@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .stagger-grid > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
