
:root {
  --green-950: #18261f;
  --green-900: #22372d;
  --green-800: #2d493b;
  --cream: #f6f0e5;
  --cream-dark: #eadfce;
  --honey: #d9992b;
  --honey-light: #efbc58;
  --ink: #20251f;
  --muted: #6f746d;
  --white: #fffdf9;
  --line: rgba(24, 38, 31, 0.14);
  --shadow: 0 24px 70px rgba(35, 40, 30, 0.11);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(24, 38, 31, .86);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--honey-light);
  font-size: 28px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: .95rem;
}

.brand small {
  opacity: .65;
  font-size: .72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .9rem;
}

.main-nav a {
  opacity: .8;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 12px;
  background: var(--honey);
  color: var(--green-950);
  font-weight: 700;
  opacity: 1;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 180px max(24px, calc((100vw - 1180px)/2)) 100px;
  background: var(--green-950);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("images/hero-bienenstand.webp") 56% center/cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,28,22,.92) 0%, rgba(17,28,22,.62) 48%, rgba(17,28,22,.18) 100%),
    linear-gradient(0deg, rgba(17,28,22,.5), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--honey);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 580px;
  margin: 26px 0 34px;
  color: rgba(255,255,255,.76);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--honey);
  color: var(--green-950);
}

.button-primary:hover {
  background: var(--honey-light);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  background: rgba(255,255,255,.06);
}

