/* RussBee — painted barn-label design system
   Mirror of busybeehoney.com styling. Flat color blocks, mega serif display,
   pill CTAs, cornflower marquee bands. No drop shadows. */
:root {
  --cocoa: #3B2E3E;
  --cocoa-deep: #2A2130;
  --cream: #F7F2F8;
  --cream-soft: #EFE7F1;
  --charcoal: #291F2E;
  --gold: #D9A441;
  --gold-deep: #B98A2E;
  --blue: #A9B7D9;
  --sage: #9CAF88;
  --hairline: 1px solid rgba(59, 46, 62, .22);
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; overflow-x: hidden; }
body {
  font-family: var(--body);
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--barn); }
section { scroll-margin-top: 78px; }
.wrap { margin: 0 auto; padding: 0 28px; }
::selection { background: var(--gold); color: var(--cream); }

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--body);
  font-size: .74rem; font-weight: 800;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--barn);
}
.mega {
  font-family: var(--display);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -0.012em;
  font-size: clamp(2.6rem, 8.5vw, 6.5rem);
  overflow-wrap: break-word;
}
.mega--cream { color: var(--cream); }
.mega--cocoa { color: var(--cocoa); }
.subdisplay {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.008em;
}
.lede { font-size: 1.04rem; color: var(--cocoa); max-width: 60ch; }
.lede--cream { color: #EDE0C3; }
.lede--gold { color: rgba(59, 46, 62, .86); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--cocoa-deep);
  border-bottom: 1px solid rgba(213, 203, 222, .14);
}
.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 64px; position: relative;
  padding-inline: 15px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; white-space: nowrap; }
.brand__mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand__name {
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: .02em; color: var(--cream);
  white-space: nowrap; flex-shrink: 0;
}
.brand__name em { font-style: normal; color: var(--gold); }
.nav { display: flex; align-items: center; gap: 12px; }
.waiting-cta {
  font-size: .76rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--cream);
  background: var(--gold);
  padding: 9px 18px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.waiting-cta:hover, .waiting-cta:focus { box-shadow: 0 0 0 3px rgba(255, 202, 80, .35); }
.waiting-cta.active { background: #ffda7a; box-shadow: 0 0 0 3px rgba(255, 202, 80, .35); }
.nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; width: 42px; height: 42px; padding: 0 8px;
  border: 1px solid rgba(213, 203, 222, .28); border-radius: 12px;
  background: transparent; cursor: pointer;
}
.nav__toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav__bar { width: 20px; height: 2px; border-radius: 2px; background: var(--cream); transition: transform .2s ease, opacity .2s ease; }
.site-nav.is-open .nav__toggle { border-color: rgba(255, 202, 80, .55); }
.site-nav.is-open .nav__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.site-nav.is-open .nav__bar:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }
.main-nav {
  position: absolute;   top: calc(100% + 8px); right: 0;
  width: auto; min-width: max-content; max-width: 84vw;
  background: var(--cocoa-deep);
  border: 1px solid rgba(213, 203, 222, .18);
  border-radius: 16px; padding: 6px;
  list-style: none;
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  transform-origin: top right;
  opacity: 0; transform: scale(.96); visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.site-nav.is-open .main-nav { opacity: 1; transform: scale(1); visibility: visible; }
.main-nav a {
  display: block; width: 100%; box-sizing: border-box;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--cream);
  padding: 11px 12px; border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover, .main-nav a:focus { color: var(--cream); background: var(--gold); }
.main-nav a.active { color: var(--cream); background: var(--gold); }

/* ---------- Marquee band ---------- */
.marquee { overflow: hidden; background: var(--blue); border-block: 1px solid rgba(42,33,48,.25); }
.marquee__track {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 14px 0;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--display); font-weight: 700;
  font-size: 1.15rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--cocoa); padding: 0 22px;
}
.marquee__track .bee { width: 18px; height: 18px; color: var(--cocoa); flex: 0 0 auto; margin: 0 6px; }
.marquee__track .bee--hf { width: 24px; height: 19px; }

