/* ============================================================
   SAVANNAH BEE COMPANY — THE HIVE HUB
   Zendesk Guide Theme — CSS Foundation
   Version 1.0  |  March 2026
   ============================================================
   USAGE: Paste this into your Zendesk Guide theme's style.css
   or upload via Guide > Customize > Edit Code > style.css
   ============================================================ */

/* ── IMPORT FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-honey:          #C8892A;
  --clr-honey-light:    #E8C07A;
  --clr-honey-pale:     #F5E6C8;
  --clr-honey-pale-alt: #FFF8EC;
  --clr-cream:          #FAF6EE;
  --clr-cream-mid:      #F0E8D8;
  --clr-cream-dark:     #E2D4BC;
  --clr-charcoal:       #2C2417;
  --clr-warm-brown:     #5C4A2A;
  --clr-warm-gray:      #8B7D6B;
  --clr-border:         #E8DCC8;
  --clr-white:          #FFFFFF;
  --clr-brand-blue:			#002677;
  --clr-brand-yellow:		#FFB81C;
  --clr-footer-gray:		#bdbdbd;

  /* Semantic */
  --clr-text:           #2C2417;
  --clr-text-muted:     #8B7D6B;
  --clr-text-light:     #B0A090;
  --clr-link:           #C8892A;
  --clr-link-hover:     #8B5E1A;
  --clr-focus:          rgba(200, 137, 42, 0.35);

  /* Typography */
  --font-serif:   'Merriwether', 'Georgia', serif;
  --font-sans:    'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-md:   16px;
  --fs-lg:   18px;
  --fs-xl:   22px;
  --fs-2xl:  28px;
  --fs-3xl:  36px;
  --fs-4xl:  48px;

  /* Spacing */
  --sp-2xs: 4px;
  --sp-xs:  8px;
  --sp-sm:  12px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Layout */
  --max-w:     1200px;
  --content-w: 820px;
  --gap:        24px;

  /* Cards / Elevation */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-pill: 40px;

  --shadow-xs: 0 1px 3px rgba(44, 36, 23, 0.06);
  --shadow-sm: 0 2px 8px rgba(44, 36, 23, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 36, 23, 0.10);
  --shadow-lg: 0 8px 32px rgba(44, 36, 23, 0.14);
  --shadow-xl: 0 12px 48px rgba(44, 36, 23, 0.18);

  /* Transitions */
  --ease:  0.2s ease;
  --ease-slow: 0.35s ease;
}


/* ── RESET / BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--clr-text);
  background-color: var(--clr-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--clr-link);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--clr-link-hover); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--clr-charcoal);
  line-height: 1.25;
}


/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.hive-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.hive-content-container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}


/* ── ACCESSIBILITY ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--clr-honey);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── HEADER ───────────────────────────────────────────────── */
.hive-header {
  background: var(--clr-white);
  border-bottom: 2px solid var(--clr-honey);
  padding: var(--sp-md) 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-xs);
}

.hive-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  gap: var(--sp-lg);
}

.hive-header__logo img {
  height: 44px;
  width: auto;
}

.hive-header__back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-warm-gray);
  letter-spacing: 0.03em;
  transition: color var(--ease);
}
.hive-header__back-link:hover { color: var(--clr-honey); }
.hive-header__back-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.hive-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.hive-header__sign-in {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-warm-gray);
  transition: color var(--ease);
}
.hive-header__sign-in:hover { color: var(--clr-honey); }


/* ── HERO ─────────────────────────────────────────────────── */
.hive-hero {
  background-color: var(--clr-cream-mid);
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center 38%;
  position: relative;
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  text-align: center;
  overflow: hidden;
}

.hive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 246, 238, 0.88) 0%,
    rgba(240, 232, 216, 0.75) 55%,
    rgba(240, 232, 216, 0.90) 100%
  );
  pointer-events: none;
}

.hive-hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.hive-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-sm);
}

.hive-hero__headline {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.hive-hero__subline {
  font-size: var(--fs-lg);
  color: var(--clr-warm-brown);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}

.hive-chat-cta {
  display: none !important;
}

/* ── SEARCH BAR ───────────────────────────────────────────── */
.hive-search-wrap {
  max-width: 580px;
  margin: 0 auto var(--sp-xl);
  position: relative;
}

/* Override Zendesk default search */
.hive-search-wrap form,
.hive-search-wrap .search-box {
  display: flex;
  align-items: center;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-pill);
  padding: var(--sp-xs) var(--sp-xs) var(--sp-xs) var(--sp-lg);
  box-shadow: var(--shadow-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.hive-search-wrap form:focus-within,
.hive-search-wrap .search-box:focus-within {
  border-color: var(--clr-honey);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--clr-focus);
}

.hive-search-wrap input[type="search"],
.hive-search-wrap .search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--clr-text);
  min-width: 0;
}

.hive-search-wrap input::placeholder { color: var(--clr-warm-gray); }

.hive-search-wrap button[type="submit"],
.hive-search-wrap .search-box button {
  flex-shrink: 0;
  background: var(--clr-honey);
  border: none;
  border-radius: var(--r-pill);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hive-search-wrap button[type="submit"]:hover { background: var(--clr-warm-brown); }
.hive-search-wrap button svg { width: 20px; height: 20px; fill: white; pointer-events: none; }
.hive-search-wrap .clear-button {
  display: none;
}

/* ── ENTRY CARDS (3-UP HERO) ──────────────────────────────── */
.hive-entry-section {
  background: var(--clr-white);
  padding: var(--sp-2xl) 0;
}

.hive-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.hive-entry-card {
  background: var(--clr-cream);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  text-decoration: none;
  color: inherit;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hive-entry-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-honey);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.hive-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-honey-light);
  background: var(--clr-honey-pale-alt);
}