.scroll-hint {
  position: absolute;
  right: max(24px, calc((100vw - 1180px)/2));
  bottom: 90px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 32px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px 32px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .87rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.section-heading h2,
.story h2,
.faq h2,
.contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -.035em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.product-grid.single-product {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.delivery-note {
  margin: 28px auto 0;
  max-width: 760px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(35,40,30,.05);
}

.delivery-note strong {
  color: var(--green-950);
}

.delivery-note span {
  color: var(--muted);
  text-align: right;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(35,40,30,.06);
}

.product-card.featured {
  transform: translateY(-14px);
}

.product-card.muted {
  opacity: .75;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-950);
  color: white;
  font-size: .72rem;
  font-weight: 700;
}

.product-visual {
  position: relative;
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.jar-one {
  background: radial-gradient(circle at center, #f7cc70 0 17%, #d7992f 18% 31%, #6d5327 32% 34%, transparent 35%),
              linear-gradient(135deg, #f2dcae, #cfaa67);
}

.jar-two {
  background: radial-gradient(circle at center, #d39b2f 0 22%, #9f6f1e 23% 31%, transparent 32%),
              linear-gradient(135deg, #d7c092, #8d7b56);
}

.jar-three {
  background: radial-gradient(circle at center, #f0c35e 0 20%, #c68c28 21% 31%, transparent 32%),
              linear-gradient(135deg, #f0e0bc, #d2bf91);
}

.product-visual::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 185px;
  border: 8px solid rgba(255,255,255,.55);
  border-top: 24px solid #2f302b;
  border-radius: 16px 16px 24px 24px;
  background: rgba(217,153,43,.72);
  box-shadow: inset 0 0 28px rgba(255,255,255,.28), 0 28px 35px rgba(45,40,25,.16);
}


.product-visual.product-photo {
  background: #f4ecdd;
}

.product-visual.product-photo::before {
  display: none;
}

.product-visual.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jar-label {
  position: relative;
  z-index: 1;
  width: 104px;
  padding: 15px 8px;
  text-align: center;
  border-radius: 8px;
  background: #f7f0df;
  color: var(--green-950);
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

.jar-label strong {
  font-size: 1.15rem;
}

.product-content {
  padding: 26px;
}

.product-type {
  margin: 0 0 6px;
  color: var(--honey);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.product-content > p:not(.product-type) {
  min-height: 78px;
  color: var(--muted);
  font-size: .93rem;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-footer strong,
.product-footer span {
  display: block;
}

.product-footer strong {
  font-size: 1.02rem;
}

.product-footer span {
  color: var(--muted);
  font-size: .72rem;
}

.product-footer a {
  color: var(--green-800);
  font-weight: 700;
}

.disabled-link {
  opacity: .6;
  font-weight: 700;
}

.gallery-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px)/2));
  background: var(--green-950);
  color: white;
}

.section-heading.light > p {
  color: rgba(255,255,255,.65);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 420px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #314b3e;
  cursor: pointer;
}

.gallery-stand {
  grid-column: span 5;
}

.gallery-detail {
  grid-column: span 3;
}

.gallery-location {
  grid-column: span 4;
}

.gallery-detail img {
  object-position: center 56%;
}

.gallery-location img {
  object-position: center 52%;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 55%);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: white;
  font-weight: 600;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image::before {
  content: "";
  position: absolute;
  inset: 35px -18px -18px 35px;
  border-radius: var(--radius);
  background: var(--honey);
}

.story-image img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-content .lead {
  margin: 26px 0 18px;
  font-size: 1.25rem;
  font-weight: 600;
}

.story-content > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.facts div {
  padding: 18px 12px;
  border-top: 1px solid var(--line);
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.facts span {
  color: var(--muted);
  font-size: .76rem;
}

.process {
  padding-top: 40px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  color: var(--honey);
  font-weight: 700;
}

.process-step h3 {
  margin: 25px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.faq-intro p:last-child {
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 40px 24px 0;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 1.4rem;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  margin: -8px 0 24px;
  padding-right: 50px;
  color: var(--muted);
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green-950);
  color: white;
}

.contact-copy {
  padding: 70px 60px;
  background:
    radial-gradient(circle at 10% 90%, rgba(217,153,43,.22), transparent 34%),
    var(--green-950);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.67);
}

.contact-detail {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: rgba(255,255,255,.52);
  font-size: .75rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 60px;
  background: var(--white);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(217,153,43,.13);
}

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 400 !important;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.contact-form small {
  color: var(--muted);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p,
.copyright {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .83rem;
}

.copyright {
  grid-column: 1 / -1;
}

.lightbox {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--green-950);
  color: white;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.lightbox::backdrop {
  background: rgba(13,20,16,.8);
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 70vh;
  object-fit: cover;
}

.lightbox p {
  margin: 0;
  padding: 18px 22px 22px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  margin: 140px auto 80px;
}

.legal-page h1,
.legal-page h2 {
  font-family: "Playfair Display", serif;
}

.legal-page .notice {
  padding: 18px;
  border-left: 4px solid var(--honey);
  background: var(--white);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    border-radius: 16px;
    background: var(--green-950);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .section-heading,
  .story,
  .faq,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .product-card.featured {
    transform: none;
  }

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }

  .gallery-stand {
    grid-column: 1 / -1;
  }

  .gallery-detail,
  .gallery-location {
    grid-column: span 1;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-copy,
  .contact-form {
    padding: 48px 34px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand strong {
    font-size: .84rem;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .scroll-hint {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0 0 20px 20px;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    gap: 20px;
  }

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

  .product-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-stand,
  .gallery-detail,
  .gallery-location {
    grid-column: auto;
  }

  .gallery-detail {
    min-height: 360px;
  }

  .story {
    gap: 55px;
  }

  .facts,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-section {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 0;
  }

  .contact-copy,
  .contact-form {
    padding: 42px 22px;
  }

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

  .footer-links {
    gap: 12px 18px;
  }
}

@media (max-width: 720px) {
  .product-grid.single-product {
    grid-template-columns: 1fr;
  }

  .delivery-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-note span {
    text-align: left;
  }
}

/* Kontaktformular: Statusmeldung und unsichtbares Spam-Schutzfeld */
.form-status {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.success {
  background: #edf5e9;
  border: 1px solid #b8d2ad;
  color: #274c28;
}

.form-status.error {
  background: #fff0ed;
  border: 1px solid #e3b8ae;
  color: #7b3027;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
