/* ============================================================
   Honey Labels Redesign · "Apiary Atlas" design system
   Prefix: --hn-  (Atlas No. 12)
   Brand palette: Navy #0033a0 + Champagne Gold #c9a96a
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand core */
  --hn-navy: #0033a0;
  --hn-navy-soft: #1f4dd8;
  --hn-navy-deep: #002280;
  --hn-navy-ink: #001245;
  --hn-gold: #c9a96a;
  --hn-gold-deep: #a8884a;
  --hn-gold-soft: #e3d4ac;
  --hn-gold-pale: #f4ecd4;

  /* Honey atlas accents (atlas-only, anchored to amber + gold family) */
  --hn-amber: #d97b1f;
  --hn-amber-deep: #a85510;
  --hn-amber-pale: #f5c476;
  --hn-nectar: #e8b85c;
  --hn-honey-light: #f0d188;
  --hn-honey-mid: #d9952b;
  --hn-honey-deep: #8a4f0c;
  --hn-comb: #b8862c;
  --hn-hive: #4a2e0c;
  --hn-cream: #fbf4e0;
  --hn-floral: #b94a8c;
  --hn-citrus: #e8c34a;
  --hn-clover: #f0d8a8;

  /* Neutrals */
  --hn-ink: #0f172a;
  --hn-slate-700: #334155;
  --hn-slate-600: #475569;
  --hn-slate-500: #64748b;
  --hn-slate-400: #94a3b8;
  --hn-slate-300: #cbd5e1;
  --hn-slate-200: #e2e8f0;
  --hn-slate-100: #f1f5f9;
  --hn-slate-50: #f8fafc;
  --hn-white: #ffffff;

  /* Status */
  --hn-green: #15803d;
  --hn-green-soft: #dcfce7;
  --hn-red: #b91c1c;
  --hn-red-soft: #fee2e2;
  --hn-amber-warn: #b45309;
  --hn-amber-warn-soft: #fef3c7;

  /* Typography */
  --hn-font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hn-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hn-font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Radius */
  --hn-r-pill: 9999px;
  --hn-r-lg: 20px;
  --hn-r-md: 12px;
  --hn-r-sm: 8px;
  --hn-r-xs: 4px;

  /* Shadows */
  --hn-shadow-soft: 0 2px 8px rgba(0, 31, 99, 0.06), 0 1px 2px rgba(0, 31, 99, 0.04);
  --hn-shadow-medium: 0 8px 24px rgba(0, 31, 99, 0.08), 0 2px 6px rgba(0, 31, 99, 0.06);
  --hn-shadow-sharp: 0 14px 40px rgba(0, 31, 99, 0.12);

  /* Layout */
  --hn-container: 1280px;
  --hn-container-narrow: 880px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--hn-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hn-ink);
  background: var(--hn-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--hn-navy); text-decoration: none; }
a:hover { color: var(--hn-navy-soft); text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: var(--hn-container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--hn-container-narrow); }

/* ---------- HEADER ---------- */
.hn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 51, 160, 0.98);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--hn-white);
}
.hn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--hn-container);
  margin: 0 auto;
}
.hn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hn-white);
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.hn-brand:hover { color: var(--hn-white); text-decoration: none; }
.hn-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--hn-r-xs);
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.04em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.hn-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hn-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--hn-r-sm);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.hn-nav a:hover { background: rgba(255, 255, 255, 0.10); color: var(--hn-white); text-decoration: none; }
.hn-nav a.is-active { color: var(--hn-gold); }
.hn-nav a.hn-nav__cta {
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  font-weight: 700;
  padding: 8px 16px;
  margin-left: 8px;
}
.hn-nav a.hn-nav__cta:hover { filter: brightness(1.08); color: var(--hn-navy-ink); }
.hn-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--hn-white);
  padding: 6px 10px;
  border-radius: var(--hn-r-sm);
  font-size: 18px;
  cursor: pointer;
}