.hive-entry-card:hover::before { transform: scaleX(1); }

.hive-entry-card__icon {
  width: 68px;
  height: 68px;
  background: var(--clr-honey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease);
}

.hive-entry-card:hover .hive-entry-card__icon {
  background: var(--clr-honey-light);
}

.hive-entry-card__icon svg {
  width: 30px;
  height: 30px;
}

.hive-entry-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-charcoal);
  margin: 0;
  line-height: 1.2;
}

.hive-entry-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  line-height: 1.55;
  margin: 0;
}

.hive-entry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2xs);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-honey);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: var(--sp-xs);
}

.hive-entry-card__cta-arrow {
  transition: transform var(--ease);
}
.hive-entry-card:hover .hive-entry-card__cta-arrow {
  transform: translateX(4px);
}


/* ── SECONDARY QUICK LINKS ────────────────────────────────── */
.hive-quicklinks {
  background: var(--clr-cream);
  padding: var(--sp-lg) var(--sp-lg);
  border-top: 1px solid var(--clr-border);
}

.hive-quicklinks__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hive-quicklinks__item a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-honey);
  letter-spacing: 0.03em;
  transition: color var(--ease);
}
.hive-quicklinks__item a:hover { color: var(--clr-warm-brown); }

.hive-quicklinks__item a::before {
  content: '›';
  font-size: 18px;
  line-height: 1;
}


/* ── SECTION HEADER ───────────────────────────────────────── */
.hive-section-hdr {
  text-align: center;
  margin-bottom: var(--sp-xl);
  padding: 0 var(--sp-lg);
}

.hive-section-hdr__overline {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-xs);
}

.hive-section-hdr__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-sm);
}

.hive-section-hdr__sub {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ── CATEGORY GRID ────────────────────────────────────────── */
.hive-cats-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-cream);
}

.hive-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-md);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.hive-cat-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.hive-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-honey-light);
}

.hive-cat-card__icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.hive-cat-card__name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--clr-charcoal);
  font-weight: 600;
}

.hive-cat-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  line-height: 1.5;
}

.hive-cat-card__count {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: var(--sp-xs);
}


/* ── TAGLINE BAND ─────────────────────────────────────────── */
.hive-tagline-band {
  background: var(--clr-honey-pale);
  border-top: 1px solid var(--clr-cream-dark);
  border-bottom: 1px solid var(--clr-cream-dark);
  padding: var(--sp-lg) var(--sp-lg);
  text-align: center;
}

.hive-tagline-band p {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--clr-warm-brown);
  font-style: italic;
}

.hive-tagline-band a {
  color: var(--clr-honey);
  font-weight: 600;
}


/* ── BREADCRUMBS ──────────────────────────────────────────── */
.hive-breadcrumbs {
  padding: var(--sp-md) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}

.hive-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
}

.hive-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.hive-breadcrumbs li + li::before {
  content: '›';
  color: var(--clr-honey-light);
  font-size: 16px;
}

.hive-breadcrumbs a { color: var(--clr-warm-gray); transition: color var(--ease); }
.hive-breadcrumbs a:hover { color: var(--clr-brand-yellow); }
.hive-breadcrumbs [aria-current="page"] { color: var(--clr-charcoal); font-weight: 600; }


/* ── PAGE LAYOUT (inner pages) ────────────────────────────── */
.hive-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.hive-page--centered {
  grid-template-columns: 1fr;
  max-width: var(--content-w);
}

.hive-sidebar {
  position: sticky;
  top: calc(68px + var(--sp-lg));
}

.hive-sidebar__title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--clr-border);
}

.hive-sidebar__list { display: flex; flex-direction: column; gap: 2px; }

.hive-sidebar__item a {
  display: block;
  padding: var(--sp-xs) var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
}
.hive-sidebar__item a:hover {
  background: var(--clr-honey-pale);
  color: var(--clr-charcoal);
}
.hive-sidebar__item.is-active a {
  background: var(--clr-honey-pale);
  color: var(--clr-honey);
  font-weight: 600;
}


/* ── SECTION / ARTICLE LIST ───────────────────────────────── */
.hive-article-list { display: flex; flex-direction: column; }

.hive-article-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  color: inherit;
  transition: padding-left var(--ease);
}

.hive-article-item:hover { padding-left: var(--sp-xs); }

.hive-article-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--clr-honey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hive-article-item__icon svg { width: 16px; height: 16px; }

.hive-article-item__body { flex: 1; min-width: 0; }

.hive-article-item__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-charcoal);
  transition: color var(--ease);
  margin-bottom: var(--sp-2xs);
  line-height: 1.4;
}
.hive-article-item:hover .hive-article-item__title { color: var(--clr-honey); }

.hive-article-item__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hive-article-item__arrow {
  flex-shrink: 0;
  color: var(--clr-honey-light);
  font-size: 20px;
  line-height: 1;
  transition: transform var(--ease), color var(--ease);
  align-self: center;
}
.hive-article-item:hover .hive-article-item__arrow {
  transform: translateX(4px);
  color: var(--clr-honey);
}