/* Keep leaf text above the decorative vines/ornaments */
.hero__tag, .hero h1, .hero__sub, .hero__seal, .hero__price-ribbon,
.sec .kicker, .sec h1, .sec h2, .sec h3, .sec .subdisplay, .sec .lede, .sec p, .sec a, .sec li,
.cta-band h1, .cta-band p, .cta-band a,
.site-footer h2, .site-footer h3, .site-footer h4, .site-footer p, .site-footer a, .site-footer li {
  position: relative; z-index: 2;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cocoa);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px 0 0;
}
.hero__inner { position: relative; padding-bottom: 0; }
.hero__scrim { position: absolute; inset: 0; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(255,202,80,.45);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__tag .bee { width: 15px; height: 15px; }
.hero h1 { margin-bottom: 18px; text-wrap: balance; }
.hero__sub { color: #d9cfe0; font-size: 1.02rem; max-width: 54ch; margin: 0 auto 34px; }
.hero__seal {
  --seal: var(--gold);
  width: 132px; height: 132px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--seal); color: var(--cocoa);
  font-weight: 800; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; line-height: 1.3; padding: 26px 6px 25px 11px; box-sizing: border-box;
  margin: 0 auto 26px;
  cursor: pointer;
  text-decoration: none;
}
.hero__product {
  margin: 0 auto; width: min(430px, 78%);
}
.hero__product a {
  display: block; text-decoration: none; color: inherit;
}
.hero__product img {
  width: 100%; height: auto; object-fit: cover;
  aspect-ratio: 2 / 3;
  cursor: pointer;
}
.hero__price-ribbon {
  background: var(--gold); color: var(--cocoa);
  display: inline-block;
  font-family: var(--display); font-weight: 700;
  font-size: 1rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 22px; margin-top: -20px;
}

/* ---------- Sections ---------- */
.sec { padding: 76px 0; }
.sec--gold { background: var(--gold); }
.sec--cream { background: var(--cream); }
.sec--dash { padding-top: 40px; }
.sec--cocoa { background: var(--cocoa); }
.sec--cocoa .lede { color: #d9cfe0; }
.sec--charcoal { background: var(--charcoal); color: var(--cream); }
.sec-head { margin-bottom: 40px; }
.sec-head .kicker { display: block; margin-bottom: 12px; }
.sec-head .subdisplay { margin-bottom: 14px; }
.sec-head .lede { margin-top: 6px; }

/* ---------- Buttons / pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body);
  font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border-radius: 1000px; border: 1px solid transparent;
  padding: 6px 16px;
  transition: background .15s ease, color .15s ease, border-color .15s ease, opacity .15s;
}
.btn svg { width: 15px; height: 15px; }
.btn--gold { background: var(--gold); color: var(--cocoa); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--dark { background: var(--cocoa); color: var(--cream); }
.btn--dark:hover { background: var(--cocoa-deep); }
.btn--cream { background: var(--cream); color: var(--cocoa); }
.btn--cream:hover { background: #fff; }
.btn--ghost-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--ghost-gold:hover { background: var(--gold); color: var(--cocoa); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Product tiles ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px)); gap: 22px; justify-content: center; max-width: 1160px; margin: 0 auto; }
.product-tile {
  background: var(--cream);
  border: 1px solid rgba(42,33,48,.2);
  display: flex; flex-direction: column;
}
.product-tile__img-wrap { overflow: hidden; }
.product-tile__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-tile__img--portrait { aspect-ratio: 3/4; }
.product-tile__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-tile__name { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.product-tile__size { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--barn); }
.product-tile__price { font-family: var(--display); font-weight: 900; font-size: 1.9rem; margin: 8px 0 2px; }
.product-tile__price small { font-family: var(--body); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(42,33,48,.6); }
.stepper { display: inline-flex; align-items: center; border: 1px solid rgba(42,33,48,.4); border-radius: 999px; overflow: hidden; }
.stepper button {
  width: 40px; height: 40px; border: none; background: transparent; color: var(--cocoa);
  font-size: 1.2rem; font-weight: 800; cursor: pointer; line-height: 1;
  transition: background .15s ease, color .15s ease;
}
.stepper button:hover { background: var(--cocoa); color: var(--cream); }
.stepper input {
  width: 58px; height: 40px; border: none; text-align: center;
  padding: 0 4px; box-sizing: border-box;
  font-family: var(--body); font-weight: 800; font-size: 1rem; color: var(--cocoa);
  background: transparent; -moz-appearance: textfield; appearance: textfield;
}
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.stepper .qty-input, .stepper .wl_qty_field { padding: 0 !important; }
.tile-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.tile-total { font-weight: 800; font-size: .92rem; }

/* ---------- Order summary ---------- */
.summary-panel { background: var(--cocoa); color: var(--cream); padding: 34px 36px; margin-top: 40px; }
.summary-panel .kicker { color: var(--gold); margin-bottom: 10px; }
.summary-lines { list-style: none; margin: 14px 0 18px; }
.summary-lines li { display: flex; justify-content: space-between; gap: 16px; font-size: .95rem; padding: 7px 0; border-bottom: 1px solid rgba(213,203,222,.16); }
.summary-lines li:last-child { border-bottom: none; }
.summary-lines .q { font-weight: 700; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-top: 2px solid var(--gold); padding-top: 16px; }
.summary-total .amt { font-family: var(--display); font-weight: 900; font-size: 2rem; color: var(--gold); }
.summary-total .note { font-size: .82rem; color: #b9ab90; }

/* ---------- Two-col story ---------- */
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; }
.story-grid > figure { overflow: hidden; }
.story-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story-grid figure.portrait img { aspect-ratio: 3/4; }
.story-list { list-style: none; margin: 20px 0 26px; display: grid; gap: 12px; }
.story-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.story-list .hex { width: 18px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--barn); }
.story-cta-row { grid-column: 1 / -1; display: flex; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: var(--hairline); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: 1.02rem; font-weight: 800; color: var(--cocoa);
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--barn); transition: transform .2s ease; }
.faq__item.is-open .faq__q::after { content: "\2013"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 4px 22px; color: rgba(42,33,48,.82); max-width: 62ch; }