/* ---------- BREADCRUMBS ---------- */
.hn-breadcrumbs {
  background: var(--hn-slate-50);
  border-bottom: 1px solid var(--hn-slate-200);
  padding: 12px 0;
}
.hn-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--hn-slate-600);
}
.hn-breadcrumbs li { display: inline-flex; align-items: center; }
.hn-breadcrumbs li::after {
  content: '/';
  margin-left: 8px;
  color: var(--hn-slate-400);
}
.hn-breadcrumbs li:last-child::after { display: none; }
.hn-breadcrumbs li[aria-current] { color: var(--hn-ink); font-weight: 600; }

/* ---------- EYEBROW ---------- */
.hn-eyebrow {
  display: inline-block;
  font-family: var(--hn-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-navy);
  background: var(--hn-gold-pale);
  padding: 5px 10px;
  border-radius: var(--hn-r-pill);
  margin-bottom: 12px;
}
.hn-eyebrow--inverse { color: var(--hn-gold); background: rgba(255, 255, 255, 0.10); }

/* ---------- SECTION SCAFFOLD ---------- */
.hn-section { padding: 64px 0; }
.hn-section--alt { background: linear-gradient(180deg, var(--hn-slate-50, #f8fafc), #ffffff); }
.hn-section--tight { padding: 36px 0; }
.hn-section-head { text-align: center; max-width: 1080px; margin: 0 auto 36px; }
.hn-section-head h2 {
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--hn-navy-ink);
}
.hn-section-head p {
  margin: 0;
  color: var(--hn-slate-600);
  font-size: 16px;
}

/* ---------- BUTTONS ---------- */
.hn-btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.hn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--hn-r-pill);
  font-family: var(--hn-font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.18s, background 0.18s;
}
.hn-btn:hover { text-decoration: none; transform: translateY(-1px); }
.hn-btn--primary {
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  box-shadow: var(--hn-shadow-soft);
}
.hn-btn--primary:hover { color: var(--hn-navy-ink); box-shadow: var(--hn-shadow-medium); }
.hn-btn--ghost {
  background: transparent;
  color: var(--hn-navy);
  border-color: var(--hn-navy);
}
.hn-btn--ghost:hover { background: var(--hn-navy); color: var(--hn-white); }
.hn-btn--inverse-ghost {
  background: transparent;
  color: var(--hn-white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hn-btn--inverse-ghost:hover { background: rgba(255, 255, 255, 0.10); color: var(--hn-white); }
.hn-btn--lg { padding: 14px 28px; font-size: 16px; }
.hn-btn i { width: 16px; height: 16px; }

/* ============================================================
   HERO + APIARY ATLAS
   ============================================================ */
.hn-hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(201, 169, 106, 0.10), transparent 55%),
    radial-gradient(ellipse at 5% 90%, rgba(0, 51, 160, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff, #fbf7eb);
  overflow: hidden;
}
.hn-hero__inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) {
  .hn-hero__inner { grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
}
.hn-hero__title {
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--hn-navy-ink);
  margin: 14px 0 16px;
}
.hn-hero__title .accent {
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hn-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hn-slate-700);
  margin: 0 0 24px;
  max-width: 560px;
}
.hn-hero__ctas { margin-top: 8px; }

/* ---------- APIARY ATLAS ---------- */
.hn-atlas {
  position: relative;
  background: linear-gradient(180deg, var(--hn-white), var(--hn-cream));
  border: 1px solid var(--hn-gold-soft);
  border-radius: var(--hn-r-lg);
  padding: 24px;
  box-shadow: var(--hn-shadow-sharp);
}
.hn-atlas__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--hn-gold-soft);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hn-atlas__no {
  font-family: var(--hn-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--hn-gold-deep);
  background: var(--hn-gold-pale);
  padding: 4px 10px;
  border-radius: var(--hn-r-pill);
}
.hn-atlas__title {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--hn-navy-ink);
  text-align: center;
  flex: 1 1 220px;
}
.hn-atlas__meta {
  font-family: var(--hn-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hn-slate-500);
}

