/* Michelbacher Bienenwerk v6
   Eigenständiges Webdesign auf Basis des Etikettenstils:
   Papier, Waldgrün, Honiggold, Siegel, Label-Karten, botanische Details.
   Keine eingebauten Mockup-Bilder.
*/

:root {
  --green-950: #10271c;
  --green-900: #183728;
  --green-800: #264b37;
  --green-100: #e6eee5;
  --gold-700: #a8731e;
  --gold-500: #c9962d;
  --gold-200: #efd79b;
  --paper: #f4e7c8;
  --paper-2: #fff8e9;
  --cream: #f8efd8;
  --brown: #372719;
  --muted: #725d45;
  --line: rgba(55, 39, 25, .16);
  --shadow: 0 24px 70px rgba(16, 39, 28, .15);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--brown);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 150, 45, .20), transparent 30rem),
    radial-gradient(circle at 84% 12%, rgba(24, 55, 40, .10), transparent 24rem),
    linear-gradient(135deg, #fbf3df 0%, #eee0be 56%, #f8efd9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(55, 39, 25, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 39, 25, .04) 1px, transparent 1px);
  background-size: 36px 36px;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 13px clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(244, 231, 200, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(55, 39, 25, .10);
}

.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--green-950);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: .82rem;
}

.navigation {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.navigation a {
  text-decoration: none;
  color: var(--green-950);
  font-weight: 750;
  font-size: .92rem;
  padding: .65rem .85rem;
  border-radius: 999px;
}

.navigation a:hover { background: rgba(201, 150, 45, .16); }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 248, 233, .78);
  border-radius: 999px;
  padding: .62rem .9rem;
  font-weight: 850;
  color: var(--green-950);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 105px) clamp(18px, 5vw, 32px) 42px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, .96fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.overline {
  margin: 0 0 14px;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 900;
  font-size: .75rem;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  line-height: 1.04;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.05rem, 7vw, 5.9rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 3.85rem);
  max-width: 13ch;
}

h3 { font-size: 1.55rem; }

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.23rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.18rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(15, 42, 30, .16);
}

.button-primary {
  background: var(--green-950);
  color: var(--paper-2);
  box-shadow: 0 14px 30px rgba(15, 42, 30, .22);
}

.button-secondary {
  background: rgba(255, 248, 233, .78);
  color: var(--green-950);
}

.brand-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 248, 233, .88), rgba(244, 231, 200, .92)),
    radial-gradient(circle at 78% 18%, rgba(201, 150, 45, .25), transparent 170px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-stage::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(24, 55, 40, .13);
  border-radius: 28px;
}

.front-label {
  position: absolute;
  z-index: 2;
  width: min(72%, 350px);
  min-height: 305px;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -48%);
}

.label-card {
  background: var(--paper-2);
  border: 1px solid rgba(55, 39, 25, .18);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(55, 39, 25, .13);
  padding: 28px 26px;
  text-align: center;
}

.label-card::before,
.label-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 22px;
}

.label-card::before {
  inset: 12px;
  border: 1px solid rgba(201, 150, 45, .34);
}

.label-card::after {
  inset: 22px;
  border: 1px solid rgba(24, 55, 40, .10);
}

.label-bee {
  width: 106px;
  margin: 0 auto 4px;
}

.label-arch {
  margin: 2px 0 6px;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 900;
}

.label-card strong {
  display: block;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  line-height: 1;
}

.label-card span {
  display: block;
  margin-top: 14px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .77rem;
  font-weight: 750;
  line-height: 1.55;
}

.label-card em {
  display: block;
  margin-top: 16px;
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.45rem;
}

.label-card small {
  display: inline-flex;
  margin-top: 16px;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--paper-2);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .68rem;
}

.seal-ribbon {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 34px;
  display: grid;
  justify-items: center;
  gap: 0;
  filter: drop-shadow(0 14px 22px rgba(16, 39, 28, .18));
}

.seal-circle,
.seal-dot {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  background: var(--paper-2);
  border: 2px solid var(--green-900);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .1em;
}

.seal-circle {
  width: 94px;
  height: 94px;
  font-size: .65rem;
}

.seal-strip {
  width: 34px;
  height: 180px;
  margin-top: -3px;
  background: var(--paper);
  border-left: 1px solid rgba(55, 39, 25, .14);
  border-right: 1px solid rgba(55, 39, 25, .14);
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green-900);
  font-weight: 850;
  font-size: .63rem;
}

.seal-dot {
  width: 72px;
  height: 72px;
  margin-top: -4px;
  background: var(--green-950);
  color: var(--paper-2);
  border-color: var(--gold-500);
  font-size: .56rem;
  line-height: 1.25;
}

.landscape-line {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
}

.landscape-line svg { width: 100%; height: 100%; }
.landscape-line path:first-child { fill: var(--green-900); }
.landscape-line path:last-child { fill: var(--green-800); }

.signal-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 32px) 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.signal-row div {
  padding: 20px 22px;
  background: rgba(255, 248, 233, .78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(15, 42, 30, .06);
}

.signal-row span {
  color: var(--gold-700);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .72rem;
}

.signal-row strong {
  display: block;
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-size: 1.22rem;
}

.signal-row p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 32px);
}

.intro-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: end;
}

