:root {
  --paper: #fffdf8;
  --cream: #f8f4e9;
  --cream-deep: #eee4cf;
  --ink: #211e1a;
  --muted: #6e685f;
  --leaf: #657b58;
  --leaf-dark: #3f563d;
  --leaf-pale: #e9efe2;
  --honey: #d9a425;
  --honey-dark: #a96c0b;
  --rose: #b96d80;
  --blue: #6688b2;
  --line: rgba(33, 30, 26, 0.14);
  --soft-line: rgba(33, 30, 26, 0.08);
  --shadow: 0 28px 80px rgba(66, 45, 16, 0.14);
  --shadow-small: 0 15px 38px rgba(66, 45, 16, 0.10);
  --radius: 30px;
  --radius-small: 18px;
  --shell: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-script: "URW Chancery L", "Apple Chancery", "Segoe Script", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 188, 91, 0.09), transparent 28rem),
    radial-gradient(circle at 88% 19%, rgba(98, 123, 88, 0.08), transparent 28rem),
    var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110' viewBox='0 0 110 110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 4.85rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.17;
}
p:last-child { margin-bottom: 0; }
::selection { color: var(--ink); background: rgba(217, 164, 37, .32); }
:focus-visible { outline: 3px solid rgba(217, 164, 37, .88); outline-offset: 4px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 44px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding: 118px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--leaf-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span { width: 46px; height: 1px; background: currentColor; }
.centered-eyebrow { justify-content: center; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}
.section-heading > p { max-width: 520px; margin-bottom: 8px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--paper); background: var(--leaf-dark); box-shadow: 0 11px 26px rgba(63, 86, 61, .22); }
.button-primary:hover { background: var(--honey-dark); box-shadow: 0 14px 30px rgba(169, 108, 11, .24); }
.button-secondary { background: rgba(255,255,255,.5); border-color: rgba(63, 86, 61, .45); }
.button-secondary:hover { background: var(--paper); border-color: var(--leaf-dark); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { color: var(--paper); background: var(--honey-dark); }
.button-wide { width: 100%; }

/* Header and label-inspired brand */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255,253,248,.84);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--soft-line); background: rgba(255,253,248,.96); box-shadow: 0 8px 28px rgba(38,30,16,.08); }
.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 3px; text-decoration: none; }
.brand-bee { width: 49px; height: auto; margin-right: -3px; object-fit: contain; object-position: left center; }
.brand-copy { display: grid; width: 155px; line-height: 1; }
.brand-kicker { margin-left: 43px; margin-bottom: -3px; font-size: .66rem; font-weight: 700; letter-spacing: .02em; }
.brand-wordmark { width: 118px; height: auto; margin: -2px 0 -1px 24px; }
.brand-origin { margin-left: 43px; color: #4f4a42; font-size: .50rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.primary-nav a { position: relative; font-size: .92rem; font-weight: 720; text-decoration: none; }
.primary-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--leaf); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 1px solid var(--line); background: var(--paper); border-radius: 50%; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.hero { position: relative; min-height: 850px; padding: 162px 0 170px; overflow: hidden; background: linear-gradient(105deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.96) 45%, rgba(244,237,220,.72) 100%); }
.hero::before { position: absolute; top: 80px; left: -270px; width: 610px; height: 610px; border: 1px solid rgba(63,86,61,.14); border-radius: 50%; content: ""; }
.hero-glow { position: absolute; top: 70px; right: -120px; width: 690px; height: 560px; background: radial-gradient(circle, rgba(237,190,72,.27), transparent 68%); filter: blur(8px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.92fr) minmax(480px,1.08fr); align-items: center; gap: 72px; }
.hero-copy { padding-bottom: 45px; }
.hero-title { display: grid; width: fit-content; margin-bottom: 26px; line-height: 1; }
.hero-kicker { margin: 0 0 -7px 63px; font-family: var(--font-body); font-size: 1.18rem; font-weight: 500; letter-spacing: -.02em; }
.hero-wordmark { width: clamp(285px, 35vw, 460px); height: auto; margin-bottom: -4px; }
.hero-subtitle { margin-left: 62px; color: var(--leaf-dark); font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 3.45rem); font-weight: 400; letter-spacing: -.04em; }
.hero-lead { max-width: 620px; margin-bottom: 30px; color: #504b44; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero-values { display: flex; flex-wrap: wrap; gap: 15px 21px; padding: 0; margin: 0; color: var(--muted); font-size: .88rem; list-style: none; }
.hero-values li { display: flex; align-items: center; gap: 8px; }
.hero-values span { display: grid; width: 22px; height: 22px; place-items: center; color: var(--leaf-dark); background: var(--leaf-pale); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.hero-visual { position: relative; margin: 0; }
.hero-photo-frame { position: relative; padding: 12px; overflow: hidden; background: rgba(255,255,255,.86); border-radius: 48% 48% 28px 28px / 34% 34% 28px 28px; box-shadow: var(--shadow); }
.hero-photo-frame img { width: 100%; aspect-ratio: 1.04 / 1; object-fit: cover; object-position: center; border-radius: 48% 48% 20px 20px / 34% 34% 20px 20px; }
.region-seal { position: absolute; right: -27px; bottom: 50px; display: grid; width: 148px; height: 148px; place-items: center; padding: 20px; text-align: center; background: var(--paper); border: 1px dashed rgba(33,30,26,.28); border-radius: 50%; box-shadow: var(--shadow-small); }
.region-seal::before { position: absolute; inset: 8px; border: 1px solid rgba(33,30,26,.11); border-radius: 50%; content: ""; }
.region-seal img { width: 47px; height: 32px; object-fit: cover; object-position: left top; }
.region-seal span { position: relative; font-family: var(--font-display); font-size: .78rem; line-height: 1.15; }
.region-seal strong { display: block; font-size: .96rem; }
.hero-note { position: absolute; right: 17px; top: 45%; transform: rotate(-90deg) translateX(50%); transform-origin: right center; color: rgba(33,30,26,.52); font-family: var(--font-display); font-size: .78rem; font-style: italic; letter-spacing: .07em; }
.hero-flora { position: absolute; z-index: 3; bottom: -5px; left: -10px; width: min(760px, 53vw); height: auto; pointer-events: none; }

/* Availability */
.availability { position: relative; padding: 82px 0 104px; background: rgba(255,253,248,.82); border-block: 1px solid var(--soft-line); }
.availability::before, .availability::after { position: absolute; bottom: 0; width: 190px; height: 180px; content: ""; background: url('assets/label-flora.svg') left bottom / 900px auto no-repeat; opacity: .72; }
.availability::before { left: 0; }
.availability::after { right: 0; transform: scaleX(-1); }
.availability-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.availability-card { position: relative; display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 16px; min-height: 174px; padding: 26px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-small); box-shadow: 0 10px 34px rgba(49,36,16,.06); }
.availability-card.available { border-color: rgba(81,121,74,.32); }
.availability-card.unavailable { border-color: rgba(185,109,128,.33); }
.availability-card.next { border-color: rgba(217,164,37,.45); }
.availability-icon, .calendar-icon { display: grid; width: 58px; height: 58px; place-items: center; background: var(--leaf-pale); border: 1px solid rgba(63,86,61,.18); border-radius: 50%; font-size: 1.55rem; }
.unavailable .availability-icon { background: #f8e9ed; border-color: rgba(185,109,128,.20); }
.calendar-icon { color: var(--honey-dark); background: #fff4d7; border-color: rgba(217,164,37,.26); font-size: 1rem; font-weight: 900; }
.availability-card h3 { margin: 0 0 4px; font-family: var(--font-body); font-size: 1.14rem; font-weight: 800; }
.availability-card h3 small { display: block; margin-top: 3px; font-family: inherit; font-size: .73em; font-weight: 600; }
.availability-card p { margin: 0; color: var(--muted); }
.status-badge { grid-column: 1 / -1; width: fit-content; padding: 5px 10px; color: var(--leaf-dark); background: var(--leaf-pale); border-radius: 999px; font-size: .76rem; font-weight: 750; }
.unavailable .status-badge { color: #8e4d60; background: #f8e9ed; }
.next .status-badge { color: #916212; background: #fff4d7; }

/* Story, products and process */
.honey-story { background: var(--cream); }
.split-grid { display: grid; grid-template-columns: minmax(360px,.88fr) minmax(0,1.12fr); align-items: center; gap: clamp(60px,9vw,128px); }
.story-image { position: relative; }
.story-image > img { width: 100%; max-height: 690px; object-fit: cover; border-radius: 200px 200px 26px 26px; box-shadow: var(--shadow); }
.story-caption { position: absolute; right: -54px; bottom: -45px; width: 270px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-small); }
.story-caption span { display: block; }
.script-accent { margin-bottom: 5px; color: var(--leaf-dark); font-family: var(--font-script); font-size: 1.8rem; }
.story-caption span:last-child { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.story-copy > p { color: #514c45; }
.story-copy blockquote { position: relative; margin: 36px 0 0; padding: 26px 30px 26px 72px; color: var(--leaf-dark); background: rgba(255,253,248,.7); border-left: 3px solid var(--honey); border-radius: 0 16px 16px 0; font-family: var(--font-display); font-size: 1.28rem; font-style: italic; }
.story-copy blockquote::before { position: absolute; left: 24px; top: 8px; content: "“"; color: rgba(217,164,37,.48); font-family: var(--font-display); font-size: 4.5rem; line-height: 1; }
.varieties { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { overflow: hidden; background: var(--cream); border: 1px solid var(--soft-line); border-radius: 24px; box-shadow: 0 12px 36px rgba(60,40,13,.08); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-small); }
.product-photo { position: relative; overflow: hidden; }
.product-photo img { width: 100%; aspect-ratio: 1.23 / 1; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-photo img { transform: scale(1.035); }
.product-photo > span { position: absolute; top: 18px; left: 18px; padding: 7px 12px; color: var(--ink); background: rgba(255,253,248,.92); border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-body { padding: 28px; }
.product-kicker { margin-bottom: 7px; color: var(--honey-dark); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-body h3 small { display: block; margin-top: 5px; font-family: inherit; font-size: .56em; font-weight: 500; }
.product-body p { color: var(--muted); font-size: .95rem; }
.text-button { display: inline-flex; align-items: center; gap: 8px; padding: 0; color: var(--leaf-dark); background: none; border: 0; font-weight: 800; }
.text-button:hover span { transform: translateX(4px); }
.text-button span { transition: transform .2s ease; }

/* Year wheel */
.annual-cycle { overflow: hidden; background: linear-gradient(180deg,#f3eddf,#f9f5ec); }
.annual-cycle::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at center, rgba(217,164,37,.12), transparent 37%); }
.year-wheel { position: relative; width: min(900px,100%); height: 690px; margin: 20px auto 0; }
.year-wheel::before { position: absolute; inset: 85px 185px; border: 2px dashed rgba(81,105,74,.24); border-radius: 50%; content: ""; }
.season { position: absolute; z-index: 2; width: 235px; min-height: 175px; padding: 26px 23px 22px; text-align: center; background: rgba(255,253,248,.92); border: 1px solid rgba(33,30,26,.12); border-radius: 50% 50% 23px 23px / 28% 28% 23px 23px; box-shadow: 0 14px 35px rgba(64,43,13,.08); }
.season h3 { margin: 4px 0 9px; font-size: 1.35rem; }
.season p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.season-number { display: grid; width: 36px; height: 36px; place-items: center; margin: -44px auto 10px; color: var(--paper); background: var(--leaf); border: 5px solid var(--cream); border-radius: 50%; font-weight: 850; }
.spring { top: 40px; left: 90px; }
.early-summer { top: 20px; right: 90px; }
.summer { right: 0; bottom: 90px; }
.autumn { bottom: 20px; left: 50%; transform: translateX(-50%); }
.winter { left: 0; bottom: 90px; }
.early-summer .season-number { background: var(--honey); }
.summer .season-number { background: #cf8230; }
.autumn .season-number { background: #9b6744; }
.winter .season-number { background: var(--blue); }
.year-center { position: absolute; top: 50%; left: 50%; z-index: 3; display: grid; width: 210px; height: 210px; place-items: center; transform: translate(-50%,-50%); text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-small); }
.year-center img { width: 96px; height: 54px; object-fit: cover; object-position: left top; }
.year-center span { margin-top: -25px; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.3; }

.process { background: var(--leaf-dark); color: var(--paper); }
.process::after { position: absolute; right: 0; bottom: 0; left: 0; height: 130px; content: ""; background: url('assets/label-flora.svg') center bottom / 980px auto repeat-x; opacity: .18; filter: grayscale(1) brightness(2); }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(410px,.82fr); align-items: center; gap: 80px; }
.process .eyebrow { color: #e9d59b; }
.process-copy > p { color: rgba(255,253,248,.72); }
.process-list { padding: 0; margin: 38px 0 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { color: #e6c66f; font-family: var(--font-display); font-size: 1.05rem; }
.process-list h3 { margin: 0 0 5px; color: var(--paper); font-size: 1.25rem; }
.process-list p { margin: 0; color: rgba(255,253,248,.66); font-size: .92rem; }
.process-photos { position: relative; min-height: 680px; }
.pour-photo { position: absolute; inset: 0 55px 58px 0; margin: 0; overflow: hidden; border-radius: 220px 220px 24px 24px; box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.pour-photo img { width: 100%; height: 100%; object-fit: cover; }
.pour-photo figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px 24px; background: linear-gradient(transparent,rgba(0,0,0,.7)); font-family: var(--font-display); }
.small-photo { position: absolute; right: 0; bottom: 0; width: 190px; height: 190px; margin: 0; padding: 8px; background: var(--paper); border-radius: 50%; box-shadow: 0 16px 45px rgba(0,0,0,.25); }
.small-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Region, news, FAQ */
.region { background: var(--cream); }
.region-grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(540px,1.28fr); align-items: center; gap: 65px; }
.region-copy p:not(.eyebrow) { color: var(--muted); }
.region-facts { display: grid; gap: 14px; margin-top: 28px; }
.region-facts span { display: flex; align-items: baseline; gap: 10px; color: var(--muted); }
.region-facts strong { min-width: 105px; color: var(--leaf-dark); font-family: var(--font-display); font-size: 1.15rem; }
.map-card { margin: 0; padding: 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.map-card img { width: 100%; border-radius: 16px; }
.map-card figcaption { padding: 11px 8px 4px; color: var(--muted); text-align: center; font-size: .78rem; }

.news { background: var(--paper); }
.news-grid { display: grid; grid-template-columns: minmax(340px,.78fr) minmax(520px,1.22fr); align-items: stretch; gap: 70px; }
.news-intro > p { color: var(--muted); }
.current-bees { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 15px; margin-top: 35px; padding: 24px; overflow: hidden; background: #f9f1dc; border: 1px solid rgba(217,164,37,.30); border-radius: 18px; }
.current-bees img { width: 72px; height: 49px; object-fit: cover; object-position: left top; }
.current-bees h3 { margin-bottom: 7px; font-family: var(--font-body); font-size: 1rem; font-weight: 850; }
.current-bees p { margin: 0; color: #5d5547; font-size: .9rem; }
.news-window { display: flex; min-height: 470px; flex-direction: column; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-small); }
.news-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 15px 18px; background: #eee6d6; border-bottom: 1px solid var(--line); font-size: .78rem; }
.news-bar > strong { text-align: center; }
.news-count { justify-self: end; color: var(--muted); }
.news-dots { display: flex; gap: 6px; }
.news-dots i { width: 8px; height: 8px; background: var(--rose); border-radius: 50%; }
.news-dots i:nth-child(2) { background: var(--honey); }
.news-dots i:nth-child(3) { background: var(--leaf); }
.news-viewport { flex: 1; }
.news-card { display: grid; grid-template-columns: minmax(210px,.8fr) minmax(0,1.2fr); min-height: 385px; }
.news-card[hidden] { display: none; }
.news-image { overflow: hidden; }
.news-image img { width: 100%; height: 100%; min-height: 385px; object-fit: cover; }
.news-card > div:last-child { align-self: center; padding: 34px; }
.news-meta { margin-bottom: 13px; color: var(--honey-dark); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { font-size: clamp(1.8rem,3vw,2.65rem); }
.news-card p:last-child { color: var(--muted); }
.news-controls { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 16px; background: rgba(255,253,248,.78); border-top: 1px solid var(--line); }
.news-controls button { display: grid; width: 42px; height: 42px; place-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-size: 1.15rem; }
.news-controls button:hover { color: var(--paper); background: var(--leaf-dark); }

.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); gap: 65px; align-items: start; }
.faq-list details { background: rgba(255,253,248,.72); border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 19px 50px 19px 10px; cursor: pointer; font-weight: 760; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 15px; width: 29px; height: 29px; content: "+"; transform: translateY(-50%); color: var(--leaf-dark); text-align: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.15rem; line-height: 26px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 50px 20px 10px; margin: 0; color: var(--muted); }
.nature-card { position: relative; min-height: 530px; padding: 50px 46px 210px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-small); }
.nature-card .nature-bee { position: absolute; top: 30px; right: 22px; width: 74px; height: 48px; object-fit: cover; object-position: left top; opacity: .88; }
.nature-card h2 { font-size: clamp(2.3rem,4vw,3.8rem); }
.nature-card > p:last-of-type { color: var(--muted); }
.nature-flora { position: absolute; right: -280px; bottom: -7px; width: 1050px; max-width: none; }

/* Gallery */
.gallery { padding: 110px 0; color: var(--paper); background: #26352b; }
.gallery .section-heading { margin-bottom: 45px; }
.gallery .eyebrow { color: #dbc783; }
.gallery .section-heading > p { color: rgba(255,253,248,.67); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 17px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

/* Order form */
.order { position: relative; overflow: hidden; background: var(--paper); }
.order::before { position: absolute; right: -200px; bottom: -30px; width: 800px; height: 300px; content: ""; background: url('assets/label-flora.svg') right bottom / 800px auto no-repeat; opacity: .34; }
.order-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(320px,.75fr) minmax(560px,1.25fr); align-items: start; gap: 80px; }
.order-copy > p { color: var(--muted); }
.order-note { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; margin: 30px 0; padding: 19px; background: var(--leaf-pale); border: 1px solid rgba(63,86,61,.18); border-radius: 16px; }
.order-note > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--leaf-dark); background: var(--paper); border-radius: 50%; font-size: 1.45rem; }
.order-note strong { display: block; }
.order-note p { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }
.order-copy address { padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); }
.order-copy address strong { color: var(--ink); }
.order-copy address a { color: var(--leaf-dark); font-weight: 700; }
.order-form { padding: 38px; background: var(--cream); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-small); }
.form-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 27px; }
.form-heading > span { order: 2; padding: 6px 10px; color: var(--leaf-dark); background: var(--leaf-pale); border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 0; font-size: 2rem; }
.form-row { display: grid; gap: 16px; margin-bottom: 17px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.order-form label > span, .radio-group legend { display: block; margin-bottom: 7px; color: #4f4a42; font-size: .78rem; font-weight: 800; letter-spacing: .045em; }
.order-form input, .order-form select, .order-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: rgba(255,253,248,.92); border: 1px solid rgba(33,30,26,.17); border-radius: 8px; transition: border-color .2s ease, box-shadow .2s ease; }
.order-form textarea { resize: vertical; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { border-color: var(--leaf); outline: 0; box-shadow: 0 0 0 3px rgba(101,123,88,.13); }
.order-form input[readonly] { color: #5f594f; background: #f0ebdf; }
.order-form small { display: block; margin-top: 5px; color: var(--muted); font-size: .71rem; }
.radio-group { grid-template-columns: 1fr 1fr; padding: 0; border: 0; }
.radio-group legend { grid-column: 1 / -1; }
.radio-group label { display: flex; min-height: 48px; align-items: center; gap: 9px; padding: 11px 13px; background: rgba(255,253,248,.85); border: 1px solid var(--line); border-radius: 8px; }
.radio-group input { width: 18px; min-height: 18px; margin: 0; accent-color: var(--leaf-dark); }
.radio-group label > span { margin: 0; font-weight: 650; letter-spacing: 0; }
.form-privacy, .form-hint { color: var(--muted); font-size: .76rem; line-height: 1.5; }
.form-privacy a { color: var(--leaf-dark); font-weight: 760; }
.form-hint { margin: 12px 0 0; text-align: center; }
.form-status { min-height: 1.7em; margin: 12px 0 0; font-size: .84rem; font-weight: 700; text-align: center; }
.form-status.is-success { color: #315c38; }
.form-status.is-error { color: #a04448; }
.order-form.is-sending { opacity: .78; }
.order-form [aria-invalid="true"] { border-color: #b94c52; box-shadow: 0 0 0 3px rgba(185,76,82,.10); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-band { padding: 33px 0; color: var(--paper); background: var(--leaf-dark); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.25fr 1.35fr auto; align-items: center; gap: 28px; }
.contact-grid > div { display: grid; }
.contact-grid span { color: rgba(255,253,248,.58); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-grid strong, .contact-grid a:not(.button) { color: var(--paper); font-size: .91rem; font-weight: 650; text-decoration: none; }

/* Legal and footer */
.legal { padding: 92px 0; background: #eee7d9; }
.legal-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 25px; align-items: start; }
.legal-card { padding: 34px; background: rgba(255,253,248,.78); border: 1px solid var(--line); border-radius: 18px; }
.legal-card h2 { font-size: 2.8rem; }
.legal-card h3 { margin-top: 25px; font-family: var(--font-body); font-size: .86rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legal-card p, .legal-card address { color: #5f594f; font-size: .84rem; line-height: 1.65; }
.legal-card a { color: var(--leaf-dark); font-weight: 700; }
.legal-date { margin-top: 24px; font-size: .72rem !important; }
.site-footer { padding: 58px 0 20px; color: rgba(255,253,248,.78); background: #1d2820; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 55px; }
.footer-brand { color: var(--paper); }
.footer-brand .brand-wordmark { filter: invert(1); }
.footer-brand .brand-origin, .footer-brand .brand-kicker { color: rgba(255,253,248,.72); }
.footer-grid > p { max-width: 460px; margin: 0; font-size: .87rem; }
.footer-grid nav { display: grid; grid-template-columns: repeat(2,auto); gap: 7px 25px; }
.footer-grid nav a { font-size: .8rem; text-decoration: none; }
.footer-grid nav a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.noscript-note { position: fixed; right: 0; bottom: 0; left: 0; z-index: 200; padding: 10px 20px; color: var(--paper); background: var(--ink); text-align: center; font-size: .8rem; }

/* Form response pages */
.response-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; }
.response-card { width: min(100%,620px); padding: 55px; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.response-card h1 { margin-bottom: 20px; font-family: var(--font-display); font-size: clamp(2.7rem,8vw,5rem); font-weight: 400; line-height: 1; }
.response-card p { color: var(--muted); }
.response-bee { width: 78px; margin: 0 auto 20px; }

/* Motion */
.reveal-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal-ready .reveal-delay-1 { transition-delay: .12s; }
.reveal-ready .reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
  :root { --shell: 940px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: .84rem; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0,.93fr) minmax(410px,1.07fr); gap: 45px; }
  .hero-flora { width: 56vw; }
  .availability-grid { grid-template-columns: 1fr 1fr; }
  .availability-card.next { grid-column: 1 / -1; }
  .product-grid { gap: 16px; }
  .year-wheel { transform: scale(.92); transform-origin: top center; margin-bottom: -50px; }
  .process-grid, .news-grid, .order-grid { gap: 50px; }
  .region-grid { grid-template-columns: .72fr 1.28fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .button { justify-self: start; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .header-inner { min-height: 76px; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 76px 0 auto; display: grid; max-height: calc(100vh - 76px); padding: 25px 30px 35px; transform: translateY(-130%); background: rgba(255,253,248,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-small); opacity: 0; transition: transform .25s ease, opacity .2s ease; }
  .primary-nav.is-open { transform: none; opacity: 1; }
  .primary-nav a { padding: 10px 0; font-size: 1rem; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 126px 0 145px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .hero-flora { width: 88vw; }
  .section-heading, .split-grid, .process-grid, .region-grid, .news-grid, .faq-grid, .order-grid, .legal-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 10px; }
  .section-heading > p { margin: 0; }
  .story-image { max-width: 560px; margin-inline: auto; }
  .story-caption { right: -15px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; }
  .year-wheel { display: grid; width: 100%; height: auto; grid-template-columns: 1fr 1fr; gap: 18px; transform: none; margin-bottom: 0; }
  .year-wheel::before, .year-center { display: none; }
  .season { position: static; width: auto; min-height: 175px; transform: none !important; border-radius: 22px; }
  .season:last-of-type { grid-column: 1 / -1; }
  .process-photos { min-height: 600px; }
  .region-copy { max-width: 650px; }
  .news-grid { gap: 38px; }
  .news-card { grid-template-columns: .8fr 1.2fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 30px; }
  .footer-grid nav { grid-template-columns: repeat(5,auto); justify-content: start; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  h2 { font-size: clamp(2.25rem,12vw,3.7rem); }
  .section { padding: 72px 0; }
  .brand-bee { width: 42px; }
  .brand-copy { width: 135px; }
  .brand-kicker { margin-left: 34px; font-size: .57rem; }
  .brand-wordmark { width: 103px; margin-left: 17px; }
  .brand-origin { margin-left: 34px; font-size: .43rem; }
  .hero { padding: 112px 0 118px; }
  .hero-title { margin-bottom: 20px; }
  .hero-kicker { margin-left: 43px; font-size: .95rem; }
  .hero-wordmark { width: min(330px,90vw); }
  .hero-subtitle { margin-left: 43px; font-size: 2.15rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-values { display: grid; gap: 8px; }
  .hero-photo-frame { border-radius: 45% 45% 20px 20px / 27% 27% 20px 20px; }
  .hero-photo-frame img { border-radius: 45% 45% 14px 14px / 27% 27% 14px 14px; }
  .region-seal { right: -4px; bottom: -20px; width: 118px; height: 118px; padding: 14px; }
  .region-seal img { width: 38px; }
  .hero-note { display: none; }
  .hero-flora { width: 118vw; left: -16vw; }
  .availability { padding: 67px 0 80px; }
  .availability-grid, .product-grid, .year-wheel { grid-template-columns: 1fr; }
  .availability-card.next, .product-card:last-child, .season:last-of-type { grid-column: auto; }
  .availability-card { min-height: 150px; padding: 22px; }
  .story-caption { position: relative; right: auto; bottom: auto; width: calc(100% - 30px); margin: -30px auto 0; }
  .story-copy blockquote { padding-left: 55px; }
  .product-body { padding: 24px; }
  .season { min-height: 0; padding: 28px 22px 22px; }
  .process-photos { min-height: 500px; }
  .pour-photo { right: 30px; bottom: 45px; }
  .small-photo { width: 145px; height: 145px; }
  .region-facts span { display: grid; gap: 0; }
  .news-card { grid-template-columns: 1fr; }
  .news-image img { min-height: 220px; max-height: 260px; }
  .news-card > div:last-child { padding: 27px; }
  .news-window { min-height: 0; }
  .faq-grid { gap: 40px; }
  .nature-card { min-height: 470px; padding: 38px 28px 180px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .order-form { padding: 26px 20px; }
  .two-columns, .radio-group { grid-template-columns: 1fr; }
  .form-heading { align-items: start; flex-direction: column; }
  .form-heading > span { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 27px 22px; }
  .footer-grid nav { grid-template-columns: repeat(2,auto); }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .response-card { padding: 38px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}

/* Persönlicher Abschnitt und Video */
.about-us { background: rgba(255,253,248,.72); }
.about-grid { display: grid; grid-template-columns: minmax(380px,.95fr) minmax(0,1.05fr); align-items: center; gap: clamp(55px,8vw,110px); }
.about-photo { position: relative; margin: 0; }
.about-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px 180px 28px 28px; box-shadow: var(--shadow); }
.about-photo figcaption { position: absolute; right: -24px; bottom: 24px; max-width: 270px; padding: 14px 18px; color: var(--leaf-dark); background: rgba(255,253,248,.94); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-small); font-size: .82rem; font-weight: 750; }
.about-copy > p { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.about-facts span { padding: 18px 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; color: var(--muted); font-size: .78rem; }
.about-facts strong { display: block; margin-bottom: 4px; color: var(--leaf-dark); font-family: var(--font-display); font-size: 1.05rem; }

.hive-video { padding-top: 40px; background: linear-gradient(180deg, rgba(255,253,248,.72), var(--cream)); }
.video-grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(520px,1.28fr); align-items: center; gap: clamp(44px,7vw,90px); }
.video-copy > p { color: var(--muted); }
.video-note { padding: 16px 18px; background: var(--leaf-pale); border-left: 3px solid var(--leaf); border-radius: 0 10px 10px 0; font-size: .85rem; }
.video-note code { color: var(--leaf-dark); font-size: .82em; }
.video-player { overflow: hidden; background: #111; border: 10px solid var(--paper); border-radius: 26px; box-shadow: var(--shadow); }
.video-player video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #111; object-fit: cover; }

.expanded-gallery { grid-auto-rows: 235px; }
.expanded-gallery figure { position: relative; }
.expanded-gallery figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 11px; color: #fff; background: linear-gradient(90deg, rgba(20,27,22,.76), rgba(20,27,22,.28)); border-radius: 8px; font-size: .72rem; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.expanded-gallery figure:hover figcaption, .expanded-gallery figure:focus-within figcaption { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .about-grid, .video-grid { grid-template-columns: 1fr; }
  .about-photo figcaption { right: 18px; }
  
}

@media (max-width: 620px) {
  .about-photo img { border-radius: 22px 90px 22px 22px; }
  .about-facts { grid-template-columns: 1fr; }
  
  .expanded-gallery figcaption { opacity: 1; transform: none; }
}


/* Preise, Versand und Bestellzusammenfassung */
.price-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 26px 0; }
.price-list > div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 3px 14px; padding: 18px 20px; background: rgba(255,253,248,.9); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-small); }
.price-list span { color: var(--leaf-dark); font-weight: 750; }
.price-list strong { justify-self: end; color: var(--ink); font-family: var(--font-display); font-size: 1.32rem; }
.price-list small { grid-column: 1 / -1; color: var(--muted); }
.shipping-note { margin-top: 12px; }
.shipping-fields { padding: 20px; margin: 4px 0 18px; background: var(--leaf-pale); border: 1px solid rgba(67,92,55,.18); border-radius: 14px; }
.shipping-fields[hidden] { display: none; }
.field-group-title { margin: 0 0 14px; color: var(--leaf-dark); font-weight: 800; }
.order-summary { display: flex; flex-direction: column; justify-content: center; min-height: 76px; padding: 12px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.order-summary span { color: var(--muted); font-size: .74rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.order-summary strong { color: var(--leaf-dark); font-family: var(--font-display); font-size: 1.35rem; }
.order-summary small { color: var(--muted); }
@media (max-width: 620px) { .price-list { grid-template-columns: 1fr; } }