/* 5 Production Acts */
.hn-atlas__acts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 760px) {
  .hn-atlas__acts { grid-template-columns: repeat(2, 1fr); }
}
.hn-act {
  position: relative;
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 12px 10px 14px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.hn-act:hover { transform: translateY(-2px); box-shadow: var(--hn-shadow-soft); }
.hn-act__no {
  display: block;
  font-family: var(--hn-font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold-deep);
  margin-bottom: 6px;
}
.hn-act__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hn-gold-pale), var(--hn-gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-navy);
}
.hn-act__icon i { width: 18px; height: 18px; }
.hn-act__name {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--hn-navy-ink);
  margin-bottom: 2px;
}
.hn-act__step {
  font-family: var(--hn-font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hn-slate-500);
}
.hn-act__time {
  font-size: 11px;
  color: var(--hn-slate-700);
  margin-top: 4px;
}
.hn-act__time strong { color: var(--hn-amber-deep); font-weight: 700; }

/* Floral Source Spectrum bar */
.hn-atlas__spectrum-block { margin-bottom: 22px; }
.hn-atlas__spectrum-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: var(--hn-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hn-atlas__spectrum-label strong { color: var(--hn-navy-ink); }
.hn-atlas__spectrum-label span { color: var(--hn-slate-500); }
.hn-spectrum__bar {
  position: relative;
  height: 16px;
  border-radius: var(--hn-r-pill);
  background: linear-gradient(90deg,
    #f0d8a8 0%,
    #e8b85c 20%,
    #d9952b 40%,
    #b8862c 60%,
    #a85510 80%,
    #4a2e0c 100%);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(74, 46, 12, 0.12);
}
.hn-spectrum__pins {
  position: relative;
  height: 32px;
  margin-top: 4px;
}
.hn-spectrum__pin {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: var(--hn-slate-700);
  text-align: center;
  white-space: nowrap;
}
.hn-spectrum__pin::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--hn-white);
  border: 2px solid var(--hn-navy);
  border-radius: 50%;
  margin-bottom: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hn-spectrum__pin strong {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--hn-navy-ink);
  display: block;
  margin-top: 1px;
}
.hn-spectrum__scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 8px;
  font-family: var(--hn-font-mono);
  font-size: 9px;
  color: var(--hn-slate-400);
  letter-spacing: 0.1em;
}
.hn-spectrum__scale span { text-align: center; }