/* ── ARTICLE PAGE ─────────────────────────────────────────── */
.hive-article__header {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--clr-border);
}

.hive-article__section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-sm);
}

.hive-article__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--clr-brand-blue);
  line-height: 1.25;
  margin-bottom: var(--sp-sm);
}

.hive-article__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Article body content */
.hive-article__body {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--clr-text);
}

.hive-article__body h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-charcoal);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--clr-border);
}

.hive-article__body h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--clr-warm-brown);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}

.hive-article__body p { margin-bottom: var(--sp-md); }

.hive-article__body a {
  color: var(--clr-honey);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hive-article__body a:hover { color: var(--clr-warm-brown); }

.hive-article__body ul,
.hive-article__body ol {
  padding-left: var(--sp-lg);
  margin-bottom: var(--sp-md);
  list-style: revert;
}

.hive-article__body li { margin-bottom: var(--sp-xs); }

.hive-article__body img {
  border-radius: var(--r-md);
  margin: var(--sp-lg) 0;
  box-shadow: var(--shadow-sm);
}

.hive-article__body blockquote {
  border-left: 4px solid var(--clr-honey);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-honey-pale-alt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--sp-lg) 0;
  font-style: italic;
  color: var(--clr-warm-brown);
}

/* Article feedback */
.hive-article-feedback {
  margin-top: var(--sp-2xl);
  padding: var(--sp-xl);
  background: var(--clr-cream-mid);
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--clr-border);
}

.hive-article-feedback__q {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  margin-bottom: var(--sp-md);
}

.hive-article-feedback__btns {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
}

.hive-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-xs) var(--sp-lg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-pill);
  background: var(--clr-white);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-warm-gray);
  cursor: pointer;
  transition: all var(--ease);
}
.hive-vote-btn:hover,
.hive-vote-btn.is-voted {
  border-color: var(--clr-honey);
  color: var(--clr-honey);
  background: var(--clr-honey-pale-alt);
}

/* Related articles */
.hive-related {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--clr-border);
}

.hive-related__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-lg);
}


/* ── SEARCH RESULTS ───────────────────────────────────────── */
.hive-search-pg {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
}

.hive-search-pg__query {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-brand-blue);
  margin-bottom: var(--sp-xs);
}

.hive-search-pg__count {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  margin-bottom: var(--sp-xl);
}

.hive-search-result {
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--clr-border);
}

.hive-search-result__section {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-2xs);
}

.hive-search-result__title a {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-xs);
  transition: color var(--ease);
}
.hive-search-result__title a:hover { color: var(--clr-honey); }

.hive-search-result__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  line-height: 1.6;
}

/* Highlighted search terms */
.hive-search-result__excerpt mark,
mark {
  background: var(--clr-honey-pale);
  color: var(--clr-warm-brown);
  padding: 0 2px;
  border-radius: 2px;
}


/* ── EMPTY / NO RESULTS STATE ─────────────────────────────── */
.hive-empty {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
  max-width: 520px;
  margin: 0 auto;
}

.hive-empty__icon {
  font-size: 52px;
  margin-bottom: var(--sp-lg);
  opacity: 0.5;
  line-height: 1;
}

.hive-empty__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-md);
}

.hive-empty__body {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}

.hive-empty__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}


/* ── CONTACT / REQUEST HUB ────────────────────────────────── */
.hive-contact-pg {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
}

.hive-contact-intro {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.hive-contact-intro__title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-md);
}

.hive-contact-intro__sub {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.hive-contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.hive-contact-opt {
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

.hive-contact-opt:hover,
.hive-contact-opt.is-selected {
  border-color: var(--clr-honey);
  background: var(--clr-honey-pale-alt);
  box-shadow: var(--shadow-md);
}

.hive-contact-opt__icon { font-size: 28px; line-height: 1; }
.hive-contact-opt__label {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-charcoal);
}
.hive-contact-opt__sub {
  font-size: var(--fs-xs);
  color: var(--clr-warm-gray);
  line-height: 1.4;
}


/* ── FORM STYLES ──────────────────────────────────────────── */
.hive-form { max-width: 680px; margin: 0 auto; }

.hive-form .form-field { margin-bottom: var(--sp-lg); }

.hive-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.02em;
}

.hive-form label .required {
  color: var(--clr-honey);
  margin-left: 3px;
}

