.site-main--standard-page {
  color: #183300;
  background: #fff;
}

.standard-page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(390px, 38.7vw, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #07190e;
}

.standard-page-hero__background,
.standard-page-hero__shade {
  position: absolute;
  inset: 0;
}

.standard-page-hero__background {
  z-index: -3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.025);
}

.standard-page-hero__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, rgba(10, 35, 19, 0.08), rgba(0, 10, 4, 0.58) 88%),
    linear-gradient(90deg, rgba(0, 12, 5, 0.5), rgba(4, 23, 12, 0.08) 50%, rgba(0, 12, 5, 0.5));
}

.standard-page-hero__foliage {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.standard-page-hero__foliage img {
  display: block;
  width: 100%;
  height: auto;
}

.standard-page-hero__foliage--left-top {
  top: 0;
  left: 0;
  width: clamp(210px, 20vw, 390px);
}

.standard-page-hero__foliage--right-top {
  top: 0;
  right: 0;
  width: clamp(190px, 21vw, 350px);
}

.standard-page-hero__foliage--left-bottom {
  bottom: 0;
  left: 0;
  width: clamp(190px, 21vw, 350px);
}

.standard-page-hero__foliage--right-bottom {
  right: 0;
  bottom: 0;
  width: clamp(230px, 22vw, 420px);
}

.standard-page-hero__content {
  position: relative;
  z-index: 8;
  width: min(calc(100% - 40px), 1040px);
  padding: clamp(150px, 13vw, 220px) 0 clamp(105px, 9vw, 170px);
  text-align: center;
}

.standard-page-hero__title-wrap {
  position: relative;
  display: inline-block;
}

.standard-page-hero h1 {
  margin: 0;
  color: #9bdf35;
  background: linear-gradient(180deg, #f4f5ef 0%, #e9eee2 36%, #a9e74b 70%, #62bd04 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 4px 2px rgba(0, 12, 5, 0.38));
  font-family: var(--heading-font);
  font-size: clamp(3.8rem, 6.8vw, 8.2rem);
  font-weight: 400;
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.standard-page-hero__parrot {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(100% - clamp(32px, 3.5vw, 62px));
  width: clamp(110px, 13vw, 210px);
  max-width: none;
  height: auto;
  transform: translateY(-66%);
  pointer-events: none;
}

.standard-page-hero__content > p {
  width: min(100%, 720px);
  margin: 20px auto 0;
  color: rgba(245, 250, 239, 0.9);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.6;
}

.standard-page-section {
  min-height: 320px;
  padding: clamp(72px, 7vw, 130px) 0 clamp(90px, 9vw, 160px);
  background:
    radial-gradient(circle at 50% 0, rgba(208, 230, 240, 0.78), rgba(255, 255, 255, 0) 55%),
    #fff;
}

.standard-page-content {
  color: #203814;
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.72;
}

.standard-page-content::after {
  display: table;
  clear: both;
  content: "";
}

.standard-page-content > :first-child {
  margin-top: 0;
}

.standard-page-content > :last-child {
  margin-bottom: 0;
}

.standard-page-content h2,
.standard-page-content h3,
.standard-page-content h4,
.standard-page-content h5,
.standard-page-content h6 {
  margin: 1.4em 0 0.45em;
  color: #376b05;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.standard-page-content h2 {
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  background: linear-gradient(180deg, #315c00 0%, #61a90b 56%, #86cc1d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.standard-page-content h3 {
  font-size: clamp(2rem, 3.2vw, 3.75rem);
}

.standard-page-content h4 {
  font-size: clamp(1.55rem, 2.1vw, 2.45rem);
}

.standard-page-content h5 {
  font-size: clamp(1.25rem, 1.5vw, 1.65rem);
}

.standard-page-content h6 {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
}

.standard-page-content p,
.standard-page-content ul,
.standard-page-content ol,
.standard-page-content table,
.standard-page-content pre,
.standard-page-content blockquote,
.standard-page-content figure,
.standard-page-content .wp-block-columns,
.standard-page-content .wp-block-group {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.standard-page-content a:not(.wp-element-button):not(.wp-block-button__link) {
  color: #4d930b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 180ms ease;
}

.standard-page-content a:not(.wp-element-button):not(.wp-block-button__link):hover {
  color: #274f00;
}

.standard-page-content ul,
.standard-page-content ol {
  padding-left: 1.4em;
}

.standard-page-content li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}

.standard-page-content li::marker {
  color: #67af10;
  font-weight: 700;
}

.standard-page-content blockquote {
  position: relative;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(88, 146, 31, 0.42);
  border-left: 6px solid #69b515;
  border-radius: 0 22px 22px 0;
  background: rgba(226, 239, 245, 0.7);
  font-size: 1.08em;
}

.standard-page-content blockquote > :last-child {
  margin-bottom: 0;
}

.standard-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: clamp(12px, 1.5vw, 24px);
}

.standard-page-content figure {
  max-width: 100%;
}

.standard-page-content figcaption,
.standard-page-content .wp-caption-text {
  margin-top: 0.65rem;
  color: #61705a;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.standard-page-content .alignwide {
  width: min(calc(100vw - var(--page-gutter) * 2), var(--container-max));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.standard-page-content .alignfull {
  width: min(100vw, var(--site-max));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.standard-page-content hr,
.standard-page-content .wp-block-separator {
  height: 1px;
  margin: clamp(38px, 5vw, 70px) 0;
  border: 0;
  background: rgba(64, 94, 44, 0.28);
}

.standard-page-content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid rgba(75, 112, 48, 0.25);
  border-radius: 16px;
  background: #fff;
}

.standard-page-content th,
.standard-page-content td {
  padding: 15px 18px;
  border-right: 1px solid rgba(75, 112, 48, 0.18);
  border-bottom: 1px solid rgba(75, 112, 48, 0.18);
  text-align: left;
}

.standard-page-content th:last-child,
.standard-page-content td:last-child {
  border-right: 0;
}

.standard-page-content tr:last-child td {
  border-bottom: 0;
}

.standard-page-content th {
  color: #fff;
  background: #163015;
  font-weight: 700;
}

.standard-page-content code,
.standard-page-content pre {
  font-family: Consolas, Monaco, monospace;
}

.standard-page-content code {
  padding: 0.15em 0.38em;
  border-radius: 5px;
  background: #e4edf0;
  font-size: 0.9em;
}

.standard-page-content pre {
  max-width: 100%;
  padding: 22px;
  overflow-x: auto;
  color: #eef7e7;
  border-radius: 14px;
  background: #102317;
}

.standard-page-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.standard-page-content .wp-block-button__link,
.standard-page-content .wp-element-button,
.standard-page-content button,
.standard-page-content input[type="button"],
.standard-page-content input[type="submit"] {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  color: #fff;
  cursor: pointer;
  border: 1px solid #5b9f0e;
  border-radius: 999px;
  background: #5b9f0e;
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.standard-page-content .wp-block-button__link:hover,
.standard-page-content .wp-element-button:hover,
.standard-page-content button:hover,
.standard-page-content input[type="button"]:hover,
.standard-page-content input[type="submit"]:hover {
  color: #dfffac;
  background: #17320e;
  transform: translateY(-1px);
}

.standard-page-content label {
  display: block;
  margin-bottom: 7px;
  color: #213916;
  font-weight: 700;
}

.standard-page-content input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.standard-page-content select,
.standard-page-content textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  color: #203814;
  border: 1px solid rgba(91, 159, 14, 0.58);
  border-radius: 16px;
  outline: 0;
  background: rgba(249, 252, 246, 0.92);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.standard-page-content textarea {
  min-height: 150px;
  resize: vertical;
}

.standard-page-content input:focus,
.standard-page-content select:focus,
.standard-page-content textarea:focus {
  border-color: #5b9f0e;
  box-shadow: 0 0 0 3px rgba(91, 159, 14, 0.14);
}

.standard-page-content details {
  margin-bottom: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(75, 112, 48, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.standard-page-content summary {
  color: #284b0a;
  cursor: pointer;
  font-weight: 700;
}

.standard-page-content .page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 45px;
}

.standard-page-content .page-links > * {
  min-width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(91, 159, 14, 0.45);
  border-radius: 999px;
}

@media (max-width: 767px) {
  .standard-page-hero {
    min-height: 420px;
  }

  .standard-page-hero__content {
    padding: 145px 0 105px;
  }

  .standard-page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .standard-page-hero__parrot {
    top: -70px;
    right: auto;
    left: 50%;
    width: 105px;
    transform: translateX(-50%);
  }

  .standard-page-hero__foliage--left-top,
  .standard-page-hero__foliage--right-top {
    width: 180px;
  }

  .standard-page-hero__foliage--left-bottom,
  .standard-page-hero__foliage--right-bottom {
    width: 175px;
  }

  .standard-page-section {
    padding-top: 62px;
  }

  .standard-page-content h2 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .standard-page-content h3 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .standard-page-content .alignwide,
  .standard-page-content .alignfull {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
  }

  .standard-page-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .standard-page-hero__background {
    transform: none;
  }

  .standard-page-content *,
  .standard-page-content *::before,
  .standard-page-content *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
