/* ══════════════════════════════════════════
   HOLZKLUG – New Style
   Mobile First · Premium Brand
══════════════════════════════════════════ */

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

/* ── CUSTOM PROPERTIES ── */
:root {
  /* Brand colors */
  --wood:    #c8976a;
  --bark:    #7a4e2d;
  --mo:      #b5735e;
  --tj:      #f5c842;
  --blue:    #2e3d6b;
  --leaf:    #5a7a5a;

  /* Pantone palette */
  --q:  #8aab9a;
  --ch: #c9b84c;
  --fd: #6b6fa8;
  --cs: #aba4b2;

  /* Neutrals */
  --bg:     #faf6f0;
  --warm:   #f2e8d8;
  --paper:  #ede3d3;
  --sand:   #d4c4a8;
  --ink:    #2c1f14;
  --muted:  #6b5540;
  --white:  #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;

  /* Layout */
  --max-w:  1160px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(.25, .46, .45, .94);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* header-actions: Mobile nur Instagram zeigen */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}
.btn-sei-dabei {
  display: none;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  background: var(--blue);
  color: #fff;
  transition: background .2s;
  white-space: nowrap;
}
.btn-sei-dabei:hover {
  background: var(--bark);
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mo);
  margin-bottom: var(--sp-sm);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--mo);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .2s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--bark);
  border-color: var(--bark);
}
.btn-ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--sand);
}
.btn-ghost:hover {
  border-color: var(--bark);
  background: var(--warm);
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--sand);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Mobile: Instagram left, Menu right, Logo absolutely centered */
.logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
  z-index: 1;
}
.logo-img { height: 56px; width: auto; }

.main-nav {
  display: none;
  gap: var(--sp-lg);
  list-style: none;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--muted);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.main-nav a:hover {
  color: var(--bark);
  border-bottom-color: var(--wood);
}

.nav-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  transition: all .2s;
  flex-shrink: 0;
}
.nav-insta:hover {
  border-color: #d6249f;
  background: var(--warm);
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all .2s var(--ease);
  transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--sand);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s;
}
.mobile-menu.is-open {
  max-height: 320px;
  padding: var(--sp-sm) 0 var(--sp-md);
}
.mobile-menu a {
  padding: 12px var(--sp-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--paper);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover {
  color: var(--bark);
  background: var(--warm);
}

/* ══════════════════════════════════════
   COLOR RIBBON
══════════════════════════════════════ */
.color-ribbon {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 199;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--q)  0%, var(--q)  16.667%,
    var(--ch) 16.667%, var(--ch) 33.333%,
    var(--fd) 33.333%, var(--fd) 50%,
    var(--cs) 50%, var(--cs) 66.667%,
    var(--mo) 66.667%, var(--mo) 83.333%,
    var(--tj) 83.333%, var(--tj) 100%
  );
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: 83px;
  min-height: 88vw;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 31, 20, .82) 0%,
    rgba(44, 31, 20, .48) 45%,
    rgba(44, 31, 20, .12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  color: var(--white);
}
.hero-content .eyebrow {
  color: var(--wood);
}
.hero-content .eyebrow::before {
  background: var(--wood);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.hero-title em {
  font-style: italic;
  color: var(--wood);
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 360px;
  margin-bottom: var(--sp-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.hero-actions .btn-ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* ══════════════════════════════════════
   MARKE
══════════════════════════════════════ */
.marke {
  padding: var(--sp-xl) 0;
  background: var(--bg);
}

.marke-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.marke-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}
.marke-text h2 em {
  font-style: italic;
  color: var(--bark);
  font-weight: 300;
}
.marke-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  max-width: 520px;
}

.marke-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}
.badge {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: var(--sp-sm) var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
}

.marke-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.marke-visual img {
  width: 100%;
  object-fit: contain;
  background: var(--white);
}
.marke-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════
   PALETTE STRIP
══════════════════════════════════════ */
.palette-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 56px;
  overflow: hidden;
}
.pal-swatch {
  position: relative;
  overflow: hidden;
}
.pal-swatch span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-align: center;
  padding: 4px 2px;
  transform: translateY(100%);
  transition: transform .22s var(--ease);
}
.pal-swatch:hover span {
  transform: translateY(0);
}

