:root {
  --ink: #18211e;
  --muted: #5b665f;
  --paper: #fffdf6;
  --soft: #eef4e8;
  --mint: #d9ead0;
  --leaf: #22634a;
  --leaf-dark: #153f32;
  --brand-blue: #3f4c66;
  --brand-blue-dark: #313c52;
  --gold: #f4b83f;
  --clay: #bd6142;
  --sky: #d8edf2;
  --line: rgba(24, 33, 30, 0.14);
  --shadow: 0 18px 45px rgba(30, 43, 36, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  top: 1rem;
}

.site-header {
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0.8rem 1.25rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 5.3rem;
  justify-content: center;
  overflow: hidden;
  width: 5.3rem;
}

.brand-mark img {
  height: 5.3rem;
  object-fit: contain;
  transform: none;
  width: 5.3rem;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-domain {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  font: inherit;
  font-weight: 800;
  height: 2.4rem;
  min-width: 4.2rem;
  padding: 0 0.7rem;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.45rem 0.6rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--leaf-dark);
}

.button,
button.button {
  align-items: center;
  background: var(--leaf);
  border: 1px solid var(--leaf);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  line-height: 1.1;
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--leaf-dark);
  transform: translateY(-1px);
}

.button:disabled,
button.button:disabled {
  background: #9aa5a0;
  border-color: #9aa5a0;
  color: rgba(255, 255, 255, 0.82);
  cursor: not-allowed;
  transform: none;
}

.button:disabled:hover,
button.button:disabled:hover {
  background: #9aa5a0;
  transform: none;
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
}

.hero {
  background: var(--brand-blue);
  color: #fff;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero::after {
  background: url("assets/bee_nobg.png") center / contain no-repeat;
  bottom: -1.65rem;
  content: "";
  height: min(23rem, 34vw);
  opacity: 0.26;
  pointer-events: none;
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  transform: translateX(50%);
  width: min(23rem, 34vw);
}

.hero-inner,
.section-inner,
.footer-inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.hero-inner {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  max-width: none;
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-row: 2;
  margin: 0 auto;
  max-width: 1180px;
  padding: 3.5rem 1.25rem 4rem;
  width: 100%;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.85rem);
  max-width: none;
  white-space: nowrap;
}

.hero-mascot {
  grid-row: 1;
  height: clamp(16rem, 30vw, 22rem);
  max-width: none;
  overflow: hidden;
  width: 100%;
}

.hero-mascot img {
  display: block;
  filter: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdc73;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
}

.lede {
  color: #f7f3e8;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  margin-top: 1.25rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.section {
  padding: 5rem 1.25rem;
}

.hero + .section {
  padding-top: 3rem;
}

.section.alt {
  background: var(--soft);
}

.section.sky {
  background: var(--sky);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.merch-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(24, 33, 30, 0.06);
  overflow: hidden;
}

.card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-image,
.product-logo-preview {
  aspect-ratio: 4 / 3;
  background: #f7f8f4;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
  width: 100%;
}