.hive-form input[type="text"],
.hive-form input[type="email"],
.hive-form input[type="tel"],
.hive-form select,
.hive-form textarea {
  width: 100%;
  padding: 14px var(--sp-md);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.hive-form input:focus,
.hive-form select:focus,
.hive-form textarea:focus {
  outline: none;
  border-color: var(--clr-honey);
  box-shadow: 0 0 0 3px var(--clr-focus);
}

.hive-form textarea { min-height: 148px; resize: vertical; }

.hive-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23C8892A' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.hive-form__hint {
  font-size: var(--fs-xs);
  color: var(--clr-warm-gray);
  margin-top: var(--sp-2xs);
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.hive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 14px var(--sp-xl);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.hive-btn--primary {
  background: var(--clr-honey);
  color: var(--clr-white);
  border-color: var(--clr-honey);
}
.hive-btn--primary:hover {
  background: var(--clr-warm-brown);
  border-color: var(--clr-warm-brown);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hive-btn--secondary {
  background: transparent;
  color: var(--clr-honey);
  border-color: var(--clr-honey);
}
.hive-btn--secondary:hover {
  background: var(--clr-honey);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.hive-btn--ghost {
  background: transparent;
  color: var(--clr-warm-gray);
  border-color: var(--clr-border);
}
.hive-btn--ghost:hover {
  border-color: var(--clr-warm-gray);
  color: var(--clr-charcoal);
}

.hive-btn--sm {
  padding: 10px var(--sp-lg);
  font-size: var(--fs-xs);
}

/* Submit button overrides */
input[type="submit"],
button[type="submit"] {
  background: var(--clr-brand-yellow);
  color: var(--clr-navy);
  border: 2px solid var(--clr-brand-yellow);
  padding: 14px var(--sp-xl);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--clr-honey);
  border-color: var(--clr-honey);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* ── SUCCESS / CONFIRMATION ───────────────────────────────── */
.hive-success {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
  max-width: 540px;
  margin: 0 auto;
}

.hive-success__icon {
  width: 80px;
  height: 80px;
  background: var(--clr-honey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  font-size: 36px;
}

.hive-success__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-md);
}

.hive-success__body {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}

.hive-success__ref {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-xl);
  padding: var(--sp-md);
  background: var(--clr-cream-mid);
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
}


/* ── ALERTS / NOTICES ─────────────────────────────────────── */
.hive-notice {
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  border-left: 4px solid var(--clr-honey);
  background: var(--clr-honey-pale-alt);
  font-size: var(--fs-sm);
  color: var(--clr-warm-brown);
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
}


/* ── 404 PAGE ─────────────────────────────────────────────── */
.hive-404 {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
  max-width: 560px;
  margin: 0 auto;
}

.hive-404__headline {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--clr-honey-pale);
  margin-bottom: var(--sp-md);
  font-weight: 700;
}

.hive-404__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-md);
}

.hive-404__body {
  font-size: var(--fs-md);
  color: var(--clr-warm-gray);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}


/* ══════════════════════════════════════════════════════════
   FOOTER — MISSION STRIP + MAIN FOOTER
   Brand-forward, metric-optimized for help desk performance.
   Metric map:
     deflection     → search link, browse, popular topics
     CSAT           → promise card, warm copy, SBC personality
     FCR            → tiered support path (browse→chat→submit)
     ticket routing → Popular Topics column emoji shortcuts
     chat util.     → pulsing chat CTA in Get Help column
     article views  → 6-link Popular Topics column
     search success → prominent Search the Hive Hub link
     repeat contact → full category coverage
     SLA / response → "Within 1 business day" badge
     escalation     → submit ticket positioned last in path
   ══════════════════════════════════════════════════════════ */

/* ── MISSION STRIP ────────────────────────────────────────── */
/* The SBC brand moment — analogous to Bombas "100% Happiness
   Guaranteed" strip but warmer and more personal. */
.hive-footer-mission {
  background: linear-gradient(135deg, var(--clr-brand-yellow) 0%, var(--clr-honey) 100%);
  padding: var(--sp-md) var(--sp-lg);
  text-align: center;
}

.hive-footer-mission__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}

.hive-footer-mission__bee {
  font-size: 17px;
  line-height: 1;
  opacity: 0.9;
}

.hive-footer-mission__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 2.2vw, 16px);
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0;
}

/* ── FOOTER MAIN ──────────────────────────────────────────── */
.hive-footer {
  background: #1E1810;
  color: var(--clr-footer-gray);
  padding: var(--sp-2xl) var(--sp-lg) 0;
  margin-top: 0;   /* mission strip sits immediately above */
}

.hive-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--clr-footer-gray);
}

/* ── BRAND COL ────────────────────────────────────────────── */
.hive-footer__logo { margin-bottom: var(--sp-md); }
.hive-footer__logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.hive-footer__wordmark {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-brand-yellow);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: var(--sp-md);
}

.hive-footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--clr-brand-yellow);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.hive-footer__brand-sub {
  font-size: var(--fs-sm);
  color: var(--clr-footer-gray);
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
  max-width: 270px;
}

/* "Shop savannahbee.com" outlined pill CTA */
.hive-footer__shop-cta {
  display: inline-block;
  padding: var(--sp-xs) var(--sp-md);
  border: 1px solid var(--clr-brand-yellow);
  border-radius: var(--r-pill);
  color: var(--clr-brand-yellow);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  margin-bottom: var(--sp-lg);
}
.hive-footer__shop-cta:hover {
  background: var(--clr-brand-yellow);
  border-color: var(--clr-brand-yellow);
  color: #fff;
}

/* Social icons row */
.hive-footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: var(--sp-xs);
}

.hive-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--clr-footer-gray);
  color: var(--clr-footer-gray);
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.hive-footer__social-link:hover {
  border-color: var(--clr-brand-yellow);
  color: var(--clr-brand-yellow);
  background: rgba(200, 137, 42, 0.1);
}

/* ── SHARED COLUMN STYLES ─────────────────────────────────── */
.hive-footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand-yellow);
  margin-bottom: var(--sp-md);
}

.hive-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hive-footer__links a {
  color: var(--clr-footer-gray);
  font-size: var(--fs-sm);
  line-height: 1.45;
  text-decoration: none;
  transition: color var(--ease);
}
.hive-footer__links a:hover { color: var(--clr-brand-yellow); }

/* Padding between Contact Intro and Phone */
.hive-footer__contact-intro {
  padding-bottom: 10px;
}

