/* ============================================================
   Spoon Honey — Brand stylesheet
   Palette: cream #FAF5EB · amber #D98E23 · bright gold #F2B033
            matte black #141110 · foil gold #C6A14B · ink #2A2014
   Type:  Bricolage Grotesque (display) · Instrument Sans (body)
   ============================================================ */

:root {
  --cream: #FAF5EB;
  --cream-2: #F3EAD5;
  --ink: #2A2014;
  --ink-soft: #5C4F38;
  --muted: #8C7B5E;
  --amber: #D98E23;
  --amber-deep: #A65E0F;
  --gold: #F2C464;
  --gold-bright: #F2B033;
  --brown: #8A5A12;
  --brown-deep: #5C3A08;
  --black: #141110;
  --black-2: #1C1712;
  --black-3: #0E0B08;
  --foil: #C6A14B;
  --line: #EDE6D8;
  --maxw: 1200px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brown); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brown-deep); }

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

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #A08A60;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 30px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--gold);
  padding: 16px 34px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(42, 32, 20, .25);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--brown); color: var(--cream); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(42, 32, 20, .25);
  color: var(--ink);
  padding: 16px 30px;
  font-size: 15px;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brown); color: var(--brown); }
.btn-sm { padding: 11px 20px; border-radius: 22px; font-size: 13px; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
  text-align: center;
  padding: 9px 16px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 235, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 32, 20, .08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__links { display: flex; align-items: center; gap: 30px; font-size: 13.5px; font-weight: 500; }
.nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--brown); }
.nav__cta { background: var(--ink); color: var(--gold) !important; padding: 10px 22px; border-radius: 24px; font-weight: 600; }
.nav__cta:hover { background: var(--brown); color: var(--cream) !important; }
.nav__cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 6px;
}
.nav__cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.nav__cart-count.show { transform: scale(1); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__glow--a {
  top: -180px; right: -120px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(242,196,100,.5), rgba(242,196,100,0) 65%);
  animation: shGlow 7s ease-in-out infinite;
}
.hero__glow--b {
  bottom: -220px; left: -160px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(217,142,35,.28), rgba(217,142,35,0) 65%);
  animation: shGlow 9s ease-in-out infinite;
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 84px 32px 96px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
  align-items: center; position: relative;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(138, 90, 18, .3);
  border-radius: 20px; padding: 6px 14px;
  font-size: 11px; letter-spacing: .16em; color: var(--brown);
  margin-bottom: 26px;
}
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); animation: shPulse 2.4s ease-in-out infinite; }
.hero h1 { font-weight: 600; font-size: 68px; line-height: 1.02; letter-spacing: -0.03em; }
.sheen {
  background: linear-gradient(100deg, #A65E0F 20%, #F2C464 40%, #D98E23 60%, #A65E0F 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shSheen 6s linear infinite;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 42ch; margin: 24px 0 0; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 26px; margin-top: 40px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.hero__art { display: flex; justify-content: center; position: relative; min-height: 460px; align-items: center; }
.hero__spoon { position: relative; animation: shFloat 6s ease-in-out infinite; }
.hero__spoon img {
  width: 540px; max-width: 100%;
  -webkit-mask-image: radial-gradient(ellipse 60% 56% at 50% 48%, #000 52%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 56% at 50% 48%, #000 52%, transparent 78%);
}
.hero__shadow {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 22px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42,32,20,.22), transparent 70%);
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; width: max-content; animation: shMarquee 52s linear infinite; }
.marquee__group {
  display: inline-flex; gap: 38px; padding-right: 38px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  letter-spacing: .12em; color: var(--gold);
}
.marquee__group .sep { color: #8F7B4E; }

/* ---------- Section scaffolding ---------- */
/* vertical only — .wrap owns the horizontal gutters on .section.wrap elements */
.section { padding-top: 96px; padding-bottom: 80px; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head h2 { font-weight: 600; font-size: 42px; }
.section__head p { font-size: 15px; color: var(--ink-soft); margin: 14px auto 0; max-width: 56ch; line-height: 1.6; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 38px 30px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(42,32,20,.12); }
.step__icon { width: 96px; height: 96px; border-radius: 50%; background: var(--cream); margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; position: relative; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 10px 0 0; }
.i-disc { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(145deg, #FDFAF2, #F1E7CF); border: 1px solid #E3D8BF; }
.i-peel { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; background: var(--amber); border-radius: 50% 50% 50% 0; animation: shPeel 2.2s ease-in-out infinite; }
.i-swirl { width: 58px; height: 58px; border-radius: 50%; background: conic-gradient(from 0deg, #F2C464, #D98E23, #A65E0F, #D98E23, #F2C464); animation: shSwirl 3.6s linear infinite; box-shadow: inset 0 0 0 7px var(--cream); }
.i-drop { width: 26px; height: 38px; border-radius: 50% 50% 50% 50%/62% 62% 38% 38%; background: linear-gradient(180deg, #F2C464, #B87414); animation: shPulse 2.4s ease-in-out infinite; }

/* ---------- Range ---------- */
.range { background: linear-gradient(180deg, var(--cream), var(--cream-2)); padding: 90px 0 100px; }
.gauge { max-width: 560px; margin: 0 auto 54px; }
.gauge__bar { height: 10px; border-radius: 5px; background: linear-gradient(90deg, #F2C464, #D98E23 50%, #5C3A08); }
.gauge__labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 7px; }
.cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; align-items: stretch; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(42,32,20,.14); }
.card--feature { border: 2px solid var(--amber); }
.card--feature:hover { box-shadow: 0 22px 48px rgba(166,94,15,.2); }
.card--dark { background: linear-gradient(165deg, #1C1712, #0E0B08); border: 1px solid #3A2F18; }
.card--dark:hover { box-shadow: 0 22px 48px rgba(20,17,16,.4); }
.card__top { display: flex; justify-content: space-between; align-items: center; }
.card__name { font-family: var(--font-display); font-weight: 600; font-size: 22px; }
.card__badge { font-size: 11px; font-weight: 700; border-radius: 10px; padding: 3px 11px; white-space: nowrap; }
.badge--everyday { color: var(--ink); background: var(--gold-bright); }
.badge--premium { color: var(--cream); background: var(--amber-deep); }
.badge--reserve { color: var(--black); background: var(--foil); }
.card__use { font-size: 12px; color: var(--muted); margin-top: 4px; }
.card__img { width: 100%; height: 190px; border-radius: 14px; object-fit: cover; margin: 20px 0 22px; background: var(--cream); }
.card__desc { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__price { font-family: var(--font-display); font-weight: 600; font-size: 24px; }
.card__price small { font-family: var(--font-body); font-size: 11.5px; color: var(--muted); font-weight: 400; }
.card--dark .card__name, .card--dark .card__price { color: #F4EDDD; }
.card--dark .card__use, .card--dark .card__price small { color: #8F7B4E; }
.card--dark .card__desc { color: #BFAE8C; }
.add-everyday { background: var(--ink); color: var(--gold); }
.add-everyday:hover { background: var(--brown); color: var(--cream); }
.add-premium { background: var(--amber); color: var(--cream); }
.add-premium:hover { background: var(--amber-deep); }
.add-reserve { background: var(--foil); color: var(--black); }
.add-reserve:hover { background: #E4C876; }
.card__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--cream);
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  border-radius: 12px; padding: 5px 14px;
}
.range__note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 26px; }

/* ---------- Benefits ---------- */
.benefits { padding: 96px 0 90px; background: var(--cream); }
.benefit-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 64px; }
.btier {
  border-radius: 20px; padding: 34px 30px; border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btier:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(42,32,20,.12); }
.btier--reserve { background: linear-gradient(165deg, #1C1712, #0E0B08); border-color: #3A2F18; color: #F4EDDD; }
.btier__mgo {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  color: var(--amber-deep);
}
.btier--reserve .btier__mgo { color: var(--foil); }
.btier__mgo::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: currentColor; }
.btier__name { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin-bottom: 4px; }
.btier__tag { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.btier--reserve .btier__tag { color: #8F7B4E; }
.btier__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 13px; }
.btier__list li { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.btier--reserve .btier__list li { color: #BFAE8C; }
.btier__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-bright);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.btier--premium .btier__list li::before { background: var(--amber); }
.btier--reserve .btier__list li::before { background: var(--foil); }
.btier__best { margin-top: auto; font-size: 12px; letter-spacing: .04em; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); }
.btier--reserve .btier__best { border-top-color: #3A2F18; color: #8F7B4E; }
.btier__best strong { color: var(--ink); font-weight: 600; }
.btier--reserve .btier__best strong { color: #F4EDDD; }

/* Manuka science grid */
.science__head { text-align: center; margin-bottom: 44px; }
.science__head h3 { font-size: 30px; font-weight: 600; }
.science__head p { font-size: 15px; color: var(--ink-soft); max-width: 56ch; margin: 12px auto 0; line-height: 1.6; }
.science { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sci {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.sci:hover { border-color: var(--amber); transform: translateY(-4px); }
.sci__icon { width: 44px; height: 44px; border-radius: 12px; background: #FAF0DC; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--amber-deep); }
.sci__title { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 7px; }
.sci p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.disclaimer { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 34px; max-width: 70ch; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ---------- Why single-serve ---------- */
.why__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.why h2 { font-weight: 600; font-size: 40px; line-height: 1.08; }
.why__lead { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 18px 0 0; max-width: 44ch; }
.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: border-color .25s ease; }
.wcard:hover { border-color: var(--amber); }
.wcard__icon { width: 36px; height: 36px; border-radius: 50%; background: #FAF0DC; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--brown); }
.wcard__t { font-weight: 600; font-size: 15px; }
.wcard__d { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin-top: 5px; }
.dot-ring { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--amber); }
.diamond { width: 14px; height: 14px; background: var(--amber); transform: rotate(45deg); }
.capsule { width: 16px; height: 10px; border-radius: 5px; background: var(--amber); }

/* ---------- Authenticity (dark) ---------- */
.auth { background: linear-gradient(180deg, #1C1712, #0E0B08); padding: 100px 0; position: relative; overflow: hidden; }
.auth__glow { position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(198,161,75,.18), transparent 70%); animation: shGlow 8s ease-in-out infinite; }
.auth__inner { position: relative; }
.auth__head { text-align: center; margin-bottom: 56px; }
.auth__head .eyebrow { color: var(--foil); letter-spacing: .24em; }
.auth__head h2 { font-weight: 600; font-size: 42px; color: #F4EDDD; }
.auth__head p { font-size: 15px; line-height: 1.65; color: #BFAE8C; max-width: 56ch; margin: 16px auto 0; }
.auth__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.acard { border: 1px solid #3A2F18; border-radius: 16px; padding: 28px; background: rgba(244,237,221,.03); transition: border-color .25s ease; }
.acard:hover { border-color: var(--foil); }
.acard__t { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #F4EDDD; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.acard p { font-size: 13px; line-height: 1.6; color: #BFAE8C; margin: 9px 0 0; }
.qr { width: 44px; height: 44px; border: 1.5px solid var(--foil); border-radius: 6px; background: repeating-conic-gradient(var(--foil) 0% 25%, transparent 0% 50%) 0 0/11px 11px; opacity: .85; flex: none; }
.certs { display: flex; justify-content: center; align-items: center; gap: 44px; margin-top: 52px; flex-wrap: wrap; }
.cert-badge {
  height: 84px; width: auto; opacity: .8;
  transition: opacity .25s ease, transform .25s ease;
}
.cert-badge:hover { opacity: 1; transform: translateY(-3px); }

/* ---------- Wholesale ---------- */
.wholesale__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.wholesale__grid > * { min-width: 0; } /* stop the carousel's max-content track widening the column */
.wholesale h2 { font-weight: 600; font-size: 40px; line-height: 1.08; }
.wholesale__lead { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 18px 0 0; max-width: 46ch; }
.tiers { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.tier {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: 14px; padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier:hover { transform: translateX(4px); box-shadow: 0 10px 26px rgba(42,32,20,.1); }
.tier__k { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--brown); min-width: 96px; padding-top: 1px; }
.tier__v { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.5; }
.tier__v span { font-weight: 400; font-size: 12.5px; color: var(--muted); }
.wholesale__banner {
  position: relative; margin-top: 60px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 22px 48px rgba(42,32,20,.16);
}
.wholesale__img { width: 100%; height: 400px; object-fit: cover; display: block; }
.wholesale__banner-caption {
  position: absolute; bottom: 18px; left: 20px;
  background: rgba(42,32,20,.72); color: #F4EDDD; backdrop-filter: blur(6px);
  font-size: 12.5px; letter-spacing: .02em; padding: 9px 18px; border-radius: 22px;
}
.partners { margin-top: 44px; }
.partners__label { font-size: 10px; letter-spacing: .2em; color: #A08A60; margin-bottom: 18px; text-align: center; }
.partners__carousel {
  overflow: hidden; position: relative; max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners__track { display: flex; width: max-content; animation: shMarquee 56s linear infinite; }
.partners__carousel:hover .partners__track { animation-play-state: paused; }
.partners__group { display: flex; gap: 44px; align-items: center; padding-right: 44px; flex: none; }
.partner-logo {
  width: auto; height: 18px; object-fit: contain; flex: none;
  filter: grayscale(1); opacity: .55; transition: opacity .25s ease, filter .25s ease;
}
.partner-logo[src*="skycity"], .partner-logo[src*="coffeeclub"] { height: 42px; }
.partner-logo[src*="qantas"] { height: 14px; }
.partner-logo:hover { opacity: .95; filter: grayscale(0); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: 0 20px 50px rgba(42,32,20,.1); }
.form-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 22px; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form input, .form select {
  border: 1px solid #E3D8BF; border-radius: 10px; padding: 13px 16px;
  font-size: 14px; font-family: var(--font-body); background: #FDFBF5; color: var(--ink); outline: none;
  transition: border-color .2s ease;
}
.form select { color: var(--ink-soft); }
.form input:focus, .form select:focus { border-color: var(--amber); }
.form input.invalid, .form select.invalid { border-color: #C0392B; background: #FDF3F2; }
.form button { padding: 15px; font-size: 15px; }
.form__note { font-size: 11px; color: var(--muted); text-align: center; }
.form__error { font-size: 12px; color: #C0392B; min-height: 0; }

/* ---------- Comparison table ---------- */
.compare { margin-top: 56px; }
.compare__scroll { overflow-x: auto; }
.compare__table {
  width: 100%; min-width: 560px; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  font-size: 13.5px;
}
.compare__table th, .compare__table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare__table thead th {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  background: var(--cream); color: var(--ink);
}
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table td:first-child { font-weight: 600; color: var(--ink); }
.compare__table td { color: var(--muted); }
.compare__table .is-hl { background: #FDF6E4; color: var(--ink-soft); font-weight: 500; }
.compare__table thead .is-hl { background: var(--gold-bright); color: var(--ink); }

/* ---------- Testimonials ---------- */
.quotes { background: linear-gradient(180deg, var(--cream-2), var(--cream)); padding: 96px 0; }
.quotes__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
.quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(42,32,20,.12); }
.quote--feature { border: 2px solid var(--amber); }
.quote__stars { color: var(--gold-bright); font-size: 15px; letter-spacing: 3px; }
.quote blockquote { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.quote figcaption { font-size: 12.5px; color: var(--muted); }
.quote figcaption strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0 24px; transition: border-color .25s ease;
}
.faq__item[open] { border-color: var(--amber); }
.faq__item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 19px 0; font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--amber);
  line-height: 1; transition: transform .25s ease; flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0 0 20px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(165deg, #1C1712, #0E0B08); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 420px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242,196,100,.16), transparent 70%);
  animation: shGlow 8s ease-in-out infinite;
}
.cta-band__inner { position: relative; }
.cta-band h2 { font-weight: 600; font-size: 40px; color: #F4EDDD; }
.cta-band p { font-size: 14px; color: #BFAE8C; margin: 14px 0 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold-bright); color: var(--ink); padding: 16px 34px; font-size: 15px; }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold); }
.btn-outline-light { border: 1.5px solid rgba(244,237,221,.35); color: #F4EDDD; padding: 16px 30px; font-size: 15px; background: transparent; }
.btn-outline-light:hover { transform: translateY(-2px); border-color: var(--foil); color: var(--foil); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); padding: 56px 0 40px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer__blurb { font-size: 12px; color: #B5A683; margin-top: 10px; max-width: 34ch; line-height: 1.6; }
.footer__cols { display: flex; gap: 56px; font-size: 13px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col .h { font-size: 10px; letter-spacing: .16em; color: #8F7B4E; margin-bottom: 2px; }
.footer__col a { color: #EBDFC2; }
.footer__col a:hover { color: var(--gold); }
.footer__bar {
  max-width: var(--maxw); margin: 36px auto 0; padding: 20px 32px 0;
  border-top: 1px solid rgba(244,237,221,.12);
  display: flex; justify-content: space-between; font-size: 11px; color: #8F7B4E; gap: 16px; flex-wrap: wrap;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,17,16,.45);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 90;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--cream); z-index: 100; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(42,32,20,.2);
}
.cart.open { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.cart__close { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; }
.cart__items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart__empty { text-align: center; color: var(--muted); font-size: 14px; padding: 60px 20px; line-height: 1.6; }
.citem { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.citem__img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: #fff; flex: none; }
.citem__body { flex: 1; min-width: 0; }
.citem__name { font-weight: 600; font-size: 14px; }
.citem__meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.citem__qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; border: 1px solid var(--line); border-radius: 20px; padding: 3px 6px; background: #fff; }
.citem__qty button { background: none; border: none; cursor: pointer; font-size: 15px; color: var(--brown); width: 20px; height: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.citem__qty span { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
.citem__price { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.citem__remove { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 11px; margin-top: 6px; padding: 0; text-decoration: underline; }
.cart__foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; font-size: 13px; color: var(--ink-soft); }
.cart__total { display: flex; justify-content: space-between; align-items: baseline; margin: 8px 0 16px; }
.cart__total .l { font-weight: 600; }
.cart__total .v { font-family: var(--font-display); font-weight: 600; font-size: 22px; }
.cart__checkout { width: 100%; padding: 15px; }
.cart__ship { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--gold); padding: 13px 22px; border-radius: 24px;
  font-size: 13.5px; font-weight: 500; box-shadow: 0 14px 34px rgba(42,32,20,.3);
  opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 110;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- Honey cursor click drop ---------- */
.honey-drop {
  position: fixed; z-index: 200; pointer-events: none;
  width: 10px; height: 13px; margin: -4px 0 0 -5px;
  border-radius: 50% 50% 50% 50%/62% 62% 38% 38%;
  background: linear-gradient(180deg, #F2C464, #B87414);
  animation: honeyDropFall .65s cubic-bezier(.3,.1,.6,1) forwards;
}
@keyframes honeyDropFall {
  0%   { transform: translateY(0) scale(.55); opacity: .95; }
  70%  { transform: translateY(22px) scale(1); opacity: .9; }
  100% { transform: translateY(34px) scale(1.05, .6); opacity: 0; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); }
[data-reveal].in { opacity: 1; transform: none; transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }

/* ---------- Keyframes ---------- */
@keyframes shFloat { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-16px) rotate(-6deg); } }
@keyframes shMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shPeel { 0%,100% { transform: rotate(45deg) translate(0,0); } 50% { transform: rotate(45deg) translate(3px,-3px); } }
@keyframes shSwirl { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes shPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes shGlow { 0%,100% { opacity: .55; } 50% { opacity: .9; } }
@keyframes shSheen { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__art { min-height: 340px; order: -1; }
  .hero h1 { font-size: 52px; }
  .why__grid, .wholesale__grid { grid-template-columns: 1fr; gap: 40px; }
  .science { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav__links.open a { padding: 14px 32px; }
  .nav__links.open .nav__cta { margin: 8px 32px; text-align: center; }
  .nav__toggle { display: flex; }
  .steps, .cards, .benefit-tiers, .auth__grid, .quotes__grid { grid-template-columns: 1fr; }
  .why__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero__inner { padding: 56px 20px 64px; }
  .hero h1 { font-size: 42px; }
  .hero__sub { font-size: 17px; }
  .section, .benefits { padding-top: 64px; padding-bottom: 64px; }
  .range { padding: 64px 0; }
  .section__head h2, .why h2, .wholesale h2, .auth__head h2, .cta-band h2 { font-size: 32px; }
  .quotes { padding: 64px 0; }
  .wholesale__banner { margin-top: 40px; }
  .wholesale__img { height: 220px; }
  .wholesale__banner-caption { bottom: 12px; left: 12px; font-size: 11px; padding: 7px 14px; }
  .tier { flex-direction: column; gap: 4px; }
  .science { grid-template-columns: 1fr; }
  .why__cards { grid-template-columns: 1fr; }
  .nav__inner { padding: 14px 20px; }
  .footer__top { flex-direction: column; }
}

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