.text-panel {
  background: rgba(255, 248, 233, .62);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
}

.text-panel p,
.wax-copy p,
.story-card p,
.contact-band p,
.product-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.product-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 32px) clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}

.product-card,
.story-card,
.address-card,
.legal-card {
  background: rgba(255, 248, 233, .80);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 36px);
}

.product-card-featured {
  background: linear-gradient(180deg, rgba(255, 248, 233, .95), rgba(239, 215, 155, .43));
}

.product-card-featured img {
  width: 92px;
  margin-bottom: 18px;
}

.product-card ul {
  padding-left: 1.15rem;
  color: var(--green-950);
  line-height: 1.85;
}

.wax-section {
  max-width: calc(var(--max) - 64px);
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 30px;
  align-items: center;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 20% 16%, rgba(201, 150, 45, .18), transparent 16rem),
    linear-gradient(135deg, var(--green-950), #173a29);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.wax-section h2,
.wax-section .overline { color: var(--paper-2); }

.wax-copy p { color: rgba(255, 248, 233, .77); }

.wax-design-card {
  min-height: 320px;
  border-radius: 30px;
  border: 1px solid rgba(255, 248, 233, .14);
  background: rgba(255, 248, 233, .07);
  display: grid;
  place-items: center;
  padding: 26px;
}

.wax-design-card p {
  margin: 18px 0 0;
  color: rgba(255, 248, 233, .74);
  text-align: center;
  font-size: .92rem;
  letter-spacing: .06em;
}

.candle-art {
  position: relative;
  width: 290px;
  height: 220px;
}

.candle {
  position: absolute;
  bottom: 0;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(90deg, #fff1bd, #d5a23a 55%, #a8731e);
  box-shadow: inset -12px 0 22px rgba(55, 39, 25, .20);
}

.candle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 26px;
  border-radius: 50%;
  background: #efc765;
}

.candle::after {
  content: "";
  position: absolute;
  left: 22%;
  top: 42px;
  width: 48%;
  height: 4px;
  border-radius: 999px;
  background: rgba(126, 86, 26, .16);
  box-shadow: 0 42px 0 rgba(126, 86, 26, .13), 0 84px 0 rgba(126, 86, 26, .10);
}

.candle-tall {
  left: 72px;
  width: 86px;
  height: 160px;
}

.candle-small {
  left: 164px;
  width: 72px;
  height: 118px;
}

.flame {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 56px;
  background: linear-gradient(#fff3a6, #d49a29 58%, #a75f17);
  border-radius: 60% 60% 60% 0;
  transform: rotate(-35deg);
  filter: drop-shadow(0 0 18px rgba(239, 199, 101, .75));
}

.flame-one { left: 98px; top: 3px; }
.flame-two { left: 185px; top: 46px; transform: rotate(-35deg) scale(.82); }

.comb {
  position: absolute;
  width: 46px;
  height: 40px;
  right: 10px;
  bottom: 18px;
  background: var(--paper);
  border: 4px solid var(--gold-500);
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
  opacity: .9;
}

.comb-two {
  right: 47px;
  bottom: 18px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 24px;
}

.parent-note {
  color: var(--gold-700)!important;
  font-weight: 850;
}

.address-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.address-card strong {
  display: block;
  color: var(--green-950);
  margin: 14px 0 8px;
  font-size: 1.15rem;
}

.address-card span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-band {
  max-width: calc(var(--max) - 64px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 248, 233, .88), rgba(239, 215, 155, .46));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 28px;
  align-items: center;
}

.mail-card {
  display: block;
  text-decoration: none;
  background: var(--green-950);
  color: var(--paper-2);
  border-radius: 26px;
  padding: 28px;
}

.mail-card span {
  display: block;
  color: var(--gold-200);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: .76rem;
}

.mail-card strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.mail-card small { color: rgba(255, 248, 233, .66); }

.footer {
  margin-top: 70px;
  background: var(--green-950);
  color: var(--paper-2);
  padding: 34px clamp(18px, 5vw, 58px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 248, 233, .66);
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--paper-2);
  text-decoration-color: rgba(255, 248, 233, .35);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 32px);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 5rem);
  margin-bottom: 28px;
}

.legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  margin-top: 2rem;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 920px) {
  .menu-button { display: inline-flex; }

  .navigation {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .navigation.open { display: flex; }

  .hero,
  .intro-section,
  .wax-section,
  .story-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .signal-row,
  .product-section {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 44px; }

  .brand-stage {
    min-height: 500px;
  }

  .seal-ribbon {
    right: 22px;
    top: 22px;
    transform: scale(.82);
    transform-origin: top right;
  }

  .wax-section {
    max-width: var(--max);
    border-radius: 30px;
  }

  .footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { min-height: 70px; }
  .brand small { display: none; }
  .brand strong { font-size: .92rem; }
  .brand img { width: 40px; height: 40px; }
  h1 { font-size: 3rem; }

  .brand-stage {
    min-height: 445px;
    border-radius: 28px;
  }

  .front-label {
    width: 82%;
    min-height: 280px;
  }

  .label-card strong {
    font-size: 2rem;
  }

  .seal-ribbon {
    transform: scale(.68);
  }

  .contact-card strong,
  .mail-card strong {
    word-break: break-word;
  }
}