.product-logo-preview {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.product-logo-preview img {
  filter: drop-shadow(0 12px 20px rgba(24, 33, 30, 0.18));
  max-height: 100%;
  object-fit: contain;
}

.card p,
.feature p,
.split p,
.resource-list p,
.timeline p {
  color: var(--muted);
}

.feature {
  align-items: start;
  display: grid;
  gap: 0.85rem;
}

.icon {
  align-items: center;
  background: var(--mint);
  border: 1px solid rgba(34, 99, 74, 0.22);
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.3rem;
  height: 2.7rem;
  justify-content: center;
  width: 2.7rem;
}

.band {
  background: var(--brand-blue);
  color: #fff;
}

.band p {
  color: #d9e5dd;
}

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.page-hero {
  background: var(--brand-blue);
  color: #fff;
  overflow: hidden;
  padding: 5.5rem 1.25rem 4rem;
  position: relative;
}

.page-hero::after {
  background: url("assets/WeSpeakBlueFaceNoBG.png") center / contain no-repeat;
  bottom: -2.5rem;
  content: "";
  height: min(18rem, 38vw);
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  width: min(24rem, 42vw);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 .line {
  display: block;
}

.page-hero.with-image {
  background:
    linear-gradient(90deg, rgba(25, 34, 54, 0.86), rgba(25, 34, 54, 0.22)),
    url("assets/hive-boxes.jpg") center / cover;
}

.page-hero.health-image {
  background:
    linear-gradient(90deg, rgba(25, 34, 54, 0.84), rgba(25, 34, 54, 0.2)),
    url("assets/BeesWithMites.jpg") center / cover;
}

.page-hero.research-image {
  background:
    linear-gradient(90deg, rgba(25, 34, 54, 0.88), rgba(25, 34, 54, 0.28)),
    url("assets/beeResearch.jpg") center / cover;
}

.page-hero.nectar-hero::before {
  background:
    linear-gradient(90deg, rgba(63, 76, 102, 0.98) 0%, rgba(63, 76, 102, 0.9) 54%, rgba(63, 76, 102, 0.18) 100%),
    url("assets/beeFlower.jpg") top right / min(34rem, 42vw) auto no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-hero.get-involved-image {
  background: var(--brand-blue);
}

.page-hero.get-involved-image::before {
  background:
    linear-gradient(90deg, rgba(25, 34, 54, 0.98) 0%, rgba(25, 34, 54, 0.9) 48%, rgba(25, 34, 54, 0.24) 80%),
    url("assets/BeesHoldingHands.jpg") top right / auto 105% no-repeat;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-hero.get-involved-image::after {
  display: none;
}

.page-hero.bee-icon-hero::after {
  background-image: url("assets/bee_nobg.png");
  bottom: -2rem;
  height: min(21rem, 36vw);
  opacity: 0.3;
  right: max(1rem, calc((100vw - 1180px) / 2));
  transform: translateX(50%);
  width: min(21rem, 36vw);
}

.page-hero.about-hero::after {
  right: max(4rem, calc((100vw - 1180px) / 2 + 8rem));
  transform: none;
}

.page-hero.plants-hero::before {
  background: url("assets/WeSpeakBlueFaceNoBG.png") center / contain no-repeat;
  bottom: -2.25rem;
  content: "";
  height: min(16rem, 32vw);
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  width: min(22rem, 36vw);
}

.page-hero.plants-hero::after {
  background-image: url("assets/beeinvcolorNoBG.png");
  bottom: auto;
  height: min(35.7rem, 74vw);
  opacity: 0.82;
  right: max(1rem, calc((100vw - 1180px) / 2));
  top: -1rem;
  width: min(28.05rem, 46vw);
}

.page-hero p {
  color: #f3f1e9;
  font-size: 1.16rem;
  margin-top: 1rem;
  max-width: 760px;
}

.split {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.split img.mission-image {
  aspect-ratio: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  object-fit: contain;
}

.list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.list li {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.85rem 1rem;
}

.record-forms {
  display: grid;
  gap: 1rem;
}

.involvement-section {
  background: var(--paper);
}

.interest-panel {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 2rem;
}

.section-head.compact {
  margin-bottom: 1rem;
}

.record-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.record-form label,
.amount-field {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.35rem;
}

.record-form input:not([type="checkbox"]):not([type="file"]),
.record-form select,
.record-form textarea,
.amount-field input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 2.6rem;
  padding: 0.5rem 0.75rem;
}

.record-form input[type="checkbox"] {
  accent-color: var(--leaf);
}

.record-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.record-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0.9rem 1rem 1rem;
}

.record-form legend {
  color: var(--ink);
  font-weight: 900;
  padding: 0 0.35rem;
}

.record-form fieldset label {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
}

.upload-button {
  background: var(--brand-blue);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  max-width: 13rem;
  padding: 0.75rem 1rem;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-status {
  color: var(--leaf-dark);
  font-weight: 800;
}

.upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.upload-chip {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
}

.record-form .upload-button {
  color: #fff;
}

.upload-button input {
  display: none;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 0.35rem;
  padding-left: 1rem;
}

.plant-picker {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.plant-picker label {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-weight: 800;
}

select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 2.6rem;
  min-width: 13rem;
  padding: 0.5rem 0.75rem;
}

.plant-intro {
  color: var(--muted);
  max-width: 760px;
}

.season-grid {
  margin: 2rem 0;
}

.plant-results {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plant-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.plant-card h3 a {
  color: var(--leaf-dark);
  text-decoration-color: rgba(34, 99, 74, 0.28);
  text-underline-offset: 0.18em;
}

.plant-card h3 a:hover {
  color: var(--leaf);
}

.plant-card .plant-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.plant-note {
  border-radius: var(--radius);
  padding: 0.85rem;
}

.plant-note.importance {
  background: #edf0ee;
}

.plant-note.conditions {
  background: #dfe7ed;
}

.nectar-flow-section {
  margin-bottom: 2rem;
}

.nectar-flow-detail {
  display: grid;
  gap: 2rem;
}

.nectar-record-cards {
  margin-top: 0.5rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  background: var(--soft);
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-list a {
  color: var(--leaf);
  font-weight: 800;
}

.about-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 0.62fr);
}

.quote-panel {
  background: var(--brand-blue);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  position: sticky;
  top: 8rem;
}

.quote-panel .eyebrow {
  color: #ffdc73;
}

.quote-panel blockquote {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1rem;
}

.quote-panel blockquote p {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 700;
}

.quote-panel cite {
  color: #d9e5dd;
  font-style: normal;
  font-weight: 800;
}

.quote-intro {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.quote-panel > p:last-child {
  color: #d9e5dd;
}

.about-prose {
  display: grid;
  gap: 1.15rem;
}

.about-prose p {
  color: var(--muted);
  font-size: 1.08rem;
}

.leadership-section {
  display: grid;
  gap: 1.5rem;
}

.leader-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(24, 33, 30, 0.06);
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.featured-leader {
  align-items: center;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
}

.advisor-card {
  align-items: center;
  grid-template-columns: minmax(12rem, 0.24fr) minmax(0, 0.76fr);
}

.advisor-card div {
  display: grid;
  gap: 0.75rem;
}

.leader-card h3 {
  margin-bottom: 0.35rem;
}

.leader-card p {
  color: var(--muted);
}

.leader-title {
  color: var(--leaf-dark);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.board-label {
  margin-bottom: 0.75rem;
}

.photo-placeholder {
  align-items: center;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(63, 76, 102, 0.1), rgba(34, 99, 74, 0.12)),
    #fffdf6;
  border: 1px dashed rgba(24, 33, 30, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 10rem;
  text-transform: uppercase;
}

.leader-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.cta {
  background: var(--brand-blue);
  color: #fff;
  padding: 4rem 1.25rem;
}

.cta .section-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.cta p {
  color: #d9e5dd;
  max-width: 660px;
}

.site-footer {
  background: #111916;
  color: #e9eee9;
  padding: 3rem 1.25rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.footer-inner.footer-nav-only {
  grid-template-columns: 1fr;
}

.footer-inner p,
.footer-inner a {
  color: #b8c6bd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .nav {
    align-items: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .merch-grid,
  .stats,
  .split,
  .about-layout,
  .featured-leader,
  .advisor-card,
  .leader-grid,
  .form-grid,
  .plant-results,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero::after {
    bottom: -2rem;
    height: 15rem;
    opacity: 0.18;
    right: -3.5rem;
    top: auto;
    width: 15rem;
  }

  .hero-mascot {
    height: 18rem;
  }

  .page-hero.get-involved-image::before {
    background:
      linear-gradient(90deg, rgba(25, 34, 54, 0.98) 0%, rgba(25, 34, 54, 0.9) 58%, rgba(25, 34, 54, 0.34) 100%),
      url("assets/BeesHoldingHands.jpg") top right / auto 96% no-repeat;
  }

  .page-hero.nectar-hero::before {
    background:
      linear-gradient(90deg, rgba(63, 76, 102, 0.98) 0%, rgba(63, 76, 102, 0.92) 62%, rgba(63, 76, 102, 0.44) 100%),
      url("assets/beeFlower.jpg") top right / 17rem auto no-repeat;
  }

  .page-hero.plants-hero::after {
    opacity: 0.36;
    right: -8rem;
  }

  .page-hero.plants-hero::before {
    opacity: 0.12;
    right: -5rem;
  }

  .section-head,
  .plant-picker,
  .cta .section-inner {
    align-items: start;
    flex-direction: column;
  }

  .quote-panel {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 3.25rem 1rem 4.25rem;
  }

  .hero h1 {
    white-space: normal;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  .brand-domain {
    display: none;
  }

  .page-hero::after {
    opacity: 0.1;
    width: 12rem;
  }

  .page-hero.bee-icon-hero::after {
    opacity: 0.14;
    right: -6rem;
    height: 15rem;
    bottom: -2rem;
    width: 15rem;
  }

  .page-hero.about-hero::after {
    opacity: 0.18;
    right: -1.5rem;
  }

  .page-hero.plants-hero::after {
    height: 25.5rem;
    right: -9rem;
    width: 19.55rem;
  }

  .page-hero.plants-hero::before {
    bottom: -1rem;
    height: 10rem;
    width: 14rem;
  }
}
