/* ============================================
   S-BB Baustoffprüfer-Honig
   Passend zum Honigetikett: Navy + Gold + Waben
   ============================================ */

:root {
  --navy:        #0e1e35;
  --navy-2:      #14294a;
  --navy-3:      #1a3963;
  --gold:        #d9a441;
  --gold-light:  #eac66f;
  --gold-deep:   #b9822a;
  --gold-grad:   linear-gradient(135deg, #eac66f, #c8912e);
  --honey:       #fbf3e0;
  --honey-2:     #f6e7c4;
  --cream:       #fffdf8;
  --text:        #3a3325;
  --text-soft:   #6d6350;
  --heading:     #1f1a12;
  --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--honey);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-3); }
::selection { background: rgba(217, 164, 65, .3); color: var(--heading); }

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

h1, h2, h3 { font-family: var(--serif); color: var(--heading); line-height: 1.15; font-weight: 700; }

/* --- Honeycomb pattern (reusable) --- */
.honeycomb-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23d9a441' stroke-width='2' stroke-opacity='0.18'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 L28 132 L0 116 L0 82 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px auto;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 30, 53, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 164, 65, .35);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6em;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: .01em;
}
.brand .brand-badge {
  display: inline-block;
  background: var(--gold-grad);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: .2em .6em;
  border-radius: 6px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  padding: .4em .9em;
  border: 1px solid rgba(217, 164, 65, .4);
  border-radius: 999px;
  transition: background .2s, color .2s, border-color .2s;
}
.back-link:hover { background: var(--gold-grad); color: var(--navy); border-color: transparent; }
.back-link svg { width: 15px; height: 15px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-3), var(--navy) 60%);
  color: #f3ecd9;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23eac66f' stroke-width='2' stroke-opacity='0.10'%3E%3Cpath d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/%3E%3Cpath d='M28 66 L56 82 L56 116 L28 132 L0 116 L0 82 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px auto;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(217, 164, 65, .45);
  border-radius: 999px;
  padding: .4em 1em;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p {
  font-size: 1.08rem;
  color: #d9d2c0;
  max-width: 34em;
  margin-bottom: 14px;
}
.hero-since {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}
/* Product image = the real label (FOTO 1) */
.hero-product { position: relative; justify-self: center; }
.hero-product::after {
  content: '';
  position: absolute; inset: -12%;
  background: radial-gradient(circle, rgba(234, 198, 111, .35), transparent 65%);
  z-index: 0;
}
.hero-product img {
  position: relative;
  z-index: 1;
  width: min(360px, 80vw);
  border-radius: 50%;
  border: 4px solid rgba(234, 198, 111, .6);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 80px 0; }
.section-honey { background: var(--honey); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #eee6d3; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-navy .section-label { color: var(--gold-light); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }

.lede { max-width: 60ch; }

/* Two-column media rows */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.media-row.reverse .media-text { order: 2; }

/* --- Zentrierter Textabschnitt --- */
.prose-center { max-width: 640px; margin: 0 auto; text-align: center; }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--gold-deep);
  margin-top: 22px;
}

/* --- Echte Medien (Foto / Video) --- */
.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(217, 164, 65, .4);
  box-shadow: 0 18px 44px rgba(20, 41, 74, .18);
  background: var(--honey-2);
}
.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-stack { display: grid; gap: 18px; }

/* ============================================
   "Was drin ist" – Datenblatt
   ============================================ */
.datasheet {
  background: var(--cream);
  border: 1px solid rgba(217,164,65,.35);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(20, 41, 74, .10);
  overflow: hidden;
}
.datasheet-head {
  background: var(--gold-grad);
  color: var(--navy);
  padding: 16px 26px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: .5em;
}
.spec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 26px;
  border-bottom: 1px solid rgba(217,164,65,.2);
}
.spec:last-child { border-bottom: none; }
.spec-key { font-weight: 600; color: var(--heading); }
.spec-val { text-align: right; color: var(--text-soft); }
.spec-val strong { color: var(--gold-deep); font-weight: 700; }

/* ============================================
   Prüfkriterien – Prüfprotokoll
   ============================================ */
.protocol {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(234,198,111,.3);
  border-radius: var(--radius);
  overflow: hidden;
}
.protocol-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  background: rgba(234,198,111,.12);
  border-bottom: 1px solid rgba(234,198,111,.3);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--gold-light);
}
.protocol-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.protocol-row:last-child { border-bottom: none; }
.protocol-crit { display: flex; flex-direction: column; }
.protocol-crit .name { font-weight: 600; color: #fff; font-family: var(--sans); }
.protocol-crit .val  { font-size: .9rem; color: #cdc4a8; }
.badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .35em .9em;
  border-radius: 999px;
  white-space: nowrap;
}
.badge svg { width: 14px; height: 14px; }
.badge-pass { background: rgba(217,164,65,.9); color: var(--navy); }
.badge-na   { background: rgba(255,255,255,.10); color: #b9b09a; border: 1px solid rgba(255,255,255,.18); }
.protocol-note {
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: .82rem;
  color: #b9b09a;
  text-align: center;
  background: rgba(0,0,0,.15);
}

/* ============================================
   Closing
   ============================================ */
.closing { text-align: center; }
.closing-mark {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 12px rgba(184, 130, 42, .25));
}
.closing-line {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--heading);
  max-width: 20em;
  margin: 0 auto;
}
.closing-appetit {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1.2rem;
}
/* Platzhalter-freie Einbaustelle für ein späteres Team-/Standortfoto */
.closing-photo { max-width: 720px; margin: 0 auto 40px; }

/* ============================================
   CTA zurück zur Hauptseite
   ============================================ */
.cta-main {
  background: radial-gradient(120% 140% at 20% 0%, var(--navy-3), var(--navy) 65%);
  color: #f3ecd9;
  text-align: center;
  padding: 72px 0;
}
.cta-main h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 12px; }
.cta-main p { color: #cfc7b4; max-width: 40em; margin: 0 auto 28px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--gold-grad);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 700;
  padding: .8em 1.8em;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(217,164,65,.3);
}
.btn-gold:hover { transform: translateY(-2px); color: var(--navy); box-shadow: 0 14px 36px rgba(217,164,65,.45); }
.btn-gold svg { width: 16px; height: 16px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy);
  color: #a89f8a;
  padding: 32px 0;
  border-top: 1px solid rgba(217,164,65,.25);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: .88rem;
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; padding-top: 56px; padding-bottom: 56px; }
  .hero p, .lede { margin-left: auto; margin-right: auto; }
  .media-row { grid-template-columns: 1fr; gap: 28px; }
  .media-row.reverse .media-text { order: 0; }
  .section { padding: 60px 0; }
  .brand span.brand-name { display: none; }
}
@media (max-width: 480px) {
  .protocol-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .spec { flex-direction: column; gap: 2px; }
  .spec-val { text-align: left; }
}
