/* ─────────────────────────────────────────────
   Killy Bees — Raw Honey
   Design system + page styles
───────────────────────────────────────────── */

:root {
  /* Palette */
  --honey:        #d9a441;
  --honey-deep:   #b07f24;
  --honey-pale:   #f4d27a;
  --cream:        #f6ede4;
  --cream-warm:   #efe2cf;
  --olive:        #3E4536;
  --olive-deep:   #2a2f25;
  --ink:          #1a1208;
  --ink-soft:     #2a2118;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-s:  1rem;
  --space-m:  2rem;
  --space-l:  4rem;
  --space-xl: 8rem;
  --space-xxl: 12rem;

  /* Container */
  --max-w: 1440px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

/* ─── Reset / base ─── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Grain overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Floating bees ─── */
.bee {
  position: fixed;
  width: 50px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: beeAppear 1s ease 1.5s forwards, beeFloat 8s ease-in-out infinite 2.5s;
}
.bee--1 { top: 18%; left: 8%; }
.bee--2 { top: 65%; right: 10%; animation-delay: 1.8s, 3s; animation-duration: 1s, 11s; }
@keyframes beeAppear {
  to { opacity: 1; }
}
@keyframes beeFloat {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  25%      { transform: translate(20px, -15px) rotate(8deg); }
  50%      { transform: translate(-10px, 10px) rotate(-3deg); }
  75%      { transform: translate(15px, -5px) rotate(6deg); }
}

/* ─── Reveal-on-scroll ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Typography helpers ─── */
.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--olive);
  margin: 0 0 var(--space-m);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}
.kicker--light { color: var(--honey-pale); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(176, 127, 36, 0.5);
}
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad-x);
  transition: background 0.4s ease, padding 0.4s ease, color 0.4s ease;
  color: var(--cream);
}
.nav.is-scrolled {
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem var(--pad-x);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__logo svg { width: 32px; height: 32px; color: var(--honey); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--honey);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--honey); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: 0.65rem 1.25rem !important;
  border: 1px solid currentColor;
  border-radius: 100px;
}
.nav__cta:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink) !important;
}
.nav__cta::after { display: none !important; }
.nav__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__menu span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__menu.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__menu.is-open span:nth-child(2) { opacity: 0; }
.nav__menu.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--honey); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero__layer {
  position: absolute;
  inset: -10% -5%;
  z-index: -1;
  will-change: transform;
}
.hero__layer--bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217, 164, 65, 0.4), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(176, 127, 36, 0.5), transparent 60%),
    linear-gradient(135deg, #1a1208 0%, #2a2118 50%, #3E4536 100%);
}
.hero__layer--mid {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.hero__honeycomb {
  width: 120%;
  height: 120%;
}
.hero__content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--pad-x);
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-pale);
  margin: 0 0 var(--space-m);
}
.hero__eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-m);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero__title span {
  display: block;
}
.hero__title em {
  font-style: italic;
  color: var(--honey);
  font-weight: 400;
}
.hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto var(--space-l);
  color: rgba(246, 237, 228, 0.85);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__cta .btn--primary {
  background: var(--honey);
  color: var(--ink);
}
.hero__cta .btn--primary:hover {
  background: var(--cream);
}
.hero__cta .btn--ghost {
  border-color: var(--cream);
  color: var(--cream);
}
.hero__cta .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.hero__scroll {
  position: absolute;
  bottom: 120px;
  left: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(246, 237, 228, 0.55);
  z-index: 4;
}
.hero__scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--honey), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--cream);
  animation: scrollIndicator 2.4s ease-in-out infinite;
}
@keyframes scrollIndicator {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}
.drip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}