/* Pfund Color Scale */
.hn-atlas__pfund-block {
  background: var(--hn-white);
  border: 1px solid var(--hn-gold-soft);
  border-radius: var(--hn-r-md);
  padding: 14px;
  margin-bottom: 22px;
}
.hn-pfund__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 4px;
}
.hn-pfund__head strong {
  font-family: var(--hn-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hn-navy-ink);
}
.hn-pfund__head span {
  font-family: var(--hn-font-mono);
  font-size: 10px;
  color: var(--hn-slate-500);
}
.hn-pfund__bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2px;
  height: 22px;
  border-radius: var(--hn-r-xs);
  overflow: hidden;
  margin-bottom: 8px;
}
.hn-pfund__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hn-font-mono);
  font-size: 9px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.04em;
}
.hn-pfund__seg--ww { background: #fef8dc; }
.hn-pfund__seg--ela { background: #f5d588; }
.hn-pfund__seg--la { background: #e0a23a; }
.hn-pfund__seg--a { background: #b8741c; color: rgba(255, 255, 255, 0.85); }
.hn-pfund__seg--da { background: #6e3e0a; color: rgba(255, 255, 255, 0.85); }
.hn-pfund__scale {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  font-family: var(--hn-font-mono);
  font-size: 9px;
  color: var(--hn-slate-500);
}
.hn-pfund__scale span { text-align: center; }

/* Performance tracks */
.hn-atlas__tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 760px) {
  .hn-atlas__tracks { grid-template-columns: 1fr; }
}
.hn-track {
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 12px;
}
.hn-track__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.hn-track__name {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--hn-navy-ink);
}
.hn-track__score {
  font-family: var(--hn-font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--hn-navy);
}
.hn-track__bar {
  height: 6px;
  background: var(--hn-slate-100);
  border-radius: var(--hn-r-pill);
  overflow: hidden;
}
.hn-track__fill {
  height: 100%;
  border-radius: var(--hn-r-pill);
}
.hn-track__fill--drip { background: linear-gradient(90deg, var(--hn-gold), var(--hn-gold-deep)); width: 96%; }
.hn-track__fill--wash { background: linear-gradient(90deg, var(--hn-navy-soft), var(--hn-navy)); width: 92%; }
.hn-track__fill--fda { background: linear-gradient(90deg, var(--hn-green), #0f5132); width: 98%; }
.hn-track__note {
  display: block;
  font-size: 10px;
  color: var(--hn-slate-500);
  margin-top: 6px;
}

/* Nectar Flow Calendar footer */
.hn-atlas__footer {
  border-top: 1px dashed var(--hn-gold-soft);
  padding-top: 14px;
}
.hn-atlas__footer-label {
  font-family: var(--hn-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hn-slate-500);
  margin-bottom: 8px;
  text-align: center;
}
.hn-atlas__calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 540px) {
  .hn-atlas__calendar { grid-template-columns: repeat(2, 1fr); }
}
.hn-cal {
  background: linear-gradient(135deg, var(--hn-cream), var(--hn-gold-pale));
  border: 1px solid var(--hn-gold-soft);
  border-radius: var(--hn-r-sm);
  padding: 8px 10px;
  text-align: center;
}
.hn-cal__season {
  display: block;
  font-family: var(--hn-font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hn-gold-deep);
  margin-bottom: 2px;
}
.hn-cal__source {
  display: block;
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--hn-navy-ink);
  margin-bottom: 2px;
}
.hn-cal__time {
  display: block;
  font-size: 10px;
  color: var(--hn-slate-600);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.hn-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hn-slate-200);
}
@media (max-width: 760px) {
  .hn-trust { grid-template-columns: repeat(2, 1fr); }
}
.hn-trust__cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hn-trust__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--hn-r-sm);
  background: var(--hn-gold-pale);
  color: var(--hn-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hn-trust__icon i { width: 16px; height: 16px; }
.hn-trust__text { font-size: 13px; line-height: 1.4; }
.hn-trust__text strong {
  display: block;
  font-family: var(--hn-font-display);
  font-weight: 700;
  color: var(--hn-navy-ink);
  margin-bottom: 2px;
}
.hn-trust__text span { color: var(--hn-slate-600); }

/* ============================================================
   GEO QUOTE
   ============================================================ */
.hn-quote {
  position: relative;
  background: linear-gradient(135deg, var(--hn-gold-pale), #ffffff);
  border: 1px solid var(--hn-gold-soft);
  border-left: 4px solid var(--hn-gold);
  border-radius: var(--hn-r-md);
  padding: 26px 28px 26px 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--hn-slate-700);
  margin: 0;
}
.hn-quote::before {
  content: '"';
  position: absolute;
  top: 6px;
  left: 12px;
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--hn-gold);
}
.hn-quote strong { color: var(--hn-navy-ink); }

/* ============================================================
   APPLICATIONS GRID
   ============================================================ */
.hn-grid {
  display: grid;
  gap: 16px;
}
.hn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hn-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hn-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .hn-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hn-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .hn-grid--3, .hn-grid--4, .hn-grid--2 { grid-template-columns: 1fr; }
}
.hn-card {
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 22px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.hn-card:hover {
  transform: translateY(-3px);
  border-color: var(--hn-gold-soft);
  box-shadow: var(--hn-shadow-medium);
}
.hn-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hn-r-sm);
  background: var(--hn-gold-pale);
  color: var(--hn-navy);
  margin-bottom: 12px;
}
.hn-card__icon i { width: 20px; height: 20px; }
.hn-card h3 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--hn-navy-ink);
}
.hn-card p { margin: 0; font-size: 14px; color: var(--hn-slate-600); line-height: 1.55; }
.hn-card__tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--hn-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-gold-deep);
  background: var(--hn-gold-pale);
  padding: 3px 8px;
  border-radius: var(--hn-r-pill);
}

