:root {
  --forest: #751E54;
  --forest2: #5b1741;
  --cream: #fff8d6;
  --paper: #fffdf7;
  --gold: #f8de6f;
  --lila58: rgba(117, 30, 84, .58);
  --ink: #2d1b27;
  --line: rgba(117,30,84,.18);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.wrap {
  width: min(var(--max),calc(100% - 48px));
  margin: auto;
}
.skip {
  position: absolute;
  left: 10px;
  top: -50px;
  background: #fff;
  padding: 10px;
  z-index: 999;
}
.skip:focus {
  top: 10px;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(117,30,84,.94);
  color: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: .16em;
}
.brand b {
  display: block;
  font-size: 14px;
}
.brand small {
  display: block;
  font-size: 8px;
  opacity: .65;
  letter-spacing: .28em;
}
.bee {
  color: var(--lila58);
  font-size: 22px;
}
nav {
  display: flex;
  gap: 24px;
}
nav a {
  text-decoration: none;
  font-size: 13px;
  opacity: .86;
}
nav a:hover {
  color: var(--lila58);
}
.menu {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
}
.hero {
  min-height: 820px;
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(117, 30, 84, .96) 0%, rgba(117, 30, 84, .82) 42%, rgba(117, 30, 84, .38) 75%, rgba(117, 30, 84, .58) 100%),
    linear-gradient(0deg, rgba(20, 8, 16, .30), transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("https://spansberg.de/wp-content/uploads/2026/06/pattern.avif");
  background-repeat: repeat;
  background-position: center;
background-size: cover;
background-attachment: fixed;
  opacity: .58;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,.68) 65%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,.68) 65%, transparent 100%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.94) contrast(1.03);
}
.hero-inner {
  position: relative;
  z-index: 4;
  padding: 150px 0 120px;
}
.kicker {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 800;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(70px,10vw,142px);
  line-height: .86;
  letter-spacing: -.07em;
  margin: 0;
  font-weight: 800;
}
.hero h1 em {
  font-family: Georgia,serif;
  font-weight: 400;
  color: var(--gold);
}
h2 em {
  font-family: Georgia,serif;
  font-weight: 400;
  color: var(--lila58);
}
.hero-copy {
  max-width: 560px;
  font-size: 19px;
  color: #d8dfd7;
  margin: 35px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.circle-link {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .35s;
}
.circle-link span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.circle-link b {
  font-size: 22px;
  font-weight: 400;
}
.circle-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: translateY(5px);
}
.text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.hero-meta {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max),calc(100% - 48px));
  display: flex;
  gap: 18px;
  align-items: center;
  color: #aab7ac;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 4;
}
.hero-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .5;
}
.hex {
  position: absolute;
  width: 360px;
  height: 310px;
  border: 1px solid rgba(255,211,25,.28);
  clip-path: polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);
  animation: float 8s ease-in-out infinite;
}
.h1 {
  right: 8%;
  top: 18%;
  transform: rotate(18deg);
}
.h2 {
  right: 25%;
  top: 48%;
  transform: rotate(-14deg);
  animation-delay: -2s;
}
.h3 {
  right: -5%;
  top: 62%;
  transform: rotate(4deg);
  animation-delay: -4s;
}
.dot {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: drift 7s ease-in-out infinite;
}
.d1 {
  right: 32%;
  top: 27%;
}
.d2 {
  right: 13%;
  top: 40%;
  animation-delay: -3s;
}
.section {
  padding: 120px 0;
}
.honey {
  background: var(--cream);
}
.intro {
  max-width: 760px;
  margin-bottom: 60px;
}
.intro h2,.origin h2,.craft h2,.year h2,.contact h2,.faq h2,.reviews h2 {
  font-size: clamp(45px,6vw,76px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 25px;
  color: var(--forest);
}
.intro>p:last-child {
  max-width: 570px;
  font-size: 18px;
}
.honey-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 55px;
  align-items: center;
  margin: 0 0 75px;
}
.honey-feature figure,
.retail-image {
  margin: 0;
}
.honey-feature img,
.retail-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.honey-feature figure {
  position: relative;
}
.honey-feature figcaption,
.retail-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  background: rgba(117, 30, 84, .90);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.honey-feature figure {
  box-shadow: 14px 14px 0 var(--gold);
}
.honey-feature-copy {
  padding-right: 25px;
}
.honey-feature-copy h3 {
  color: var(--forest);
  font: 38px/1.05 Georgia, serif;
  letter-spacing: -.03em;
  margin: 0 0 20px;
}
.honey-feature-copy h3 em {
  color: var(--forest);
  font-style: italic;
}
.honey-feature-copy p:last-child {
  max-width: 480px;
  color: #5f665f;
}
.products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.product {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.product small {
  color: var(--gold);
  font-weight: 800;
}
.product h3 {
  font-family: Georgia,serif;
  font-size: 28px;
  margin: 4px 0;
}
.product p {
  margin: 0;
  color: #657067;
}
.jar {
  height: 360px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 45px;
  box-shadow: inset 0 -70px 100px rgba(0,0,0,.18);
  overflow: hidden;
}
.jar:before {
  content: "";
  position: absolute;
  top: 0;
  width: 38%;
  height: 18px;
  border-radius: 5px;
  background: #4d1739;
  box-shadow: 0 8px 0 rgba(255,255,255,.1);
}
.jar span {
  font-size: 11px;
  letter-spacing: .15em;
  opacity: .8;
}
.jar b {
  font-size: 17px;
  letter-spacing: .2em;
}
.jar-light {
  background: linear-gradient(145deg,#e7dfbd,#b9a970);
}
.jar-gold {
  background: linear-gradient(145deg,#e2bd64,#9a681d);
}
.jar-dark {
  background: linear-gradient(145deg,#8f3d6d,#4d1739);
  color: #fff;
}
.featured {
  transform: translateY(-25px);
}
.edit-note {
  font-size: 12px;
  margin-top: 40px;
  color: #777;
}
.origin {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 680px;
}
.origin-image {
  background: linear-gradient(135deg,#71875c,#d2bc75 48%,#4a694c);
  position: relative;
  overflow: hidden;
}
.origin-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 38% center;
  filter: saturate(.90) contrast(1.03);
}
.origin-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%,rgba(255,255,255,.38),transparent 28%),linear-gradient(0deg,rgba(117,30,84,.35),transparent 50%);
}
.coordinates {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 30px;
  color: #fff;
  font: 12px/1.5 monospace;
  letter-spacing: .1em;
}
.origin-copy {
  padding: 110px 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  color: #d9e1d9;
}
.origin-copy h2 {
  color: #fff;
}
.origin-copy p {
  max-width: 510px;
}
.location {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}
.location span {
  color: var(--lila58);
}
.location b,.location small {
  display: block;
}
.location small {
  opacity: .65;
  margin-top: 3px;
}
.craft {
  background: var(--paper);
}
.timeline {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.step {
  padding: 30px 25px 20px;
  border-right: 1px solid var(--line);
  min-height: 190px;
}
.step:last-child {
  border: 0;
}
.step>span {
  color: var(--gold);
  font-weight: 850;
  font-size: 12px;
}
.step h3 {
  font-family: Georgia,serif;
  font-size: 27px;
  margin: 12px 0 4px;
}
.step p {
  font-size: 14px;
  margin: 0;
  color: #667168;
}
.year {
  background: var(--forest);
  color: #d8e0d8;
  padding: 115px 0;
}
.year h2 {
  color: #fff;
}
.seasons {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 65px;
}
.seasons article {
  padding: 30px;
  border-left: 1px solid rgba(255,255,255,.2);
  min-height: 180px;
}
.seasons span {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--lila58);
  font-weight: 800;
}
.seasons h3 {
  font: 32px Georgia,serif;
  color: #fff;
  margin: 10px 0;
}
.seasons p {
  font-size: 14px;
  margin: 0;
  color: #b7c2b8;
}
.retail-image-section {
  padding: 0 0 120px;
  background: var(--cream);
}
.retail-image-wrap {
  max-width: 1280px;
}
.retail-image {
  position: relative;
  box-shadow: 15px 15px 0 var(--gold);
}
.retail-image img {
  max-height: 620px;
  object-position: center;
}
.faq {
  background: var(--paper);
}
.faq-wrap {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--forest);
  font-size: 18px;
}
.faq details p {
  max-width: 750px;
}
.reviews {
  padding: 100px 0;
  background: var(--cream);
}
.review-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}
.reviews h2 {
  margin-bottom: 15px;
}
.review-card {
  background: var(--forest);
  color: #e8eee7;
  padding: 38px;
  box-shadow: 15px 15px 0 var(--gold);
}
.stars {
  color: var(--lila58);
  letter-spacing: .12em;
  font-size: 20px;
  margin-bottom: 14px;
}
.review-card strong,.review-card span {
  display: block;
}
.review-card strong {
  font: 26px Georgia,serif;
  color: #fff;
}
.review-card span {
  font-size: 12px;
  opacity: .65;
  margin: 5px 0 24px;
}
.review-button {
  display: block;
  background: var(--gold);
  color: var(--forest);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 14px;
}
.review-hint {
  font-size: 11px;
  line-height: 1.5;
  opacity: .55;
  margin: 18px 0 0;
}
.contact {
  padding: 120px 0;
  background: #fff3bf;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}
.contact-box {
  background: var(--forest);
  color: #eaf0e9;
  padding: 40px;
  box-shadow: 15px 15px 0 var(--gold);
}
.contact-box b {
  font: 28px Georgia,serif;
  color: #fff;
}
.contact-box p {
  margin: 18px 0;
}
.contact-box>a {
  display: block;
  color: var(--gold);
  text-decoration: none;
  margin: 5px 0;
}
.mail-button {
  background: var(--gold)!important;
  color: var(--forest)!important;
  text-align: center;
  padding: 14px;
  margin-top: 25px!important;
  font-weight: 800!important;
}
footer {
  background: #4d1739;
  color: #dbe3da;
  padding: 35px 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer b,.footer small {
  display: block;
}
.footer small {
  font-size: 8px;
  letter-spacing: .16em;
  opacity: .6;
}
.footer a {
  margin-left: 22px;
  font-size: 12px;
}
.form-section {
  padding: 120px 0;
  background: #fff7d6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.form-section h2 {
  font-size: clamp(45px,6vw,76px);
  line-height: .98;
  letter-spacing: -.05em;
  color: var(--forest);
  margin: 0 0 24px;
}
.form-section h2 em {
  font-family: Georgia,serif;
  font-weight: 400;
  color: var(--lila58);
}
.form-section>div>p:not(.kicker) {
  max-width: 560px;
}
.contact-mini {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
}
.contact-mini strong {
  font: 24px Georgia,serif;
  color: var(--forest);
}
.contact-mini span {
  font-size: 13px;
  margin-bottom: 8px;
}
.contact-mini a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}
.contact-form {
  background: var(--forest);
  color: #e9eee8;
  padding: 38px;
  box-shadow: 15px 15px 0 var(--gold);
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-form label>span,.contact-form label small {
  color: var(--lila58);
}
.contact-form input:not([type=checkbox]),.contact-form select,.contact-form textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 3px;
  background: #f7f4eb;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.contact-form input:not([type=checkbox]):focus,.contact-form select:focus,.contact-form textarea:focus {
  border-color: var(--lila58);
  box-shadow: 0 0 0 2px rgba(255,211,25,.28);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.check {
  display: flex!important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500!important;
  letter-spacing: 0!important;
}
.check input {
  margin-top: 4px;
  accent-color: var(--gold);
}
.check a {
  color: var(--lila58);
}
.submit-button {
  width: 100%;
  border: 0;
  background: var(--gold);
  color: var(--forest);
  font-weight: 850;
  padding: 15px;
  cursor: pointer;
  font: inherit;
}
.submit-button:hover {
  background: var(--lila58);
}
.form-note {
  font-size: 10px;
  color: #aeb9af;
  margin: 14px 0 0;
}
.hp {
  position: absolute!important;
  left: -10000px!important;
  width: 1px!important;
  height: 1px!important;
  overflow: hidden;
}
.hp input {
  display: none!important;
}
@media(max-width:850px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease,transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay1 {
  transition-delay: .1s;
}
.delay2 {
  transition-delay: .2s;
}
.delay3 {
  transition-delay: .3s;
}
@keyframes float {
  50% {
    transform: translateY(-18px) rotate(20deg);
  }
}
@keyframes drift {
  50% {
    transform: translate(25px,-30px);
  }
}
@media(max-width:850px) {
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--forest);
    padding: 20px 24px;
    flex-direction: column;
    gap: 15px;
  }
  nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero {
    min-height: 720px;
  }
  .hero::after {
    opacity: .42;
  }
  .products,.seasons {
    grid-template-columns: 1fr;
  }
  .honey-feature {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .honey-feature-copy {
    padding-right: 0;
  }
  .retail-image-section {
    padding-bottom: 80px;
  }
  .featured {
    transform: none;
  }
  .origin {
    grid-template-columns: 1fr;
  }
  .origin-image {
    min-height: 450px;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .step:nth-child(2) {
    border-right: 0;
  }
  .step:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .contact-grid,.review-inner {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    display: none;
  }
}
@media(max-width:560px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-photo {
    object-position: 54% center;
  }
  .hero-inner {
    padding-top: 130px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .section,.year,.contact,.reviews {
    padding: 80px 0;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: 0!important;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .step:last-child {
    border-bottom: 0;
  }
  .footer {
    align-items: flex-start;
    gap: 25px;
    flex-direction: column;
  }
  .footer a {
    margin: 0 18px 0 0;
  }
  .origin-copy {
    padding: 75px 30px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hex,.dot {
    animation: none;
  }
}
.form-result {
  min-height: 70vh;
  background: var(--paper);
}
.result-card {
  max-width: 720px;
  padding: 55px;
  background: var(--forest);
  color: #e9eee8;
  box-shadow: 15px 15px 0 var(--gold);
}
.result-card h1 {
  font-size: clamp(45px,6vw,75px);
  line-height: .98;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -.05em;
}
.result-card p {
  max-width: 560px;
}
.result-link {
  display: inline-block;
  text-decoration: none;
  margin-top: 25px;
  padding: 13px 22px;
}


/* Accessibility / legal pages */
.legal-page {
  padding-top: 150px;
}
.legal-page .faq-wrap {
  max-width: 920px;
}
.legal-page .lead {
  max-width: 780px;
  font-size: 20px;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 45px 0 65px;
  background: var(--line);
}
.access-grid article {
  background: var(--paper);
  padding: 30px;
}
.access-grid article > span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}
.access-grid h3 {
  margin: 8px 0 10px;
}
.access-list {
  padding-left: 1.35rem;
}
.access-list li {
  margin: 0 0 14px;
  padding-left: 4px;
}
.access-date {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}
@media(max-width:700px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}