/* ---------- Waitlist form ---------- */
.signup-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--cream); border: 1px solid rgba(42,33,48,.2); padding: 44px 46px; }
.form-card h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); line-height: .95; letter-spacing: -.01em; margin-bottom: 8px; }
.form-card .form-lede { margin-bottom: 30px; max-width: 56ch; }
.field { margin-bottom: 20px; }
.field > label { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.field .req { color: var(--barn); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="password"], .field select, .field textarea {
  width: 100%; border: 1px solid rgba(42,33,48,.3); background: #fff;
  font-family: var(--body); font-size: 1rem; color: var(--cocoa);
  padding: 14px 16px; border-radius: 8px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--barn);
  box-shadow: 0 0 0 3px rgba(160,52,42,.14);
}
.field-hint { display: block; font-size: .74rem; color: rgba(42,33,48,.6); font-weight: 600; margin-top: 6px; }

/* loading spinner + saved pill */
.spinner { text-align: center; font-size: .95rem; color: rgba(42,33,48,.6); padding: 24px 0; font-weight: 600; }
.pill { display: inline-block; border-radius: 999px; padding: 8px 14px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pill.saved { background: #e6f0e0; border: 1px solid #a9c49a; color: #27401d; }
.btn--ghost { border-color: rgba(42,33,48,.5); color: var(--cocoa); background: transparent; }
.btn--ghost:hover { background: var(--cocoa); color: var(--cream); }
.btn--danger { border: 1px solid var(--barn); background: var(--cocoa); color: var(--cream); }
.btn--danger:hover { background: var(--cocoa-deep); }

#wl-body input[type="number"] { width: 56px; padding: 5px 7px; font: inherit; border: 1px solid rgba(42,33,48,.3); border-radius: 6px; }
.sku-cell .qty-adj, .sku-cell .qty-fill { display: inline-block; vertical-align: top; }
.sku-cell .qty-adj { margin-right: 8px; }
.sku-cell .qty-fill input { border-color: #c9a227; background: #fffdf4; }
.sku-cell .qty-fill { margin-left: 8px; border-left: 1px solid rgba(42,33,48,.3); padding-left: 8px; }
.sku-cell { text-align: center; }
.sku-cell .qty-adj, .sku-cell .qty-fill { text-align: left; }
.sku-cell .sku-sub { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; color: rgba(42,33,48,.55); }
.sku-sub .ordered { display: inline-block; width: 56px; margin-right: 8px; }
.sku-sub .tofill { display: inline-block; width: 56px; color: #9a7a14; border-left: 1px solid rgba(42,33,48,.3); padding-left: 8px; }
.fill-cell { text-align: center; }
.fill-cell .sel-chk { width: auto; transform: scale(1.2); }
table.pick { width: 100%; border-collapse: collapse; margin-top: 6px; }
table.pick th, table.pick td { text-align: left; padding: 6px 10px; border-bottom: 1px solid rgba(42,33,48,.15); }


.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* radio pills */
.choice { display: flex; flex-wrap: wrap; gap: 10px; }
.choice label {
  position: relative; cursor: pointer;
  border: 1px solid rgba(42,33,48,.35); border-radius: 999px;
  padding: 11px 18px; font-size: .86rem; font-weight: 700;
  letter-spacing: .06em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.choice label:hover { border-color: var(--cocoa); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice input:checked + span { font-weight: 800; }
.choice:has(input:checked) { /* decorative */ }
.choice label:has(input:checked) { background: var(--cocoa); border-color: var(--cocoa); color: var(--cream); }
.choice label:has(input:checked)::after {
  content: ""; position: absolute; inset: -6px; border: 2px solid var(--gold); border-radius: 999px; pointer-events: none;
}

/* product order rows */
.order-list { list-style: none; display: grid; gap: 12px; margin: 14px 0 24px; }
.order-row { display: flex; gap: 16px; align-items: center; border: 1px solid rgba(42,33,48,.2); background: #fff; padding: 12px 16px; }
.order-row__info { flex: 1; min-width: 0; }
.order-row__info b { display: block; font-size: .98rem; }
.order-row__info small { color: rgba(42,33,48,.62); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.order-row__tot { font-weight: 800; white-space: nowrap; min-width: 84px; text-align: right; }
.order-row .stepper input { height: 36px; width: 40px; }
.order-row .stepper button { width: 34px; height: 36px; }

.outstanding-card { border: 2px solid var(--gold); background: #fffdf4; border-radius: 12px; padding: 18px 20px; margin: 18px 0 4px; display: flex; flex-direction: column; gap: 4px; }
.outstanding__label { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(42,33,48,.6); }
.outstanding__num { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem,6vw,3.2rem); line-height: 1; color: var(--cocoa); }
.outstanding__unit { font-family: var(--font-body, Inter, sans-serif); font-weight: 700; font-size: 1rem; color: rgba(42,33,48,.7); }
.outstanding__hint { font-size: .82rem; color: rgba(42,33,48,.7); }

.confirm-info { border: 1px solid rgba(42,33,48,.2); background: #fff; border-radius: 10px; padding: 12px 16px; margin: 14px 0 16px; }
.confirm-info__row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; }
.confirm-info__row + .confirm-info__row { border-top: 1px solid rgba(42,33,48,.1); }
.confirm-info__k { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(42,33,48,.55); padding-top: 2px; }
.confirm-info__v { font-weight: 700; text-align: right; word-break: break-word; }

/* notices */
.notice { display: none; border-radius: 10px; font-size: .95rem; padding: 16px 20px; margin-bottom: 24px; }
.notice.ok { background: #e6f0e0; border: 1px solid #a9c49a; color: #27401d; }
.notice.err { background: #f8e8e6; border: 1px solid #d6a6a0; color: #6d2f2f; }
.notice.ok a, .notice.err a { color: inherit; text-decoration: underline; }

/* contact info block */
.contact-info { background: var(--cocoa); color: var(--cream); padding: 40px 42px; }
.contact-info h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 700; margin-bottom: 18px; }
.contact-info .ci-block { margin-bottom: 24px; }
.contact-info .ci-label { font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-info .ci-value { font-size: .97rem; color: #d9cfe0; }
.contact-info a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* contact sidebar */
.contact-side { background: var(--cocoa); color: #d9cfe0; padding: 40px 42px; align-self: start; }
.contact-side .kicker { margin-bottom: 10px; }
.contact-side h3 { font-family: var(--display); font-size: 1.7rem; font-weight: 900; line-height: .95; color: var(--cream); margin-bottom: 16px; }
.contact-side p { font-size: .97rem; line-height: 1.6; }
.contact-side ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 12px; }
.contact-side li { font-size: .97rem; }
.contact-side li a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

/* ---------- Wildflower ornaments ---------- */
.vine {
  position: fixed; top: 0; bottom: 0; width: 130px;
  height: 100vh;
  pointer-events: none; z-index: 5; color: var(--sage);
  overflow: visible;
}
.vine--left  { left: -12px; opacity: .8; }
.vine--right { right: -12px; opacity: .8; }
.vine .stem { fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; }
.vine .leaf-p { fill: rgba(156,175,136,.42); stroke: rgba(59,46,62,.4); stroke-width: 1; }

.orn{ pointer-events: none; position: absolute; z-index: 1; }
.orn svg{ display: block; width: 100%; height: 100%; overflow: visible; }
.orn .line{ fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.orn .soft{ fill: var(--soft, rgba(169,183,217,.38)); }
.orn .core{ fill: var(--gold); }
.orn .tub{ fill: var(--tub, #F3D68E); }
.orn .tub-line{ fill: none; stroke: rgba(59,46,62,.45); stroke-width: 1.4; stroke-linejoin: round; }
.orn .dot{ fill: currentColor; }
.orn--lavender { color: #8F83B8; --soft: rgba(143,131,184,.4); }
.orn--rose     { color: #C08CA0; --soft: rgba(192,140,160,.45); }
.orn--butter   { color: #B98A2E; --soft: rgba(217,164,65,.4); }
.orn--sage     { color: #7C9068; --soft: rgba(156,175,136,.4); }

.orn-fig{ position: relative; z-index: 1; }
figure.orn-fig > img, figure.orn-fig > a{ position: relative; z-index: 1; }

.hero .orn{
  --soft: rgba(217,164,65,.22);
  --tub: #EFCB6A;
}
.hero .orn--lavender{ color: #BFB4E0; --soft: rgba(191,180,224,.3); }
.hero .orn--rose{ color: #E3AFC0; --soft: rgba(227,175,192,.3); }
.hero .orn--butter{ color: #EDC86E; --soft: rgba(237,200,110,.32); }
.hero .orn--sage{ color: #A9BC97; --soft: rgba(169,188,151,.3); }

.orn-hero-jasmine{ top: 30px; right: -70px; width: 96px; rotate: 18deg; }
.orn-hero-daisy{ top: 150px; left: -74px; width: 82px; rotate: -12deg; }
.orn-hero-gerbera{ bottom: 120px; right: -62px; width: 72px; rotate: 32deg; }

.orn-hero-bee-1{ top: 24px; left: 4%; width: 64px; rotate: -8deg; z-index: 6; }
.orn-hero-bee-2{ top: 96px; right: 5%; width: 52px; transform: scaleX(-1) rotate(10deg); z-index: 6; }
.orn-hero-bee-3{ top: 14px; left: 30%; width: 46px; rotate: 4deg; z-index: 6; }

.story-grid > figure.orn-fig{ overflow: visible; }
.story-grid .orn{
  --soft: rgba(217,164,65,.14);
  --tub: #E5BB55;
}
.story-grid .orn--lavender{ color: #CFC2E4; --soft: rgba(207,194,228,.24); }
.story-grid .orn--sage{ color: #AEBEA0; --soft: rgba(174,190,160,.22); }
.orn-story-sun{ top: -42px; left: 50%; width: 122px; translate: -50% 0; }
.orn-story-daisy{ bottom: -34px; right: -30px; width: 92px; rotate: -16deg; }

.cta-band .orn{
  --soft: rgba(217,164,65,.16);
  --tub: #E0B455;
}
.cta-band .orn--lavender{ color: #C9BFE8; --soft: rgba(201,191,232,.2); }
.cta-band .orn--rose{ color: #D8A6B8; --soft: rgba(216,166,184,.2); }
.orn-cta-daisy{ top: 44px; left: 60px; width: 104px; rotate: -10deg; opacity: .9; }
.orn-cta-jasmine{ bottom: 40px; right: 64px; width: 92px; rotate: 22deg; opacity: .9; }

@media (max-width: 980px) {
  .vine { width: 74px; }
  .vine--right { display: none; }
  .vine--left { left: -16px; }
  .hero__inner, .sec .wrap, .cta-band .wrap, .site-footer .wrap { padding-inline: 113px; }
  .hero__product { width: min(380px, 92%); }
  .orn-hero-jasmine, .orn-hero-daisy, .orn-hero-gerbera { width: 52px; }
  .orn-hero-jasmine{ right: -26px; top: 18px; }
  .orn-hero-daisy{ left: -30px; top: 96px; }
  .orn-hero-gerbera{ right: -22px; bottom: 70px; }
  .orn-story-sun{ width: 84px; top: -30px; }
  .orn-story-daisy{ width: 62px; right: -14px; bottom: -24px; }
  .orn-cta-daisy, .orn-cta-jasmine{ width: 62px; opacity: .7; }
  .orn-cta-daisy{ left: 24px; top: 26px; }
  .orn-cta-jasmine{ right: 26px; bottom: 24px; }
}
/* Desktop: pull text inward so it clears the side vines */
@media (min-width: 981px) {
  .hero__inner, .sec > .wrap, .cta-band > .wrap, .site-footer .wrap {
    padding-inline: clamp(95px, 8.5vw, 147px);
  }
  /* stable scrollbar-gutter reserves ~15px on the right; nav offset clears it */
  .main-nav { right: -15px; }
}
/* Mobile: no browser scrollbar; reclaim the reserved gutter */
@media (max-width: 980px) {
  html { scrollbar-width: none; scrollbar-gutter: auto; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; }
}

/* ---------- Meadow band ---------- */
.meadow-band {
  position: relative;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(156,175,136,.18) 100%);
}
.mead { position: absolute; }
.mead-ground { left: 0; right: 0; bottom: -6px; width: 100%; height: 90px; }
.mead-hive-l { left: 3%; bottom: 16px; width: 104px; }
.mead-hive-r { right: 3.5%; bottom: 16px; width: 110px; }
.mead-bee-1 { left: 22%; top: 14%; width: 64px; }
.mead-bee-2 { left: 47%; top: 34%; width: 52px; }
.mead-bee-3 { left: 70%; top: 10%; width: 58px; }
.mead-fl-1 { left: 10%; bottom: 2px; width: 56px; }
.mead-fl-2 { left: 29%; bottom: 0; width: 52px; }
.mead-fl-3 { left: 45%; bottom: 0; width: 66px; }
.mead-fl-4 { left: 62%; bottom: 0; width: 52px; }
.mead-fl-5 { left: 79%; bottom: 0; width: 60px; }
.mead-fl-6 { left: 90%; bottom: 2px; width: 46px; }
@media (max-width: 980px) {
  .meadow-band { height: 110px; }
  .mead-hive-l { width: 74px; }
  .mead-hive-r { width: 78px; }
  .mead-bee-1 { width: 48px; top: 12%; }
  .mead-bee-2 { width: 40px; }
  .mead-bee-3 { display: none; }
  .mead-fl-3, .mead-fl-6 { display: none; }
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; background: var(--charcoal); color: var(--cream); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .3;
  background-image: url("/images/cta-honeycomb.jpg"); background-size: cover; background-position: center; filter: grayscale(.3);
}
.cta-band .wrap { position: relative; padding-top: 92px; padding-bottom: 92px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cocoa-deep); color: #cfc4d6; }
.site-footer .wrap { padding: 52px 28px 34px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: #cfc4d6; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand__name { color: var(--cream); }
.site-footer .credits { font-size: .8rem; color: rgba(206,194,215,.55); line-height: 1.5; }
.site-footer .bottom { grid-column: 1 / -1; border-top: 1px solid rgba(213,203,222,.14); padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .82rem; color: rgba(206,194,215,.55); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .orn-hero-bee-1 { width: 48px; left: 2%; }
  .orn-hero-bee-2 { width: 40px; right: 2%; }
  .orn-hero-bee-3 { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { gap: 10px; }
  .waiting-cta { padding: 8px 15px; font-size: .72rem; }
  .brand__name { font-size: 1.02rem; }
  .sec { padding: 48px 0; }
  .sec--dash { padding-top: 5px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero__inner, .sec .wrap, .cta-band .wrap, .site-footer .wrap { padding-inline: 51px; }
  .form-card { padding: 20px 14px; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .summary-panel { padding: 26px 20px; }
  .hero__product { width: min(340px, 84%); }
  .hero__seal { width: 116px; height: 116px; padding: 22px 6px 21px 10px; }
  .cta-band .wrap { padding-top: 60px; padding-bottom: 60px; }
  .contact-info, .contact-side { padding: 30px 24px; }
  .product-tile__body { padding: 18px 18px 20px; }
  .order-row { flex-wrap: wrap; gap: 10px 16px; padding: 12px 14px; }
  .order-row__tot { min-width: auto; }
  .outstanding-card { padding: 16px 16px; }
}
@media (max-width: 480px) {
  .vine { width: 56px; }
  .vine--left { left: -10px; }
  .hero__inner, .sec .wrap, .cta-band .wrap, .site-footer .wrap { padding-inline: 43px; }
  .sec { padding: 40px 0; }
  .btn { padding: 14px 22px; font-size: .76rem; }
  .hero__seal { width: 100px; height: 100px; font-size: .74rem; padding: 18px 5px 17px 9px; }
  .cta-band .wrap { padding-top: 48px; padding-bottom: 48px; }
  .contact-info, .contact-side { padding: 26px 18px; }
  .form-card { padding: 26px 18px; }
  .summary-panel { padding: 22px 16px; }
  .order-row { flex-wrap: wrap; }
  .stepper button { width: 38px; min-height: 40px; }
  .stepper input { min-width: 44px; }
  .product-tile__body { padding: 16px 16px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .main-nav, .nav__bar, .waiting-cta { transition: none; }
}

/* --- action tiers (Save/OK, Cancel, Delete) — site-wide, override admin.css --- */
.btn.act-save {
  background: rgba(59,39,34,.75) !important;
  border: 1px solid rgba(59,39,34,.75) !important;
  color: var(--cream) !important;
}
.btn.act-save:hover, .btn.act-save:focus-visible {
  background: rgba(59,39,34,.9) !important;
  border-color: rgba(59,39,34,.9) !important;
}
.btn.act-cancel {
  background: rgba(138,42,34,.75) !important;
  border: 1px solid rgba(138,42,34,.75) !important;
  color: #fff !important;
}
.btn.act-cancel:hover, .btn.act-cancel:focus-visible {
  background: rgba(138,42,34,.9) !important;
  border-color: rgba(138,42,34,.9) !important;
}
.btn.act-delete {
  background: #8A2A22 !important;
  border: 2px solid #5E1710 !important;
  color: #F5EFE9 !important;
}
.btn.act-delete:hover, .btn.act-delete:focus-visible {
  background: #74221b !important;
  border-color: #4a120c !important;
}
.btn.act-save:disabled, .btn.act-cancel:disabled, .btn.act-delete:disabled {
  background: rgba(59,39,34,.15) !important;
  border-color: rgba(59,39,34,.28) !important;
  color: rgba(59,39,34,.45) !important;
  cursor: not-allowed;
}