/* ============================================================
   CHALLENGES TABLE
   ============================================================ */
.hn-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--hn-r-md); }
.hn-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  overflow: hidden;
  font-size: 14px;
}
.hn-table thead th {
  background: var(--hn-navy-ink);
  color: var(--hn-white);
  text-align: left;
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.hn-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--hn-slate-200);
  vertical-align: top;
  color: var(--hn-slate-700);
}
.hn-table tbody tr:nth-child(even) td { background: var(--hn-slate-50); }
.hn-table tbody tr:hover td { background: var(--hn-gold-pale); }
.hn-table td.challenge { font-weight: 600; color: var(--hn-navy-ink); }
.hn-table .hn-badge {
  display: inline-block;
  font-family: var(--hn-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--hn-r-pill);
}
.hn-badge--red { color: var(--hn-red); background: var(--hn-red-soft); }
.hn-badge--amber { color: var(--hn-amber-warn); background: var(--hn-amber-warn-soft); }
.hn-badge--navy { color: var(--hn-navy); background: var(--hn-slate-100); }
.hn-badge--green { color: var(--hn-green); background: var(--hn-green-soft); }

/* ============================================================
   MATERIALS TABLE + SWATCHES
   ============================================================ */
.hn-swatch {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: var(--hn-r-sm);
  border: 1px solid var(--hn-slate-300);
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}
.hn-swatch--white-bopp {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(135deg, #ffffff, #e3e8f0);
}
.hn-swatch--white-bopp::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
}
.hn-swatch--clear-bopp {
  background:
    linear-gradient(135deg, rgba(231, 245, 255, 0.85), rgba(255, 255, 255, 0.6)),
    repeating-linear-gradient(45deg, rgba(135, 165, 210, 0.10) 0, rgba(135, 165, 210, 0.10) 2px, transparent 2px, transparent 5px);
  position: relative;
}
.hn-swatch--clear-bopp::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
}
.hn-swatch--kraft {
  background:
    repeating-linear-gradient(45deg, rgba(120, 80, 40, 0.10) 0, rgba(120, 80, 40, 0.10) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(-45deg, rgba(120, 80, 40, 0.06) 0, rgba(120, 80, 40, 0.06) 1px, transparent 1px, transparent 5px),
    linear-gradient(180deg, #c9a878, #a88550);
}
.hn-swatch--white-paper {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(180deg, #ffffff, #f1f1ec);
}
.hn-swatch--textured {
  background:
    repeating-linear-gradient(45deg, rgba(168, 136, 74, 0.10) 0, rgba(168, 136, 74, 0.10) 1px, transparent 1px, transparent 3px),
    linear-gradient(135deg, rgba(201, 169, 106, 0.18), rgba(255, 255, 255, 0.4)),
    linear-gradient(180deg, #f6efe2, #e6dcc4);
}
.hn-swatch--pet {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(180deg, #e7eef7, #c8d3e0);
  position: relative;
}
.hn-swatch--pet::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.50) 50%, transparent 60%);
}

/* ============================================================
   FINISHES GRID (gold-bordered)
   ============================================================ */
.hn-finish {
  background: linear-gradient(180deg, var(--hn-white), var(--hn-gold-pale));
  border: 1.5px solid var(--hn-gold);
  border-radius: var(--hn-r-md);
  padding: 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.hn-finish:hover { transform: translateY(-3px); box-shadow: var(--hn-shadow-medium); }
.hn-finish__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  margin-bottom: 12px;
}
.hn-finish__icon i { width: 18px; height: 18px; }
.hn-finish h3 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--hn-navy-ink);
}
.hn-finish p { margin: 0; font-size: 13px; color: var(--hn-slate-700); line-height: 1.55; }

/* ============================================================
   FORMATS WITH MINI VISUALS
   ============================================================ */
