/* ============================================
   GrowCologne – growshop-koeln.de
   Mobile-First CSS | Moosgruen + Gold CI
   Evolved from legacy/style.css for PHP module system
   ============================================ */

/* --- Custom Properties --- */
:root {
  --moss: #3B6B3A;
  --moss-deep: #1E3F1D;
  --moss-hover: #2F5A2E;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --gold: #C8962D;
  --gold-hover: #A67B1F;
  --text: #1A1A1A;
  --text-light: #F7F5F0;
  --text-muted: #6B7B6E;
  --overlay-hero: rgba(30, 63, 29, 0.65);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
  --header-h: 64px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--moss);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--moss-hover);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 3rem 0;
}

/* --- Focus Styles (Accessibility) --- */
:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--moss);
}

.hero__overlay .btn:focus-visible,
.laden__overlay .btn:focus-visible {
  outline-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 150, 45, 0.4);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.btn--gold {
  background: var(--gold);
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid #d1d5db;
}

.btn--outline:hover {
  border-color: var(--moss);
  color: var(--moss);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(247, 245, 240, 0.6);
}

.btn--outline-light:hover {
  background: rgba(247, 245, 240, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo picture {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.desktop-nav {
  display: none;
}

.header-cta {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.header-cta span {
  display: none;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header.menu-open .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header.menu-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--cream);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav > a {
  padding: 0.75rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--cream);
}

.mobile-nav > a:hover {
  color: var(--moss);
}

.mobile-nav__group {
  border-bottom: 1px solid var(--cream);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.mobile-nav__label {
  display: block;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mobile-nav__group a {
  display: block;
  padding: 0.5rem 0 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.mobile-nav__group a:hover {
  color: var(--moss);
}

.mobile-nav__hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.mobile-nav__call {
  margin-top: 0.5rem;
  justify-content: center;
}

/* ============================================
   NAV DROPDOWN (Desktop)
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-chevron {
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: none;
}

.nav-dropdown__menu a:hover {
  background: var(--cream);
  color: var(--moss);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  background: var(--white);
  border-bottom: 1px solid var(--cream);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: '\203A';
  margin-right: 0.25rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--moss);
}

.breadcrumbs [aria-current] {
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  max-height: 1200px;
  overflow: hidden;
  padding: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-light);
  background: var(--overlay-hero);
}

.hero__logo-wrap {
  display: block;
  margin-bottom: 1.5rem;
}

.hero__logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subline {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}

.hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

/* Mobile: Anrufen is primary -> show first */
.hero__ctas .btn--outline-light {
  order: -1;
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}

.hero__ctas .btn--outline-light:hover {
  background: var(--gold-hover);
  color: var(--text);
  border-color: var(--gold-hover);
}

.hero__ctas .btn--gold {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(247, 245, 240, 0.6);
}

.hero__ctas .btn--gold:hover {
  background: rgba(247, 245, 240, 0.15);
  border-color: var(--white);
}

.hero__address {
  font-size: 0.9375rem;
  opacity: 0.8;
}

/* ============================================
   2. TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--moss);
  color: var(--text-light);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.trust-bar__item {
  font-size: 0.875rem;
  text-align: center;
  padding: 0.25rem 0;
  position: relative;
}

.trust-bar__item + .trust-bar__item::before {
  content: '\00b7';
  position: absolute;
  left: -0.875rem;
  color: rgba(247, 245, 240, 0.5);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.trust-bar__item strong {
  font-weight: 600;
}

/* ============================================
   2b. GOOGLE REVIEWS
   ============================================ */
.reviews {
  background: var(--white);
  padding: 2rem 0 1rem;
}

.reviews .container {
  max-width: 900px;
}

/* ============================================
   3. SORTIMENT
   ============================================ */
.sortiment {
  background: var(--cream);
  padding: 4rem 0;
}

.sortiment h2 {
  text-align: center;
  color: var(--moss-deep);
}

.sortiment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--text);
  text-decoration: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.card picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.25rem;
}

.card__body h3 {
  color: var(--moss);
  font-size: 1.125rem;
}

.card__body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   4. CANNABISGESETZ (CanG)
   ============================================ */
.cang {
  background: var(--white);
  padding: 4rem 0;
}

.cang h2 {
  color: var(--moss-deep);
  text-align: center;
}

.cang__content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.cang__content .btn {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ============================================
   5. DER LADEN (Fullscreen Image)
   ============================================ */
.laden {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laden__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.laden__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  background: var(--overlay-hero);
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.laden__overlay h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.laden__highlight {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 600px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.laden__overlay p:last-child {
  max-width: 600px;
  opacity: 0.9;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================
   6. FAQ (Details/Summary Accordion)
   ============================================ */
.faq {
  background: var(--cream);
  padding: 4rem 0;
}

.faq h2 {
  text-align: center;
  color: var(--moss-deep);
}

.faq__list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item[open] summary::after {
  transform: rotate(-135deg);
}

.faq__item summary:hover {
  color: var(--moss);
}

.faq__item summary:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: -3px;
  border-radius: var(--radius);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
}

.faq__answer a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: var(--moss-hover);
}

/* ============================================
   7. ANFAHRT & KONTAKT
   ============================================ */
.kontakt {
  background: var(--white);
  padding: 4rem 0;
}

.kontakt h2 {
  text-align: center;
  color: var(--moss-deep);
  margin-bottom: 2rem;
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.kontakt__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.kontakt__map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt__block h3 {
  color: var(--moss);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kontakt__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.kontakt__link:hover {
  color: var(--moss);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
}

.hours-table td:first-child {
  font-weight: 500;
  padding-right: 1.5rem;
}

.anfahrt-list li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.kontakt__cta {
  align-self: flex-start;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================
   8. FOOTER
   ============================================ */
.site-footer {
  background: var(--moss-deep);
  color: var(--text-light);
  padding: 3rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__brand img {
  height: auto;
  width: 180px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer__links h4 {
  color: var(--text-light);
  font-size: 0.9375rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--text-light);
  font-size: 0.9375rem;
  opacity: 0.85;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(247, 245, 240, 0.15);
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin: 0;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--moss);
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__inner p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__inner a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  min-height: 40px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--moss-hover);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--moss);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* --- Small phones (max 374px) --- */
@media (max-width: 374px) {
  h1 { font-size: 1.625rem; }
  h2 { font-size: 1.375rem; }

  .hero__subline {
    font-size: 0.9375rem;
  }

  .hero__hours {
    font-size: 0.8125rem;
    padding: 0.375rem 1rem;
  }

  .hero__logo {
    width: 180px;
  }

  .header-logo img {
    height: 28px;
  }

  .trust-bar__item {
    font-size: 0.8125rem;
  }

  .card__body {
    padding: 1rem;
  }

  .card__body h3 {
    font-size: 1rem;
  }

  .faq__item summary {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq__answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
  }

  .kontakt__block h3 {
    font-size: 0.9375rem;
  }

  .laden__highlight {
    font-size: 1.0625rem;
  }

  .laden__overlay p:last-child {
    font-size: 0.9375rem;
  }
}

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .sortiment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .kontakt__map iframe {
    min-height: 100%;
  }

  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__ctas {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  /* Desktop: Route planen is primary, Anrufen secondary */
  .hero__ctas .btn--outline-light {
    order: 0;
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(247, 245, 240, 0.6);
  }

  .hero__ctas .btn--outline-light:hover {
    background: rgba(247, 245, 240, 0.15);
    color: var(--white);
    border-color: var(--white);
  }

  .hero__ctas .btn--gold {
    background: var(--gold);
    color: var(--text);
    border: 2px solid var(--gold);
  }

  .hero__ctas .btn--gold:hover {
    background: var(--gold-hover);
    color: var(--text);
    border-color: var(--gold-hover);
  }

  .hero__logo {
    width: 280px;
  }

  .trust-bar__item {
    font-size: 0.9375rem;
  }

  .laden__overlay h2 {
    font-size: 2.25rem;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  section {
    padding: 5rem 0;
  }

  .header-inner {
    padding: 0 2rem;
  }

  .header-logo img {
    height: 42px;
  }

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

  .desktop-nav > a,
  .nav-dropdown__trigger {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
  }

  .desktop-nav > a:hover,
  .nav-dropdown__trigger:hover,
  .desktop-nav > a.is-active,
  .nav-dropdown__trigger.is-active {
    color: var(--moss);
    border-bottom-color: var(--moss);
  }

  .header-cta {
    padding: 0.5rem 1.25rem;
  }

  .header-cta span {
    display: inline;
  }

  .menu-toggle {
    display: none;
  }

  .sortiment__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__logo {
    width: 340px;
  }

  .hero__subline {
    font-size: 1.1875rem;
  }

  .kontakt__grid {
    gap: 3rem;
  }

  .kontakt__map iframe {
    min-height: 450px;
  }
}

/* --- Large Desktop (1440px+) --- */
@media (min-width: 1440px) {
  h1 { font-size: 3.5rem; }

  .container {
    padding: 0 2rem;
  }

  .hero__subline {
    font-size: 1.25rem;
    max-width: 700px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .trust-bar,
  .kontakt__map,
  .hero__ctas,
  .cang .btn,
  .kontakt__cta,
  .cookie-banner,
  .back-to-top {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__overlay {
    background: none;
    color: var(--text);
    padding: 2rem 0;
  }

  .hero h1 {
    color: var(--text);
    text-shadow: none;
  }

  body {
    font-size: 12pt;
  }
}