/* ─── STORY ─── */
.story {
  padding: var(--space-xxl) var(--pad-x);
  background: var(--cream);
  position: relative;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
}
.story__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}
.story__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.story__title em {
  font-style: italic;
  color: var(--honey-deep);
}
.story__divider {
  margin-top: var(--space-l);
  width: 80px;
  height: 1px;
  background: var(--ink);
  position: relative;
}
.story__divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--honey);
  border-radius: 50%;
}
.story__copy {
  font-size: 1.1rem;
  line-height: 1.7;
}
.story__copy p {
  margin: 0 0 var(--space-m);
  color: var(--ink-soft);
}
.story__copy p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  float: left;
  line-height: 0.85;
  margin: 0.2rem 0.8rem -0.3rem 0;
  color: var(--honey-deep);
  font-style: italic;
}
.story__copy blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1.35;
  color: var(--ink);
  margin: var(--space-l) 0;
  padding-left: var(--space-m);
  border-left: 2px solid var(--honey);
  position: relative;
}
.story__copy .quote-mark {
  position: absolute;
  left: -0.5rem;
  top: -2rem;
  font-size: 5rem;
  color: var(--honey);
  font-family: var(--font-display);
  line-height: 1;
}

/* ─── HONEY (product) ─── */
.honey {
  padding: var(--space-xxl) var(--pad-x);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.honey::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.15), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(217, 164, 65, 0.1), transparent 50%);
  pointer-events: none;
}
.honey__intro {
  max-width: var(--max-w);
  margin: 0 auto var(--space-xl);
  position: relative;
}
.honey__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.honey__title em {
  font-style: italic;
  color: var(--honey);
}
.honey__cards {
  max-width: var(--max-w);
  margin: 0 auto var(--space-xxl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  position: relative;
}
.card {
  padding: var(--space-l) var(--space-m);
  border: 1px solid rgba(246, 237, 228, 0.15);
  border-radius: 4px;
  position: relative;
  background: rgba(246, 237, 228, 0.02);
  transition: all 0.4s ease;
}
.card:hover {
  background: rgba(217, 164, 65, 0.05);
  border-color: rgba(217, 164, 65, 0.3);
  transform: translateY(-4px);
}
.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--honey);
  line-height: 1;
  margin-bottom: var(--space-m);
  font-weight: 300;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0 0 var(--space-s);
  letter-spacing: -0.01em;
}
.card__body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 237, 228, 0.75);
  margin: 0;
}

/* Jar showcase */
.jar-showcase {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  border-radius: 8px;
}
.jar-showcase__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(217, 164, 65, 0.2), transparent 60%);
  will-change: transform;
}
.jar-showcase__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
}
.jar-showcase__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.jar {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(217, 164, 65, 0.3));
  animation: jarBob 6s ease-in-out infinite;
}
@keyframes jarBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.jar-showcase__copy h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-m);
}
.jar-showcase__copy > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(246, 237, 228, 0.8);
  margin: 0 0 var(--space-l);
  max-width: 540px;
}
.specs {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-l);
  max-width: 480px;
}
.specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-s) 0;
  border-bottom: 1px solid rgba(246, 237, 228, 0.1);
  font-size: 0.95rem;
}
.specs li span:first-child {
  color: rgba(246, 237, 228, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}
.specs li span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}
.jar-showcase__copy .btn--primary {
  background: var(--honey);
  color: var(--ink);
}
.jar-showcase__copy .btn--primary:hover {
  background: var(--cream);
}

/* ─── HIVE / steps ─── */
.hive {
  padding: var(--space-xxl) var(--pad-x);
  background: var(--olive);
  color: var(--cream);
  position: relative;
}
.hive__intro {
  max-width: var(--max-w);
  margin: 0 auto var(--space-xl);
}
.hive__intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.hive__intro em {
  font-style: italic;
  color: var(--honey-pale);
}
.hive__steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.hive__steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--honey) 10%, var(--honey) 90%, transparent);
  opacity: 0.4;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-m);
  padding: var(--space-l) 0;
  position: relative;
  align-items: start;
}
.step__num {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--honey);
  background: var(--olive);
  z-index: 1;
}
.step__num svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.step__num span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.step__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.step__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(246, 237, 228, 0.75);
  margin: 0;
  max-width: 600px;
}