/* Search link with icon */
.hive-footer__search-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hive-footer__link-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Live-chat link — pulsing green dot signals team is online */
.hive-footer__chat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--ease);
}
.hive-footer__chat-link:hover { color: var(--clr-honey-light); }

.hive-footer__chat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hive-pulse 2.2s ease-in-out infinite;
}

/* ── PROMISE COL ──────────────────────────────────────────── */
/* Honey-tinted card — warmth that drives CSAT */
.hive-footer__promise-card {
  background: rgba(200, 137, 42, 0.07);
  border: 1px solid rgba(200, 137, 42, 0.18);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.hive-footer__promise-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.hive-footer__promise-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Contact items with label/value stacking */
.hive-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.hive-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hive-footer__contact-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--clr-footer-gray);
}

.hive-footer__contact-value {
  font-size: var(--fs-sm);
  color: var(--clr-footer-gray);
  text-decoration: none;
  transition: color var(--ease);
}
a.hive-footer__contact-value:hover { color: var(--clr-honey-light); }

/* SLA transparency badge — metric: response time */
.hive-footer__response-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.22);
  border-radius: var(--r-pill);
  padding: 3px 9px;
  font-size: var(--fs-xs);
  color: rgba(110, 210, 110, 0.88);
  font-weight: 600;
}
.hive-footer__response-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BOTTOM BAR ───────────────────────────────────────────── */
.hive-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-md) 0 var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
}

.hive-footer__copy { color: var(--clr-footer-gray); }

.hive-footer__bottom-center { text-align: center; }

.hive-footer__bottom-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clr-footer-gray);
  white-space: nowrap;
}

.hive-footer__bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-xs);
  color: var(--clr-footer-gray);
}

.hive-footer__bottom a {
  color: var(--clr-footer-gray);
  text-decoration: none;
  transition: color var(--ease);
}
.hive-footer__bottom a:hover { color: var(--clr-brand-yellow); }


/* ── CHAT LAUNCHER CUSTOM ─────────────────────────────────── */
/* Zendesk widget launcher override */
#launcher {
  bottom: 28px !important;
  right: 28px !important;
}

/* Custom chat CTA button */
.hive-chat-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: var(--sp-sm) var(--sp-lg);
  background: var(--clr-charcoal);
  color: var(--clr-white);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--ease), transform var(--ease);
  text-decoration: none;
}
.hive-chat-cta:hover {
  background: var(--clr-warm-brown);
  color: var(--clr-white);
  transform: translateY(-1px);
}
.hive-chat-cta__dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hive-pulse 2s ease-in-out infinite;
}
@keyframes hive-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}


/* ── ZENDESK DEFAULT OVERRIDES ────────────────────────────── */
/* Suppress Zendesk UI elements we've replaced */
.article-votes { display: none !important; }
.share-button { display: none !important; }
.page-header { display: none !important; }
.sub-nav { display: none !important; }

/* Request form overrides */
.request-form .nesty-input { border: 1.5px solid var(--clr-border); }

/* Remove default ZD padding on containers */
.main-column { padding: 0 !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Footer: 2-column grid; brand col spans full width on top */
  .hive-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
  .hive-footer__col--brand {
    grid-column: 1 / -1;
  }
  .hive-footer__brand-sub { max-width: 100%; }

  /* Bottom bar: 2-col, hide tagline to keep it clean */
  .hive-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }
  .hive-footer__bottom-center { display: none; }
}

@media (max-width: 768px) {
  :root { --fs-4xl: 32px; --fs-3xl: 26px; }

  .hive-hero { padding: var(--sp-2xl) 0 var(--sp-xl); }

  .hive-entry-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hive-cats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hive-quicklinks__list {
    gap: var(--sp-md);
    justify-content: flex-start;
  }

  .hive-page {
    grid-template-columns: 1fr;
    padding: var(--sp-lg) var(--sp-md);
  }

  .hive-sidebar {
    position: static;
    order: -1;
  }

  /* Footer: single column stack on mobile */
  .hive-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .hive-footer__col--brand { grid-column: auto; }

  /* Mission strip: hide decorative bees, shrink padding */
  .hive-footer-mission { padding: var(--sp-sm) var(--sp-md); }
  .hive-footer-mission__bee { display: none; }

  /* Bottom bar: stacked center-aligned */
  .hive-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-sm);
  }
  .hive-footer__bottom-center { display: block; }
  .hive-footer__bottom-right { justify-content: center; }

  .hive-article__title { font-size: var(--fs-2xl); }

  .hive-contact-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  :root { --sp-lg: 16px; --sp-xl: 28px; }

  .hive-cats-grid { grid-template-columns: 1fr; }
  .hive-contact-options { grid-template-columns: 1fr; }
  .hive-search-pg { padding: var(--sp-lg) var(--sp-md); }
  .hive-article-feedback__btns { flex-direction: column; align-items: center; }

  .hive-entry-grid {
    gap: var(--sp-sm);
    padding: 0 var(--sp-md);
  }
}


/* ════════════════════════════════════════════════════════════
   HOME PAGE — UNIFIED WARM HERO
   Matches approved mockup: one warm cream/honey background,
   heading + 3 cards + tagline as a single visual unit.
   ════════════════════════════════════════════════════════════ */

/* Override: entry section no longer has its own white background —
   it lives inside .hive-home-hero now */
.hive-home-hero + .hive-entry-section {
  display: none; /* safety: hides old section if accidentally left in */
}