.hn-format {
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 24px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.hn-format:hover { transform: translateY(-3px); box-shadow: var(--hn-shadow-medium); }
.hn-format__viz {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hn-format h3 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--hn-navy-ink);
}
.hn-format p { margin: 0; font-size: 14px; color: var(--hn-slate-600); line-height: 1.55; }

/* CSS Mini Visual 1: Honey Jar (Roll Labels) */
.hn-viz-jar {
  width: 62px;
  height: 82px;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, transparent 18%, var(--hn-amber-deep) 18%, var(--hn-honey-mid) 30%, var(--hn-honey-light) 70%, var(--hn-honey-mid) 100%);
  border: 2px solid var(--hn-navy-ink);
  border-radius: 6px 6px 10px 10px;
  box-shadow: 0 6px 14px rgba(74, 46, 12, 0.25);
}
.hn-viz-jar::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 10px;
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  border: 2px solid var(--hn-navy-ink);
  border-radius: 2px 2px 0 0;
}
.hn-viz-jar::after {
  content: 'HONEY';
  position: absolute;
  top: 38px; left: 50%;
  transform: translateX(-50%);
  background: var(--hn-white);
  border: 1.5px solid var(--hn-navy-ink);
  padding: 2px 6px;
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 8px;
  color: var(--hn-navy-ink);
  letter-spacing: 0.12em;
  border-radius: 1px;
  white-space: nowrap;
}

/* CSS Mini Visual 2: Hexagonal Jar (Sheet Labels) */
.hn-viz-hex {
  width: 76px;
  height: 82px;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, transparent 16%, var(--hn-honey-mid) 16%, var(--hn-honey-light) 50%, var(--hn-honey-mid) 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  filter: drop-shadow(0 6px 12px rgba(74, 46, 12, 0.3));
}
.hn-viz-hex::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 8px;
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  border-radius: 1px;
}
.hn-viz-hex::after {
  content: 'WILD';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  background: var(--hn-white);
  padding: 1px 5px;
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 8px;
  color: var(--hn-navy-ink);
  letter-spacing: 0.10em;
  border-radius: 1px;
  white-space: nowrap;
}

/* CSS Mini Visual 3: Round Seal (Stickers) */
.hn-viz-seal {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  border: 3px solid var(--hn-navy-ink);
  position: relative;
  box-shadow: 0 6px 14px rgba(201, 169, 106, 0.4);
}
.hn-viz-seal::before {
  content: ''; position: absolute; inset: 8px;
  border: 1.5px dashed rgba(0, 18, 69, 0.5);
  border-radius: 50%;
}
.hn-viz-seal::after {
  content: 'LA';
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--hn-navy-ink);
  letter-spacing: -0.04em;
}

/* ============================================================
   ARTWORK TIPS
   ============================================================ */
.hn-tip {
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-left: 3px solid var(--hn-gold);
  border-radius: var(--hn-r-md);
  padding: 20px;
}
.hn-tip__num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hn-navy);
  color: var(--hn-white);
  font-family: var(--hn-font-mono);
  font-weight: 700;
  font-size: 11px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.hn-tip h3 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--hn-navy-ink);
}
.hn-tip p { margin: 0; font-size: 14px; color: var(--hn-slate-700); line-height: 1.6; }

/* ============================================================
   SAMPLE BANNER
   ============================================================ */
.hn-sample {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201, 169, 106, 0.18), transparent 60%),
    linear-gradient(135deg, var(--hn-navy), var(--hn-navy-deep));
  color: var(--hn-white);
  border-radius: var(--hn-r-lg);
  padding: 36px;
}
@media (min-width: 760px) {
  .hn-sample { grid-template-columns: 1fr auto; }
}
.hn-sample h2 {
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 8px 0 8px;
  color: var(--hn-white);
  letter-spacing: -0.02em;
}
.hn-sample p { margin: 0 0 16px; color: rgba(255, 255, 255, 0.85); font-size: 15px; line-height: 1.6; }
.hn-sample__price {
  text-align: center;
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  border-radius: var(--hn-r-md);
  padding: 22px 28px;
  min-width: 200px;
}
.hn-sample__price strong {
  display: block;
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 4px;
}
.hn-sample__price span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.hn-sample .hn-eyebrow {
  color: var(--hn-gold);
  background: rgba(255, 255, 255, 0.10);
}