/* ══════════════════════════════════════
   PRODUCT SECTIONS
══════════════════════════════════════ */
.product-section {
  padding: var(--sp-xl) 0;
  background: var(--bg);
}
.product-section--alt {
  background: var(--warm);
}
.product-section--schnitz {
  background: var(--bg);
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.product-grid--reverse .product-media {
  order: 1;
}

.product-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.product-img-wrap:hover img {
  transform: scale(1.03);
}
.coming-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: var(--radius);
  z-index: 2;
}

.product-info h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}
.product-info h2 em {
  font-style: italic;
  color: var(--bark);
  font-weight: 300;
}
.product-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.gift-note {
  background: rgba(181, 115, 94, .1);
  border: 1px solid rgba(181, 115, 94, .3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: var(--sp-md);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-md);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xs);
}
.spec-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-section--alt .spec-item {
  background: rgba(255,255,255,.7);
}
.spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.cert-row {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}
.cert {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 4px 12px;
  border-radius: 3px;
}

/* Sub-section (Verpackung) */
.sub-section {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--sand);
}

.sub-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.sub-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.sub-visual img {
  width: 100%;
  object-fit: contain;
  background: var(--white);
}

.sub-text h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.sub-text h3 em {
  font-style: italic;
  color: var(--bark);
  font-weight: 300;
}
.sub-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.feat-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   GRÜSSKARTEN
══════════════════════════════════════ */
.gruss-section {
  background: var(--warm);
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.gruss-intro {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.gruss-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.15;
}
.gruss-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Cards wrapper: stacked on mobile, side-by-side on desktop */
.gruss-karten {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-items: center;
}

.gruss-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
}

.gruss-card {
  width: 100%;
  background: var(--white);
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 2px 0 0 var(--sand), 0 8px 32px rgba(44,31,20,.12);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gruss-card-head {
  background: var(--sand);
  padding: 10px 20px;
  border-bottom: 2px solid var(--sand);
  min-height: 20px;
  border-radius: 0;
}

/* Logo direkt unter dem Balken */
.gruss-card-logo {
  display: flex;
  justify-content: center;
  padding: 14px 20px 8px;
  border-bottom: 1px solid var(--paper);
}
.gruss-card-logo img {
  height: 60px;
  width: auto;
}

/* Symmetrischer Balken unten */
.gruss-card-foot {
  background: var(--sand);
  padding: 10px 20px;
  border-top: 2px solid var(--sand);
  min-height: 20px;
  border-radius: 0;
}

/* Label außerhalb der Karte */
.gruss-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gruss-card-label-outside {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.gruss-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  text-align: center;
}
.gruss-card-body--center {
  align-items: center;
  text-align: center;
}

.gruss-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mo);
  text-align: center;
  margin-bottom: 12px;
}

.gruss-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 14px;
  text-align: center;
}
.gruss-card-title em {
  font-style: italic;
  color: var(--wood);
}

.gruss-card-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 10px;
}

/* QR box */
.gruss-qr-box {
  background: var(--paper);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.gruss-qr-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mo);
  margin-bottom: 10px;
}
.gruss-qr-img {
  text-align: center;
  margin-bottom: 10px;
}
.gruss-qr-img img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  display: inline-block;
}
.gruss-qr-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.gruss-qr-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.gruss-qr-steps li span {
  background: var(--mo);
  color: var(--white);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  min-width: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}
.gruss-qr-url {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--wood);
}

.gruss-signatur {
  text-align: center;
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.gruss-signatur strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--wood);
  display: block;
}