/* The unified hero section */
.hive-home-hero {
  background-color: var(--clr-cream-mid);
  /* Optional photo background — upload hero-bg.jpg to Assets then:
     background-image: url('/hc/theming/assets/hero-bg.jpg');  */
  background-size: cover;
  background-position: center 35%;
  position: relative;
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  text-align: center;
  overflow: hidden;
}

/* Warm cream overlay — knocks back any background image */
.hive-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250, 246, 238, 0.90) 0%,
    rgba(240, 232, 216, 0.82) 55%,
    rgba(232, 220, 200, 0.88) 100%
  );
  pointer-events: none;
}

.hive-home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* Eyebrow — small brand name above the title */
.hive-home-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-xs);
}

/* Main heading — matches mockup serif italic treatment */
.hive-home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: var(--clr-charcoal);
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

/* Subtext */
.hive-home-hero__sub {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--clr-warm-brown);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: var(--sp-2xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards inside the hero — float on the warm background */
.hive-home-hero .hive-entry-grid {
  margin: 0 auto var(--sp-xl);
  max-width: 860px;
}

/* Cards take white bg to pop off the warm background */
.hive-home-hero .hive-entry-card {
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.hive-home-hero .hive-entry-card:hover {
  background: var(--clr-honey-pale-alt);
  box-shadow: var(--shadow-xl);
}

/* "Here to help whenever you need us." tagline under cards */
.hive-home-hero__tagline {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--clr-warm-brown);
  margin-top: var(--sp-lg);
  opacity: 0.85;
}

/* Quick links — same cream background as hero base, visually continuous */
.hive-hub .hive-quicklinks {
  background: var(--clr-cream-dark);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-md) var(--sp-lg);
}

/* Quick link arrow prefix — matches mockup's ▶ style */
.hive-quicklinks__item a::before {
  content: '▶';
  font-size: 9px;
  vertical-align: middle;
  margin-right: 5px;
  color: var(--clr-honey);
}

/* Mirror Section Template Article list stlye for Requst CTA */
.hive-request-cta {
  margin: 0 auto var(--sp-xl);
  max-width: 860px;
  justify-content: center;
  padding: 0 var(--sp-lg);
}

.hive-request-card {
  background: var(--clr-navy);
  border: 1px solid var(--clr-cream-dark);
  border-top: 3px solid var(--clr-brand-yellow);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  transition: transform var(--ease-slow), box-shadow var(--ease-slow),
              border-top-color var(--ease);
  position: relative;
  overflow: hidden;
}

.hive-request-card::before { display: none; }

/* Honey shimmer on hover */
.hive-request-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(245,230,200,0.15) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: inherit;
}

.hive-request-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-navy-md);
  border-top-color: var(--clr-honey);
}

.hive-request-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: #F5E6C8;
  margin: 0;
}

.hive-request-card__desc {
  color:rgba(245,230,200,0.65);
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin: 0;
}


/* ── HOME PAGE RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .hive-home-hero {
    padding: var(--sp-2xl) 0 var(--sp-xl);
  }

  .hive-home-hero .hive-entry-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hive-home-hero__title {
    font-size: 28px;
  }
}


/* ============================================================
   BRAND ENHANCEMENT v2.0 — March 2026
   Savannah Bee Company — Heritage + Personality Layer
   ------------------------------------------------------------
   These rules build on the v1.0 foundation and override
   specific components to bring in:
     • Navy (#1A2B4A) as a bold contrast anchor
     • Bee watermark + honeycomb decorative motifs
     • Editorial Playfair Display hierarchy (up to 58px)
     • Mission strip: "happy bees. happy earth. delicious honeys."
     • Ornamental dividers & heritage texture cues
     • Warmer, more artisanal micro-copy treatments
   ============================================================ */


/* ── NEW DESIGN TOKENS ────────────────────────────────────── */
:root {
  --clr-navy:          #1A2B4A;
  --clr-navy-light:    #243657;
  --clr-navy-dark:     #111D32;
  --clr-navy-pale:     #EEF1F7;
  --clr-honey-deep:    #8B5E1A;
  --clr-parchment:     #FBF7F0;
  --clr-gold-accent:   #D4A843;
  --clr-sage:          #7A8C6E;

  /* Expanded shadows with navy tint */
  --shadow-navy-sm: 0 2px 10px rgba(26, 43, 74, 0.12);
  --shadow-navy-md: 0 6px 24px rgba(26, 43, 74, 0.16);
}


/* ── HEADER — Brand Warmth Refresh ───────────────────────── */
.hive-header {
  background: var(--clr-parchment);
  border-bottom: 1px solid var(--clr-cream-dark);
  padding: var(--sp-sm) 0;
  box-shadow: none;
}

.hive-header__back-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-warm-gray);
}
.hive-header__back-link a:hover { color: var(--clr-brand-yellow); }

.hive-header__sign-in {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-warm-gray);
  transition: color var(--ease);
}
.hive-header__sign-in:hover { color: var(--clr-honey); }

/* Chat CTA — navy pill */
.hive-chat-cta {
  background: var(--clr-navy);
  color: var(--clr-honey-pale) !important;
  border: none;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  transition: background var(--ease), transform 0.15s ease;
  box-shadow: var(--shadow-navy-sm);
}
.hive-chat-cta:hover {
  background: var(--clr-honey);
  transform: translateY(-1px);
}

.hive-chat-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: hive-pulse-dot 2.4s ease-in-out infinite;
}