/* ============================================================
   RELATED GRID
   ============================================================ */
.hn-related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .hn-related { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hn-related { grid-template-columns: 1fr; } }
.hn-related a {
  display: block;
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.hn-related a:hover {
  transform: translateY(-2px);
  border-color: var(--hn-gold);
  box-shadow: var(--hn-shadow-soft);
  text-decoration: none;
}
.hn-related h3 {
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--hn-navy-ink);
}
.hn-related p { margin: 0; font-size: 12px; color: var(--hn-slate-500); }
.hn-related .hn-arrow { color: var(--hn-gold-deep); font-family: var(--hn-font-mono); font-weight: 700; font-size: 12px; display: inline-block; margin-top: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.hn-faq { display: flex; flex-direction: column; gap: 10px; }
.hn-faq details {
  background: var(--hn-white);
  border: 1px solid var(--hn-slate-200);
  border-radius: var(--hn-r-md);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.hn-faq details[open] {
  border-color: var(--hn-gold);
  box-shadow: var(--hn-shadow-soft);
}
.hn-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--hn-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--hn-navy-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hn-faq summary::-webkit-details-marker { display: none; }
.hn-faq summary::after {
  content: '+';
  font-family: var(--hn-font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--hn-gold-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.hn-faq details[open] summary::after { content:'\2212'; transform: rotate(180deg); }
.hn-faq details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--hn-slate-700);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.hn-cta-band {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 169, 106, 0.18), transparent 60%),
    linear-gradient(135deg, var(--hn-navy-ink), var(--hn-navy-deep));
  color: var(--hn-white);
  padding: 64px 0;
  text-align: center;
}
.hn-cta-band h2 {
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  margin: 14px 0 12px;
  color: var(--hn-white);
  letter-spacing: -0.02em;
}
.hn-cta-band p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
}
.hn-cta-band .hn-eyebrow {
  color: var(--hn-gold);
  background: rgba(255, 255, 255, 0.10);
}

/* ============================================================
   FOOTER
   ============================================================ */
.hn-footer {
  background: var(--hn-navy-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.hn-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
@media (max-width: 980px) { .hn-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hn-footer__grid { grid-template-columns: 1fr; } }
.hn-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--hn-white);
  font-family: var(--hn-font-display);
  font-weight: 800;
  font-size: 18px;
}
.hn-footer__brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--hn-r-xs);
  background: linear-gradient(135deg, var(--hn-gold), var(--hn-gold-deep));
  color: var(--hn-navy-ink);
  font-size: 12px;
  font-weight: 800;
}
.hn-footer p { font-size: 13px; line-height: 1.6; margin: 0; }
.hn-footer h4 {
  color: var(--hn-white);
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hn-footer ul { list-style: none; padding: 0; margin: 0; }
.hn-footer ul li { margin-bottom: 8px; font-size: 13px; }
.hn-footer ul a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.hn-footer ul a:hover { color: var(--hn-gold); text-decoration: none; }
.hn-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.hn-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(0, 18, 69, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 169, 106, 0.3);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.32s ease-out;
}
.hn-sticky.is-visible { transform: translateY(0); }
.hn-sticky__inner {
  max-width: var(--hn-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hn-sticky__msg {
  color: var(--hn-white);
  font-family: var(--hn-font-display);
  font-weight: 700;
  font-size: 14px;
}
.hn-sticky__msg span { color: var(--hn-gold); }
.hn-sticky__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.hn-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease-out, transform 0.55s ease-out; }
.hn-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE HEADER
   ============================================================ */
@media (max-width: 860px) {
  .hn-nav-toggle { display: inline-flex; }
  .hn-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hn-navy-ink);
    padding: 14px 24px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }
  .hn-nav.is-open { display: flex; }
  .hn-nav a { width: 100%; padding: 10px 12px; }
}

/* ---------- SR ONLY ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