/* ─── NOTES ─── */
.notes {
  padding: var(--space-xxl) var(--pad-x);
  background: var(--cream);
  position: relative;
}
.notes__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.notes h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-xl);
}
.notes h2 em {
  font-style: italic;
  color: var(--honey-deep);
}
.notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
.note {
  padding: var(--space-l) var(--space-m);
  background: var(--cream-warm);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.note:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(26, 18, 8, 0.15);
}
.note__season {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--honey-deep);
  margin-bottom: var(--space-s);
}
.note h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-s);
}
.note p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ─── FAQ ─── */
.faq {
  padding: var(--space-xxl) var(--pad-x);
  background: var(--ink);
  color: var(--cream);
}
.faq__intro {
  max-width: var(--max-w);
  margin: 0 auto var(--space-xl);
}
.faq__intro h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.faq__intro em {
  font-style: italic;
  color: var(--honey);
}
.faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.faq__list details {
  border-bottom: 1px solid rgba(246, 237, 228, 0.15);
  padding: var(--space-m) 0;
  cursor: pointer;
}
.faq__list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--honey); }
.faq__plus {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}
.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s;
}
.faq__plus::after { transform: rotate(90deg); }
.faq__list details[open] .faq__plus::after { transform: rotate(0); }
.faq__list details p {
  margin: var(--space-m) 0 var(--space-s);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(246, 237, 228, 0.75);
  max-width: 760px;
  animation: faqOpen 0.5s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--space-xxl) var(--pad-x);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 164, 65, 0.18), transparent 50%),
    var(--cream);
  position: relative;
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-m);
}
.contact h2 em {
  font-style: italic;
  color: var(--honey-deep);
}
.contact__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 var(--space-xl);
  color: var(--ink-soft);
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--olive);
  font-weight: 500;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 18, 8, 0.15);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--honey);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.contact__form .btn--primary {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--ink);
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-style: italic;
  color: var(--olive);
}
.contact__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
  padding-top: var(--space-l);
  border-top: 1px solid rgba(26, 18, 8, 0.15);
}
.contact__meta .meta-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact__meta p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
}
.contact__meta a:hover { color: var(--honey-deep); }

/* ─── FOOTER ─── */
.footer {
  padding: var(--space-l) var(--pad-x);
  background: var(--ink);
  color: var(--cream);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-l);
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}
.footer__brand svg {
  width: 36px;
  height: 36px;
  color: var(--honey);
  flex-shrink: 0;
}
.footer__brand p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
}
.footer__note {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(246, 237, 228, 0.6);
  margin: 0;
  max-width: 520px;
}
.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246, 237, 228, 0.4);
  margin: 0;
  white-space: nowrap;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .story__sticky { position: static; }
  .honey__cards { grid-template-columns: 1fr; }
  .jar-showcase__content { grid-template-columns: 1fr; gap: var(--space-l); }
  .jar-showcase__visual { order: -1; }
  .notes__grid { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}

@media (max-width: 768px) {
  :root {
    --space-xxl: 7rem;
    --space-xl: 5rem;
    --space-l: 2.5rem;
  }
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .hero__scroll { display: none; }
  .bee { width: 36px; }
  .bee--1 { left: 5%; top: 12%; }
  .bee--2 { right: 5%; top: 55%; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr; gap: var(--space-m); }
  .story__copy { font-size: 1rem; }
  .story__copy blockquote { font-size: 1.35rem; padding-left: 1rem; }
  .faq__list summary { font-size: 1.15rem; }
  .step { grid-template-columns: 56px 1fr; gap: var(--space-s); }
  .step__num { width: 56px; height: 56px; }
  .step__num span { font-size: 1.2rem; }
  .hive__steps::before { left: 28px; }
  .jar { width: 240px; }
}

@media (max-width: 1024px), (max-height: 760px) {
  .hero__scroll { display: none; }
}

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