@keyframes hive-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50%       { box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}


/* ── HOME HERO — Full Brand Overhaul ─────────────────────── */
.hive-home-hero {
  background: linear-gradient(158deg,
    var(--clr-parchment) 0%,
    #F2E9D6 40%,
    var(--clr-cream-mid) 75%,
    var(--clr-cream) 100%);
  padding: 88px var(--sp-lg) 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle repeating hex dot grid */
.hive-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200,137,42,0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Bee watermark container */
.hive-hero-watermark {
  position: absolute;
  right: -2%;
  top: -8%;
  width: 46%;
  max-width: 520px;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  transform: rotate(8deg);
}

@media (max-width: 900px) {
  .hive-hero-watermark {
    width: 65%;
    right: -10%;
    opacity: 0.045;
  }
}

@media (max-width: 600px) {
  .hive-hero-watermark {
    width: 90%;
    right: -20%;
    opacity: 0.035;
  }
}

.hive-home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.hive-home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-bottom: var(--sp-md);
}
.hive-home-hero__eyebrow::before,
.hive-home-hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--clr-brand-yellow);
}

.hive-home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.12;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.01em;
}

/* Ornamental honey-drip divider */
.hive-hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin: var(--sp-md) auto var(--sp-lg);
  color: var(--clr-honey-light);
  max-width: 360px;
}
.hive-hero-ornament::before,
.hive-hero-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%, var(--clr-brand-yellow) 50%);
}
.hive-hero-ornament::after {
  background: linear-gradient(to left,
    transparent 0%, var(--clr-honey-light) 50%);
}
.hive-hero-ornament svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--clr-brand-yellow);
}

.hive-home-hero__sub {
  font-size: 17px;
  color: var(--clr-warm-gray);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto var(--sp-2xl);
}

/* Hero tagline (below cards) */
.hive-home-hero__tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--clr-warm-gray);
  margin-top: var(--sp-lg);
  letter-spacing: 0.01em;
}


/* ── ENTRY CARDS — Editorial Redesign ────────────────────── */
.hive-entry-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  max-width: 860px;
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 720px) {
  .hive-entry-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

.hive-entry-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-cream-dark);
  border-top: 3px solid var(--clr-brand-yellow);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  transition: transform var(--ease-slow), box-shadow var(--ease-slow),
              border-top-color var(--ease);
  position: relative;
  overflow: hidden;
}

/* Remove old ::before bottom bar */
.hive-entry-card::before { display: none; }

/* Honey shimmer on hover */
.hive-entry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(245,230,200,0.15) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: inherit;
}

.hive-entry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-navy-md);
  border-top-color: var(--clr-honey);
}
.hive-entry-card:hover::after { opacity: 1; }

.hive-entry-card__icon {
  width: 64px;
  height: 64px;
  background: var(--clr-honey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
  border: 1.5px solid var(--clr-honey-light);
}
.hive-entry-card:hover .hive-entry-card__icon {
  background: var(--clr-honey-pale-alt);
  transform: scale(1.06);
}

.hive-entry-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-brand-blue);
  margin: 0;
}

.hive-entry-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-warm-gray);
  line-height: 1.65;
  margin: 0;
}

.hive-entry-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-honey);
  margin-top: var(--sp-xs);
  padding-top: var(--sp-xs);
  border-top: 1px solid var(--clr-honey);
  width: 100%;
  text-align: center;
  transition: color var(--ease), letter-spacing var(--ease);
  display: block;
}
.hive-entry-card:hover .hive-entry-card__cta {
  color: var(--clr-honey-deep);
  letter-spacing: 0.14em;
  border-top: 1px solid var(--clr-honey-deep);
}


/* ── MISSION STRIP ────────────────────────────────────────── */
.hive-mission-strip {
  background: var(--clr-brand-blue);
  padding: 18px var(--sp-lg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid var(--clr-brand-blue);
}

.hive-mission-strip__item {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--clr-honey-pale);
  letter-spacing: 0.04em;
}

.hive-mission-strip__sep {
  color: var(--clr-honey);
  font-size: 10px;
  opacity: 0.8;
  line-height: 1;
}

@media (max-width: 480px) {
  .hive-mission-strip__sep { display: none; }
  .hive-mission-strip__item::after { content: ''; display: block; }
}


/* ── QUICK LINKS — Heritage Bar ───────────────────────────── */
.hive-quicklinks {
  background: var(--clr-cream-mid);
  padding: var(--sp-md) var(--sp-lg);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.hive-quicklinks__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2xl);
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hive-quicklinks__item a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--clr-warm-brown);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease), gap var(--ease);
  text-decoration: none;
}
.hive-quicklinks__item a:hover {
  color: var(--clr-honey);
  gap: 10px;
}
.hive-quicklinks__item a::before { display: none; }
.hive-quicklinks__item a::after {
  content: '→';
  font-size: 13px;
  transition: transform var(--ease);
}
.hive-quicklinks__item a:hover::after { transform: translateX(3px); }

/* "Chat" quick link — special treatment */
.hive-quicklinks__item a[id="hive-ql-chat"]::after { content: '↗'; }


/* ── ORNAMENTAL DIVIDERS ──────────────────────────────────── */
.hive-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
}
.hive-ornament::before,
.hive-ornament::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--clr-honey-light);
}
.hive-ornament svg {
  flex-shrink: 0;
  color: var(--clr-honey);
}