/* Rückseite specifics */
.gruss-stars {
  font-size: 20px;
  color: var(--tj);
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.gruss-divider {
  width: 36px;
  height: 2px;
  background: var(--wood);
  margin: 0 auto 16px;
}
.gruss-versprechen {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mo);
  margin-bottom: 20px;
  text-align: center;
}
.gruss-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: auto;
  padding-bottom: 16px;
}
.gruss-chips span {
  border: 1.5px solid var(--sand);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.gruss-card-footer {
  border-top: 1px solid var(--sand);
  padding-top: 10px;
  margin-top: 16px;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 4px;
}


/* 6 Pantone-Farbpunkte */
.gruss-palette {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 24px 0 8px;
}
.gruss-palette span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

/* 3 Werte auf der Rückseite */
.gruss-werte {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 16px;
  width: 100%;
}
.gruss-wert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--warm);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
}
.gruss-wert-icon {
  font-size: 18px;
  margin-bottom: 2px;
}
.gruss-wert-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .5px;
}
.gruss-wert-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* Desktop: cards side by side, gleiche Höhe */
@media (min-width: 700px) {
  .gruss-karten {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: var(--sp-lg);
  }
  .gruss-card-wrap {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .gruss-card {
    flex: 1;
    max-width: 100%;
    min-height: unset;
  }
}

/* Mobile: gleiche Höhe */
@media (max-width: 699px) {
  .gruss-karten {
    align-items: center;
  }
  .gruss-card-wrap {
    width: 100%;
    max-width: 340px;
  }
  .gruss-card {
    width: 100%;
    min-height: 680px;
  }
  .gruss-card-body--center {
    justify-content: space-between;
  }
}

/* ══════════════════════════════════════
   QUOTE BAND
══════════════════════════════════════ */
.quote-band {
  background: var(--paper);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  line-height: 1.4;
}
.quote-band p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.quote-band p em {
  color: var(--bark);
  font-style: italic;
}
.br-desktop { display: none; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
}

.footer-top {
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

.footer-logo {
  height: auto;
  width: 120px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: var(--sp-sm);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 7px 14px;
  transition: all .2s;
}
.footer-insta:hover {
  border-color: #d6249f;
  color: var(--white);
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-sm);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-md) 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  text-align: center;
}
.footer-bottom span,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.footer-bottom a {
  transition: color .2s;
}
.footer-bottom a:hover {
  color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════════
   Mobile: hero text legibility */
@media (max-width: 639px) {
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(20, 10, 4, .97) 0%,
      rgba(20, 10, 4, .78) 40%,
      rgba(20, 10, 4, .25) 75%,
      rgba(20, 10, 4, .05) 100%
    );
  }
  .hero-title {
    text-shadow: 0 2px 12px rgba(20, 10, 4, .6);
  }
  .hero-title em {
    color: #e8b87a;
    text-shadow: 0 1px 8px rgba(20, 10, 4, .6);
  }
  .hero-content .eyebrow {
    color: #f0c882;
    text-shadow: 0 1px 8px rgba(10, 5, 0, .9), 0 0 20px rgba(10, 5, 0, .7);
  }
  .hero-content .eyebrow::before {
    background: #f0c882;
    filter: drop-shadow(0 1px 4px rgba(10,5,0,.8));
  }
  .hero-sub {
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 1px 6px rgba(20, 10, 4, .5);
  }
}

/* ══════════════════════════════════════
   MOBILE ONLY  (max 639px)
   Rhythm, Hero text, Buttons
══════════════════════════════════════ */
@media (max-width: 639px) {

  /* Hero: mehr Luft, klare Hierarchie */
  .hero-content {
    padding-top: 96px;
    padding-bottom: 48px;
  }
  .hero-content .eyebrow { margin-bottom: 14px; }
  .hero-title             { margin-bottom: 20px; }
  .hero-sub               { font-size: 15px; line-height: 1.8; margin-bottom: 28px; }

  /* Buttons: schlanker – auf Mobile komplett ausblenden */
  .hero-actions { display: none !important; }

  /* Trust-Tags kompakter und mittig */
  .trust-row  { gap: 8px; justify-content: center; }
  .trust-item { font-size: 11px; padding: 5px 10px; }

  /* Desktop-Hero auf Mobile ausblenden */
  .hero-desktop-overlay { display: none; }

  /* ALLES MITTIG auf Mobile */
  .hero-content,
  .marke-text,
  .product-info,
  .sub-text,
  .gruss-intro,
  .quote-band,
  .farben-intro { text-align: center; }

  .eyebrow { justify-content: center; }
  .marke-badges { justify-items: center; }
  .cert-row { justify-content: center; }
  .gift-note { text-align: center; }
  .feature-list li { justify-content: center; }

  /* Section-Rhythmus: einheitlich */
  .marke           { padding: 52px 0; }
  .marke-grid      { gap: 28px; }
  .product-section { padding: 52px 0; }
  .product-grid    { gap: 28px; }
  .sub-section     { margin-top: 48px; padding-top: 40px; }
  .sub-grid        { gap: 24px; }
  .quote-band      { padding: 48px var(--sp-md); }

  /* Produkt-CTA-Button: volle Breite */
  .product-info .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  /* Footer mittig */
  .footer-brand,
  .footer-col { text-align: center; }
  .footer-logo { margin: 0 auto; display: block; }
  .footer-insta { margin: 0 auto; }
  .footer-col ul { padding: 0; }
  .footer-bottom .container { text-align: center; }
}