/* ── CATEGORY PAGE — Editorial Refinements ────────────────── */
.hive-cat-hero {
  background: linear-gradient(160deg,
    var(--clr-parchment) 0%,
    var(--clr-cream-mid) 100%);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.hive-cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200,137,42,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hive-cat-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--clr-brand-blue);
  letter-spacing: -0.01em;
}

/* Section cards — top accent bar */
.hive-section-card {
  border-top: 3px solid var(--clr-honey-light);
  transition: transform var(--ease-slow), box-shadow var(--ease-slow),
              border-top-color var(--ease);
}
.hive-section-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy-md);
  border-top-color: var(--clr-honey);
}

/* Contact nudge — navy treatment */
.hive-contact-nudge {
  background: var(--clr-navy);
  border-top: none;
  padding: var(--sp-xl) var(--sp-lg);
}
.hive-contact-nudge__text {
  color: var(--clr-honey-pale);
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
}
.hive-contact-nudge .hive-btn--primary {
  background: var(--clr-honey);
  border-color: var(--clr-honey);
  color: var(--clr-charcoal);
}
.hive-contact-nudge .hive-btn--primary:hover {
  background: var(--clr-gold-accent);
  border-color: var(--clr-gold-accent);
}
.hive-contact-nudge .hive-btn--ghost {
  border-color: rgba(245,230,200,0.45);
  color: var(--clr-honey-pale);
}
.hive-contact-nudge .hive-btn--ghost:hover {
  background: rgba(245,230,200,0.12);
  border-color: var(--clr-honey-pale);
}


/* ── ARTICLE PAGE — Refinements ───────────────────────────── */
.hive-article__header {
  border-bottom: 2px solid var(--clr-cream-dark);
  padding-bottom: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.hive-article__title {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
}

.hive-article__section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--clr-honey-pale);
  color: var(--clr-honey-deep);
  padding: 3px 10px 3px 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hive-article__section-label::before {
  content: '⬡';
  font-size: 10px;
}

/* Article body — editorial refinements */
.hive-article__body {
  font-size: 16px;
  line-height: 1.85;
}
.hive-article__body > p:first-child {
  font-size: 17px;
  color: var(--clr-warm-brown);
  line-height: 1.75;
}

.hive-article__body h2 {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: var(--sp-xl);
  margin-top: 0;
  color: var(--clr-navy);
  position: relative;
}
.hive-article__body h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--clr-honey);
  margin-top: var(--sp-xs);
}

/* Article feedback — warmer */
.hive-article-feedback {
  background: linear-gradient(135deg, var(--clr-honey-pale-alt) 0%, var(--clr-cream-mid) 100%);
  border: 1px solid var(--clr-brand-yellow);
  border-radius: var(--r-lg);
}
.hive-article-feedback__q {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--clr-charcoal);
  font-style: italic;
}

.hive-vote-btn {
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: var(--sp-xs) var(--sp-xl);
}
.hive-vote-btn:hover,
.hive-vote-btn.is-voted {
  border-color: var(--clr-brand-yellow);
  color: var(--clr-navy);
  background: var(--clr-brand-yellow);
}

/* Sidebar — warmth boost */
.hive-sidebar__title {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--clr-honey);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--clr-honey-pale);
  padding-bottom: var(--sp-xs);
  margin-bottom: var(--sp-md);
}

.hive-btn--primary {
  background: var(--clr-brand-yellow);
  border-color: var(--clr-brand-yellow);
  color: var(--clr-navy);
}
.hive-btn--primary:hover {
  background: var(--clr-honey);
  border-color: var(--clr-honey);
  color: var(--clr-charcoal);
}
.hive-btn--ghost {
  border-color: var(--clr-brand-blue);
  color: var(--clr-brand-blue);
}
.hive-btn--ghost:hover {
  background: var(--clr-honey-pale);
  color: var(--clr-navy);
}


/* ── BREADCRUMBS — Honey accent ───────────────────────────── */
.hive-breadcrumbs li + li::before {
  content: '◆';
  font-size: 6px;
  color: var(--clr-honey-light);
  vertical-align: middle;
  margin-right: 2px;
}


/* ── SEARCH BAR — Refined ─────────────────────────────────── */
.hive-search__input {
  background: var(--clr-white);
  border-color: var(--clr-honey-light);
}
.hive-search__input:focus {
  border-color: var(--clr-honey);
  box-shadow: 0 0 0 3px rgba(200,137,42,0.15);
}


/* ── EMPTY STATE — Warmer ────────────────────────────────────*/
.hive-empty__title {
  font-style: italic;
  color: var(--clr-brand-blue);
}


/* ── RESPONSIVE CLEANUP ───────────────────────────────────── */
@media (max-width: 900px) {
  .hive-home-hero { padding: 60px var(--sp-lg) 52px; }
}
@media (max-width: 600px) {
  .hive-home-hero { padding: 48px var(--sp-md) 40px; }
  .hive-mission-strip { padding: 14px var(--sp-md); }
  .hive-page { grid-template-columns: 1fr; }
  .hive-sidebar { position: static; }
}

/* ── NEW REQUEST PAGE FORM CSS ─────────────────────────────── */
#new-request-form .ck.ck-editor__main > .ck-editor__editable {
  background: rgb(252, 250, 242);
}
#new-request-form .ck.ck-toolbar {
  background: rgb(252, 250, 242);
}

#hive-attachment-instructions {
  order: 100;
}