/* ══════════════════════════════════════
   TABLET  (min 640px)
══════════════════════════════════════ */
@media (min-width: 640px) {

  .hero {
    min-height: 70vw;
  }

  .marke-badges {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ══════════════════════════════════════
   DESKTOP  (≥ 900px)
══════════════════════════════════════ */
@media (min-width: 900px) {

  /* Header – 3-Zonen: Logo links | Nav mittig | Actions rechts */
  .header-inner {
    max-width: 100%;
    margin: 0;
    height: 130px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "logo nav actions";
    align-items: center;
    padding: 0 48px;
    position: static;
  }
  .logo-link {
    grid-area: logo;
    justify-self: start;
    position: static;
    transform: none;
    z-index: auto;
  }
  .logo-img { height: 88px; }

  .main-nav {
    grid-area: nav;
    display: flex;
    position: static;
    transform: none;
    justify-self: center;
    align-items: center;
    gap: 48px;
  }
  .main-nav a { font-size: 24px; letter-spacing: .6px; }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-insta {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
  }
  .nav-insta svg { width: 28px; height: 28px; }
  .btn-sei-dabei { display: inline-flex; align-items: center; }

  .menu-toggle  { display: none; }
  .mobile-menu  { display: none !important; }
  .color-ribbon { top: 130px; }

  /* Hero – Desktop Doppel-Layout */
  .hero {
    margin-top: 133px;
    min-height: calc(100vh - 133px);
    align-items: center;
  }

  /* Mobile Hero-Elemente auf Desktop ausblenden */
  .hero > .hero-visual,
  .hero > .hero-content { display: none; }

  /* Desktop Overlay: volle Fläche */
  .hero-desktop-overlay {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 133px);
    background: var(--warm);
  }

  /* Markenslogan oben mittig */
  .hero-brand-center {
    text-align: center;
    padding: 64px 48px 48px;
    background: var(--warm);
  }
  .hero-brand-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mo);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .hero-brand-eyebrow::before,
  .hero-brand-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--mo);
  }
  .hero-brand-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 600;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero-brand-title em {
    font-style: italic;
    color: var(--bark);
    font-weight: 300;
  }
  .hero-brand-sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
  }

  /* Drei Produktbilder nebeneinander */
  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex: 1;
    min-height: 420px;
  }
  .hero-split-item {
    position: relative;
    overflow: hidden;
  }
  .hero-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-split-item:hover .hero-split-overlay {
    background: linear-gradient(
      to top,
      rgba(44, 31, 20, .75) 0%,
      rgba(44, 31, 20, .32) 50%,
      rgba(44, 31, 20, .02) 100%
    );
    transition: background .4s ease;
  }
  .hero-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(44, 31, 20, .85) 0%,
      rgba(44, 31, 20, .4) 50%,
      rgba(44, 31, 20, .05) 100%
    );
  }
  .hero-split-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 48px;
    color: var(--white);
  }
  .hero-split-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-split-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--wood);
  }
  /* Bei 3 Spalten etwas kompakter */
  .hero-split-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.6vw, 44px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero-split-title em {
    font-style: italic;
    color: var(--wood);
    font-weight: 300;
  }
  .br-desktop { display: block; }

  /* Marke – Text zentriert, kein Bild */
  .marke { padding: var(--sp-2xl) 0; }
  .marke-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-lg);
  }
  .marke-text { max-width: 720px; }
  .marke-text p { margin-left: auto; margin-right: auto; }
  .marke-badges { grid-template-columns: repeat(4, 1fr); }
  .marke-visual { display: none; }

  /* Palette */
  .palette-strip { height: 80px; }

  /* Products */
  .product-section { padding: var(--sp-2xl) 0; }

  /* Standard 2-Spalten */
  .product-grid {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-xl);
  }
  .product-media,
  .product-info {
    flex: 1;
  }
  .product-grid--reverse .product-media {
    order: 2;
  }
  .product-grid--reverse .product-info {
    order: 1;
  }

  /* Rampenbahn: 3-Spalten – Bild links | Text mittig | Bild rechts */
  .product-grid--three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: var(--sp-lg);
  }
  .product-grid--three .product-media { flex: unset; }
  .product-grid--three .product-info  {
    flex: unset;
    text-align: center;
  }
  .product-grid--three .product-info .eyebrow {
    justify-content: center;
  }
  .product-grid--three .gift-note {
    text-align: center;
  }
  .product-grid--three .cert-row {
    justify-content: center;
  }

  /* Rampenbahn Container: kein Padding, Grid von Rand zu Rand */
  .container--rampenbahn {
    padding: 0;
    max-width: 100%;
  }

  /* Schnitz-Set Container: kein Padding, Grid von Rand zu Rand */
  .container--schnitz {
    padding: 0;
    max-width: 100%;
  }

  /* Obstregal Container: kein Padding, Grid von Rand zu Rand */
  .container--obstregal {
    padding: 0;
    max-width: 100%;
  }

  /* Beide Bilder: kein Hintergrund, kein Rahmen */
  .product-grid--three .product-img-wrap {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .product-grid--three .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Verpackung: cover, runde Ecken */
  .product-media--verpackung .product-img-wrap {
    height: 480px;
    background: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .product-media--verpackung .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Komplettset rechts: identisch wie Verpackung */
  .product-media--intro .product-img-wrap {
    height: 480px;
    background: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .product-media--intro .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Text unter Verpackungsbild */
  .product-media--verpackung::after {
    content: 'Geschenkbereit verpackt – mit Leinenbeutel und persönlicher Grußkarte, direkt verschenkbar.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  /* Obstregal Bilder: Produkt links, Lifestyle rechts */
  .product-media--obstregal-product .product-img-wrap,
  .product-media--obstregal-lifestyle .product-img-wrap {
    height: 480px;
    background: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .product-media--obstregal-product .product-img-wrap img,
  .product-media--obstregal-lifestyle .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Bildunterschrift Produktfoto */
  .product-media--obstregal-product::after {
    content: 'Massivholz und schwarz beschichtete Metallkörbe – robust, zeitlos, vielseitig einsetzbar.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  /* Bildunterschrift Lifestyle */
  .product-media--obstregal-lifestyle::after {
    content: 'Struktur trifft Schönheit – das Obstregal gibt der Küche Ordnung und warme Präsenz.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  /* Schnitz-Set Bilder: Lifestyle links, Set-Übersicht rechts */
  .product-media--schnitz-hero .product-img-wrap,
  .product-media--schnitz-set .product-img-wrap {
    height: 480px;
    background: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }
  .product-media--schnitz-hero .product-img-wrap img,
  .product-media--schnitz-set .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Bildunterschrift Lifestyle */
  .product-media--schnitz-hero::after {
    content: 'Gemeinsam schnitzen – mit sicherem Schnittschutz und einfacher Anleitung für die ganze Familie.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  /* Bildunterschrift Set-Übersicht */
  .product-media--schnitz-set::after {
    content: 'Alles inklusive – 12 Messer, 2 Paar Handschuhe, Lindenholzblock und Tasche mit Gürtelschlaufe.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  /* Text unter Vogelperspektive */
  .product-media--intro::after {
    content: 'Jedes Detail durchdacht – von der Rampe bis zum letzten Zylinder, gemacht um zu bleiben.';
    display: block;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    text-align: center;
  }

  .sub-grid {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-xl);
  }
  .sub-visual,
  .sub-text {
    flex: 1;
  }

  /* Footer */
  .footer-top { padding: var(--sp-2xl) 0 var(--sp-xl); }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ══════════════════════════════════════
   LARGE (≥ 1200px)
══════════════════════════════════════ */
@media (min-width: 1200px) {
  .container { padding: 0 var(--sp-lg); }
}

/* ══════════════════════════════════════
   MOBILE SEI DABEI BANNER
══════════════════════════════════════ */
/* Mobile CTA Bar + Menu Button */
.mobile-cta-bar {
  display: none;
}
.mobile-menu-sei-dabei {
  display: none;
}

@media (max-width: 899px) {

  /* Hero-Margin um CTA-Bar-Höhe erhöhen */
  .hero {
    margin-top: 127px;
  }

  /* Leiste fest unter Header + Farbstreifen */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    z-index: 197;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--warm);
    border-bottom: 1px solid var(--sand);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font-body);
  }

  .mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--bark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
  }
  .mobile-cta-btn:hover {
    background: var(--wood);
  }

  /* Sei dabei im Hamburger-Menü */
  .mobile-menu-sei-dabei {
    display: block !important;
    background: var(--bark);
    color: #fff !important;
    font-weight: 600 !important;
    text-align: center;
    margin: 8px var(--sp-md) 4px;
    border-radius: var(--radius);
    padding: 14px var(--sp-md) !important;
    border-bottom: none !important;
  }
  .mobile-menu-sei-dabei:hover {
    background: var(--wood) !important;
    color: #fff !important;
  }
}

/* ══════════════════════════════════════
   REDUCE MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
