/**
 * CoreTheme shell
 *
 * Header, menu and footer chrome for the CoreTheme shell. Uses only
 * `goe-shell__*` selectors and GOE tokens.
 */

.goe-shell__skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--goe-primary, #2563eb);
  color: var(--goe-primary-fg, #fff);
  border-radius: var(--goe-radius-sm, 0.6rem);
  transform: translateY(-220%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.goe-shell__skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.goe-shell {
  font-family: var(--goe-shell-font-family, "KoHo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
  overflow-x: hidden;
  --goe-layout-gutter: clamp(1rem, 3vw, 2rem);
  --goe-layout-contained-max: 72ch;
  --goe-layout-wide-max: 1180px;
  --goe-layout-contained-width: min(var(--goe-layout-contained-max), calc(100% - (var(--goe-layout-gutter) * 2)));
  --goe-layout-wide-width: min(var(--goe-layout-wide-max), calc(100% - (var(--goe-layout-gutter) * 2)));
  --goe-grid-width: var(--goe-layout-wide-width);
  --goe-page-default-layout-width: var(--goe-layout-contained-width);
  --goe-page-grid-width: var(--goe-grid-width);
  --goe-section-space: clamp(2rem, 5vw, 3.5rem);
  --goe-section-space-lg: clamp(3rem, 8vw, 5rem);
  --goe-block-gap: clamp(1.125rem, 2.5vw, 1.75rem);
  --goe-heading-gap: clamp(0.6rem, 1.5vw, 0.95rem);
  --goe-font-size-s: 0.95rem;
  --goe-font-size-m: 1.15rem;
  --goe-font-size-l: clamp(1.35rem, 2.5vw, 1.75rem);
  --goe-font-size-xl: clamp(1.85rem, 4vw, 2.75rem);
  --goe-full-width-content-width: var(--goe-layout-wide-width);
  --goe-transparent-content-extra-space: 0px;
  --goe-card-image-ratio: 4 / 3;
  --goe-title-width: 14ch;
  --goe-editorial-surface-start: color-mix(in srgb, var(--goe-primary, #2d6a4f) 3%, #fff);
  --goe-editorial-surface-end: #fff;
  --goe-editorial-accent-start: color-mix(in srgb, var(--goe-primary-dark, #1f4e39) 74%, #0c2518);
  --goe-editorial-accent-end: color-mix(in srgb, var(--goe-primary, #2d6a4f) 66%, #173625);
  --goe-editorial-accent-glow: color-mix(in srgb, var(--goe-primary, #2d6a4f) 32%, transparent);
  --goe-editorial-card-bg: rgba(255, 255, 255, 0.96);
  --goe-editorial-card-bg-soft-start: color-mix(in srgb, var(--goe-primary, #2d6a4f) 6%, #fff);
  --goe-editorial-card-bg-soft-end: rgba(255, 255, 255, 0.98);
  --goe-editorial-card-border: color-mix(in srgb, var(--goe-text, #1a2e1a) 8%, transparent);
  --goe-editorial-card-shadow: 0 18px 48px rgba(14, 35, 23, 0.08);
  --goe-editorial-copy-color: color-mix(in srgb, var(--goe-text, #1a2e1a) 86%, transparent);
  --goe-editorial-copy-light: color-mix(in srgb, var(--goe-shell-header-transparent-text, #fff) 88%, transparent);
  --goe-editorial-eyebrow-dark: color-mix(in srgb, var(--goe-text, #1a2e1a) 54%, transparent);
  --goe-editorial-on-accent: var(--goe-shell-header-transparent-text, #fff);
}

body.goe-shell h1,
body.goe-shell h2,
body.goe-shell h3,
body.goe-shell h4,
body.goe-shell h5,
body.goe-shell h6 {
  font-family: var(--goe-shell-heading-font, "KoHo", system-ui, sans-serif);
}

body.goe-shell :where(.has-small-font-size) {
  font-size: var(--goe-font-size-s) !important;
}

body.goe-shell :where(.has-medium-font-size) {
  font-size: var(--goe-font-size-m) !important;
}

body.goe-shell :where(.has-large-font-size) {
  font-size: var(--goe-font-size-l) !important;
}

body.goe-shell :where(.has-x-large-font-size) {
  font-size: var(--goe-font-size-xl) !important;
}

.goe-shell__chrome {
  position: relative;
  z-index: 900;
  --goe-shell-header-height: 0px;
  --goe-shell-topbar-height: 0px;
  --goe-shell-transparent-safe-offset: 0px;
  --goe-shell-header-logo-height: 2.5rem;
  --goe-shell-header-bar-padding: 1rem;
  --goe-shell-menu-font-size: 1rem;
  --goe-shell-menu-gap: 1.6rem;
  --goe-shell-topbar-font-size: 0.8125rem;
  --goe-shell-topbar-padding-y: 0.45rem;
  --goe-shell-topbar-icon-size: 0.95rem;
  --goe-shell-submenu-offset: 0.55rem;
  --goe-shell-submenu-parent-padding: 0.45rem;
  --goe-shell-submenu-radius-top: 0.6rem;
  --goe-shell-submenu-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  --goe-shell-submenu-nested-top: -0.45rem;
  --goe-shell-submenu-nested-shift: 0.2rem;
  --goe-shell-header-offset: calc(var(--goe-shell-header-logo-height) + (var(--goe-shell-header-bar-padding) * 2));
  --goe-shell-topbar-offset: 0px;
  --goe-shell-shell-offset: var(--goe-shell-header-offset);
}

.goe-shell__chrome.goe-shell--submenu-connected {
  --goe-shell-submenu-offset: 0;
  --goe-shell-submenu-parent-padding: 0;
  --goe-shell-submenu-radius-top: 0;
  --goe-shell-submenu-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  --goe-shell-submenu-nested-top: -1px;
  --goe-shell-submenu-nested-shift: 1px;
}

.goe-shell__topbar {
  background: var(--goe-shell-topbar-bg, var(--goe-shell-header-bg, var(--goe-surface, #fff)));
  color: var(--goe-shell-topbar-text, var(--goe-text, #1a2e1a));
  font-size: var(--goe-shell-topbar-font-size);
  border-bottom: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.goe-shell__chrome.goe-shell--has-topbar {
  --goe-shell-topbar-offset: var(--goe-shell-topbar-height, 0px);
  --goe-shell-shell-offset: var(--goe-shell-shell-height, calc(var(--goe-shell-header-offset) + var(--goe-shell-topbar-offset)));
}

.goe-shell__topbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--goe-shell-topbar-padding-y) 1.25rem;
}

.goe-shell__topbar-start,
.goe-shell__topbar-center,
.goe-shell__topbar-end {
  min-width: 0;
}

.goe-shell__topbar-start {
  justify-self: start;
}

.goe-shell__topbar-center {
  justify-self: center;
  text-align: center;
}

.goe-shell__topbar-end {
  justify-self: end;
}

.goe-shell__topbar-content {
  color: inherit;
}

.goe-shell__topbar-content > * {
  margin: 0;
}

.goe-shell__topbar-content a {
  color: inherit;
}

.goe-shell__social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.goe-shell__social-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: var(--goe-shell-topbar-icon-size);
  min-width: var(--goe-shell-topbar-icon-size);
  height: var(--goe-shell-topbar-icon-size);
  min-height: var(--goe-shell-topbar-icon-size);
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.goe-shell__social-link:hover {
  opacity: 1;
}

.goe-shell__social-icon {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  fill: currentColor;
}

.goe-shell__secondary {
  margin: 0;
}

.goe-shell__secondary-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.goe-shell__secondary-menu a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.goe-shell__secondary-menu a:hover,
.goe-shell__secondary-menu .current-menu-item > a {
  opacity: 1;
}

.goe-shell__secondary-menu .sub-menu {
  display: none;
}

.goe-shell__header {
  position: relative;
  z-index: 900;
  min-height: var(--goe-shell-header-offset);
  background: var(--goe-shell-header-bg, var(--goe-surface, #fff));
  border-bottom: 1px solid transparent;
  color: var(--goe-shell-header-text, var(--goe-text, #1a2e1a));
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.goe-shell__chrome.goe-shell--sticky-shell {
  position: sticky;
  top: 0;
  z-index: 920;
}

.goe-shell__chrome.goe-shell--sticky-topbar .goe-shell__topbar {
  position: sticky;
  top: 0;
  z-index: 920;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.goe-shell__chrome.goe-shell--sticky-header {
  z-index: 920;
}

.goe-shell__chrome.goe-shell--sticky-header .goe-shell__header {
  position: sticky;
  top: 0;
  z-index: 920;
}

.goe-shell__chrome.goe-shell--topbar-transparent .goe-shell__topbar {
  background: transparent;
  color: var(--goe-shell-header-transparent-text, #fff);
}

.goe-shell__chrome.goe-shell--header-transparent .goe-shell__header {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--goe-shell-header-transparent-text, #fff);
}

.goe-shell__chrome.goe-shell--header-transparent .goe-shell__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.goe-shell__chrome.goe-shell--header-transparent .goe-shell__bar {
  position: relative;
  z-index: 1;
}

.goe-shell--scrolled .goe-shell__header {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.goe-shell--scrolled .goe-shell__chrome.goe-shell--topbar-transparent .goe-shell__topbar {
  background: var(--goe-shell-topbar-bg, var(--goe-shell-header-bg, var(--goe-surface, #fff)));
  color: var(--goe-shell-topbar-text, var(--goe-shell-header-text, var(--goe-text, #1a2e1a)));
}

.goe-shell--scrolled .goe-shell__chrome.goe-shell--header-transparent .goe-shell__header {
  background: var(--goe-shell-header-bg, var(--goe-surface, #fff));
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: var(--goe-shell-header-text, var(--goe-text, #1a2e1a));
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

.goe-shell--scrolled .goe-shell__chrome.goe-shell--header-transparent .goe-shell__header::before {
  opacity: 0;
}

.goe-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--goe-shell-header-offset);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--goe-shell-header-bar-padding) 1.5rem;
  box-sizing: border-box;
}

.goe-shell__brand {
  display: inline-flex;
  align-items: center;
  max-width: min(50vw, 22rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: inherit;
}

.goe-shell__brand--logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  max-width: none;
  overflow: visible;
}

.goe-shell__logo {
  display: block;
  width: auto;
  height: var(--goe-shell-header-logo-height);
}

.goe-shell__logo--dark {
  display: none;
}

.goe-shell__chrome:not(.goe-shell--header-transparent) .goe-shell__logo--light {
  display: none;
}

.goe-shell__chrome:not(.goe-shell--header-transparent) .goe-shell__logo--dark {
  display: block;
}

.goe-shell--scrolled .goe-shell__chrome.goe-shell--header-transparent .goe-shell__logo--light {
  display: none;
}

.goe-shell--scrolled .goe-shell__chrome.goe-shell--header-transparent .goe-shell__logo--dark {
  display: block;
}

.goe-shell__desktop-nav {
  display: none;
  margin-left: auto;
}

.goe-shell__desktop-menu {
  display: flex;
  align-items: center;
  gap: var(--goe-shell-menu-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: var(--goe-shell-menu-font-size);
}

.goe-shell__desktop-menu li {
  position: relative;
}

.goe-shell__desktop-menu > li {
  padding-block-end: calc(var(--goe-shell-submenu-offset) + var(--goe-shell-submenu-parent-padding));
  margin-block-end: calc((var(--goe-shell-submenu-offset) + var(--goe-shell-submenu-parent-padding)) * -1);
}

.goe-shell__desktop-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.goe-shell__desktop-menu a:hover,
.goe-shell__desktop-menu .current-menu-item > a,
.goe-shell__desktop-menu .current-menu-ancestor > a {
  opacity: 1;
}

.goe-shell__desktop-menu .menu-item-has-children > a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1em);
  opacity: 0.7;
}

.goe-shell__desktop-menu .sub-menu {
  position: absolute;
  top: calc(100% + var(--goe-shell-submenu-offset));
  left: 0;
  display: none;
  min-width: 13rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--goe-shell-submenu-bg, var(--goe-shell-header-bg, var(--goe-surface, #fff)));
  color: var(--goe-shell-submenu-text, var(--goe-text, #1a2e1a));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--goe-shell-submenu-radius-top) var(--goe-shell-submenu-radius-top) var(--goe-radius-sm, 0.6rem) var(--goe-radius-sm, 0.6rem);
  box-shadow: var(--goe-shell-submenu-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.4rem);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.goe-shell__chrome.goe-shell--submenu-connected .goe-shell__desktop-menu > li > .sub-menu {
  border-top-width: 0;
}

.goe-shell__desktop-menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(var(--goe-shell-submenu-offset) + 1rem);
}

.goe-shell__desktop-menu > li:hover > .sub-menu,
.goe-shell__desktop-menu > li:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.goe-shell__desktop-menu .sub-menu a {
  display: block;
  padding: 0.45rem 1.2rem;
  white-space: nowrap;
  opacity: 0.85;
}

.goe-shell__desktop-menu .sub-menu a:hover,
.goe-shell__desktop-menu .sub-menu .current-menu-item > a {
  opacity: 1;
}

.goe-shell__desktop-menu .sub-menu li {
  position: relative;
}

.goe-shell__desktop-menu .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.goe-shell__desktop-menu .sub-menu .menu-item-has-children > a::after {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.7;
}

.goe-shell__desktop-menu .sub-menu .sub-menu {
  top: var(--goe-shell-submenu-nested-top);
  left: calc(100% - var(--goe-shell-submenu-nested-shift));
}

.goe-shell__desktop-menu > li > .sub-menu.goe-shell__submenu--align-right {
  left: auto;
  right: 0;
}

.goe-shell__desktop-menu .sub-menu .sub-menu.goe-shell__submenu--drop-left {
  left: auto;
  right: calc(100% - var(--goe-shell-submenu-nested-shift));
}

.goe-shell__desktop-menu .sub-menu > li:hover > .sub-menu,
.goe-shell__desktop-menu .sub-menu > li:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.goe-shell__menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.3rem 0.2rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.goe-shell__menu-label {
  text-transform: none;
}

.goe-shell__burger {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 0.65rem;
}

.goe-shell__burger-bar,
.goe-shell__burger-bar::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.goe-shell__burger-bar {
  top: 0;
}

.goe-shell__burger-bar::before {
  content: "";
  top: 0.55rem;
  width: 70%;
}

.goe-shell__overlay {
  position: fixed;
  top: var(--goe-shell-mobile-panel-top, 0px);
  left: 0;
  bottom: 0;
  right: auto;
  z-index: 930;
  display: block;
  width: 100dvw;
  max-width: 100dvw;
  padding: 0 0.85rem 0.85rem;
  background: linear-gradient(to bottom, rgba(10, 22, 12, 0.08), rgba(10, 22, 12, 0.22) 22%, rgba(10, 22, 12, 0.32));
  color: var(--goe-shell-header-text, var(--goe-text, #1a2e1a));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  overscroll-behavior: contain;
}

.goe-shell__overlay[hidden] {
  display: none;
}

.goe-shell--overlay-open .goe-shell__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--topbar-transparent .goe-shell__topbar {
  background: var(--goe-shell-topbar-bg, var(--goe-shell-header-bg, var(--goe-surface, #fff)));
  color: var(--goe-shell-topbar-text, var(--goe-shell-header-text, var(--goe-text, #1a2e1a)));
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--header-transparent .goe-shell__header {
  background: var(--goe-shell-header-bg, var(--goe-surface, #fff));
  color: var(--goe-shell-header-text, var(--goe-text, #1a2e1a));
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--header-transparent .goe-shell__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(16, 35, 18, 0.12);
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--header-transparent .goe-shell__header::before {
  opacity: 0;
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--header-transparent .goe-shell__logo--light {
  display: none;
}

.goe-shell--overlay-open .goe-shell__chrome.goe-shell--header-transparent .goe-shell__logo--dark {
  display: block;
}

.goe-shell__overlay-inner {
  position: relative;
  width: min(calc(100dvw - 1.7rem), 980px);
  max-width: calc(100dvw - 1.7rem);
  margin: 0 auto;
  padding: 0.35rem 1.25rem 0.55rem;
  background: var(--goe-shell-header-bg, var(--goe-surface, #fff));
  border: 1px solid rgba(16, 35, 18, 0.08);
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 20px 44px rgba(16, 35, 18, 0.16);
  max-height: calc(100vh - var(--goe-shell-mobile-panel-top, 0px) - 0.85rem);
  overflow: auto;
  overscroll-behavior: contain;
}

.goe-shell__overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.goe-shell__overlay-menu > li {
  border-top: 1px solid rgba(16, 35, 18, 0.08);
}

.goe-shell__overlay-menu > li:first-child {
  border-top: 0;
}

.goe-shell__overlay-menu a {
  display: block;
  padding: 1rem 0;
  font-family: var(--goe-shell-font-family, inherit);
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  opacity: 1;
  transition: color 0.2s ease;
}

.goe-shell__overlay-menu a:hover,
.goe-shell__overlay-menu .current-menu-item > a {
  color: var(--goe-primary, currentColor);
}

.goe-shell__overlay-menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.1rem;
  border-left: 1px solid rgba(16, 35, 18, 0.1);
}

.goe-shell__overlay-menu .sub-menu a {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.88;
}

.goe-shell__overlay-menu .menu-item-has-children.is-collapsible > .sub-menu {
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.goe-shell__overlay-menu .menu-item-has-children.is-collapsible.is-open > .sub-menu {
  margin: 0 0 0.75rem;
  padding-top: 0.2rem;
  padding-bottom: 0.1rem;
}

.goe-shell__overlay-item-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  cursor: pointer;
}

.goe-shell__overlay-parent-link {
  flex: 1 1 auto;
}

.goe-shell__overlay-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.goe-shell__overlay-submenu-toggle::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.goe-shell__overlay-menu .menu-item-has-children.is-open > .goe-shell__overlay-item-row .goe-shell__overlay-submenu-toggle::before {
  transform: rotate(-135deg);
}

.goe-shell--overlay-open .goe-shell__burger-bar {
  transform: rotate(45deg) translateY(0.22rem);
}

.goe-shell--overlay-open .goe-shell__burger-bar::before {
  width: 100%;
  transform: rotate(-90deg) translateX(-0.56rem);
}

.goe-shell__main {
  min-height: 50vh;
  position: relative;
}

body.goe-shell--has-transparent-chrome .goe-shell__main {
  margin-top: calc(-1 * var(--goe-shell-transparent-safe-offset, 0px));
}

/* Shared layout system
   -------------------------------------------------------------------------- */

.goe-layout,
.goe-layout--full {
  width: 100%;
  min-width: 0;
}

.goe-layout__inner,
.goe-layout__inner--wide {
  width: var(--goe-layout-wide-width);
  margin-inline: auto;
}

.goe-layout__inner--contained {
  width: var(--goe-layout-contained-width);
  margin-inline: auto;
}

.goe-layout__inner--full {
  width: 100%;
  margin-inline: 0;
}

/* Shared content widths
   -------------------------------------------------------------------------- */

.goe-shell__content,
.goe-singular__inner,
.goe-page__inner {
  width: var(--goe-layout-wide-width);
  margin-inline: auto;
}

.goe-shell__content {
  padding-inline: 0;
}

/* Owned plugin/core routes
   -------------------------------------------------------------------------- */

.goe-shell__owned {
  width: 100%;
}

.goe-singular {
  width: 100%;
  min-width: 0;
}

.goe-singular--owned {
  width: 100%;
}

.goe-singular__header {
  padding-block: var(--goe-section-space-lg);
  padding-inline: var(--goe-layout-gutter);
}

.goe-singular__header--owned {
  background: var(--goe-singular-header-bg, transparent);
}

.goe-singular--category_landing .go-category__hero-inner,
.goe-singular--experience_owned .go-experience__header,
.goe-singular--editor-owned .goe-editorial-hero:first-child .goe-editorial-hero__inner,
.goe-singular--standard .goe-page__header {
  padding-block-start: calc(var(--goe-shell-transparent-safe-offset, 0px) + var(--goe-transparent-content-extra-space, 0px));
}

.goe-singular__title {
  margin: 0;
  max-width: var(--goe-title-width, 14ch);
  font-family: var(--goe-shell-heading-font, inherit);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--goe-text, #1a2e1a);
}

.goe-singular__content {
  width: 100%;
  min-width: 0;
}

.goe-singular__content--full_bleed {
  width: 100%;
}

/* Category landing pages
   -------------------------------------------------------------------------- */

.goe-singular--category_landing .goe-singular__content {
  width: 100%;
}

/*
 * Category composition is plugin-owned.
 * The theme only normalizes shared content widths as a safety net.
 */
.goe-singular--category_landing .go-category {
  width: 100%;
  min-width: 0;
}

.goe-singular--category_landing .go-category__hero-inner,
.goe-singular--category_landing .go-category__practical,
.goe-singular--category_landing .go-category__faq {
  width: 100%;
  max-width: var(--goe-layout-wide-width);
  margin-inline: auto;
}

.goe-singular--category_landing .go-category__experiences,
.goe-singular--category_landing .go-category__related {
  width: 100%;
  max-width: var(--goe-grid-width);
  margin-inline: auto;
}

.goe-singular--category_landing .go-category__hero {
  width: 100%;
}

.goe-singular--category_landing .go-category__hero-inner {
  max-width: min(var(--goe-layout-contained-max), var(--goe-layout-wide-width));
}

/* Keep the first category hero flush with the neutral singular shell. */
.goe-singular--category_landing .go-category__hero:first-child {
  margin-top: 0;
}

/* Experience owned pages
   -------------------------------------------------------------------------- */

.goe-singular--experience_owned .goe-singular__content {
  width: 100%;
}

/*
 * Keep experience pages plugin-friendly. If the plugin has its own page shell,
 * it can still use full-width sections. If it outputs simpler content, this
 * prevents it from becoming visually uncontrolled.
 */
.goe-singular--experience_owned .go-exp,
.goe-singular--experience_owned .go-experience {
  width: 100%;
}

/* Editor-owned Gutenberg pages
   -------------------------------------------------------------------------- */

.goe-singular--editor-owned .goe-singular__content {
  width: 100%;
  min-width: 0;
}

.goe-singular--editor-owned .goe-singular__content > :first-child {
  margin-top: 0;
}

.goe-singular--editor-owned .goe-singular__content > * {
  margin-block: 0;
}

.goe-singular--editor-owned .goe-singular__content > :last-child {
  margin-bottom: 0;
}

.goe-singular--editor-owned .goe-singular__content > * + * {
  margin-block-start: var(--goe-block-gap);
}

.goe-singular--editor-owned .goe-singular__content > :where(.alignfull, .goe-editorial-band, .goe-migrated-section, .goe-migrated-columns, .goe-front) {
  margin-block-start: 0;
}

.goe-singular--editor-owned .goe-singular__content > :where(.alignfull, .goe-editorial-band, .goe-migrated-section, .goe-migrated-columns, .goe-front):first-child {
  margin-block-start: 0;
}

.goe-singular--editor-owned .goe-singular__content > :where(.alignfull, .goe-editorial-band, .goe-migrated-section, .goe-migrated-columns, .goe-front):last-child {
  margin-block-end: 0;
}

.goe-singular--editor-owned .goe-singular__content :where(
  .wp-block-group:not(.is-layout-flex):not(.is-layout-grid):not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-group__inner-container,
  .wp-block-cover:not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-cover__inner-container,
  .wp-block-column:not([class*="goe-editorial"]):not([class*="goe-migrated"]),
  .wp-block-media-text__content,
  .wp-block-details__content
) > * {
  margin-block: 0;
}

.goe-singular--editor-owned .goe-singular__content :where(
  .wp-block-group:not(.is-layout-flex):not(.is-layout-grid):not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-group__inner-container,
  .wp-block-cover:not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-cover__inner-container,
  .wp-block-column:not([class*="goe-editorial"]):not([class*="goe-migrated"]),
  .wp-block-media-text__content,
  .wp-block-details__content
) > * + * {
  margin-block-start: var(--goe-block-gap);
}

.goe-singular--editor-owned .goe-singular__content :where(
  .goe-singular__content,
  .wp-block-group:not(.is-layout-flex):not(.is-layout-grid):not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-group__inner-container,
  .wp-block-cover:not([class*="goe-editorial"]):not([class*="goe-migrated"]) > .wp-block-cover__inner-container,
  .wp-block-column:not([class*="goe-editorial"]):not([class*="goe-migrated"]),
  .wp-block-media-text__content,
  .wp-block-details__content
) > :where(h1, h2, h3, h4, h5, h6, .wp-block-heading) + * {
  margin-block-start: var(--goe-heading-gap);
}

/* Standard pages/posts
   -------------------------------------------------------------------------- */

.goe-page {
  width: 100%;
  padding-block: var(--goe-section-space);
}

.goe-page__header {
  margin-bottom: calc(var(--goe-section-space) * 0.75);
}

.goe-page__body,
.goe-singular--editor-owned .goe-singular__content {
  width: 100%;
  min-width: 0;
}

.goe-page__body > *,
.goe-singular--editor-owned .goe-singular__content > * {
  width: 100%;
  max-width: var(--goe-page-default-layout-width);
  margin-inline: auto;
}

.goe-page__body > :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid),
.goe-singular--editor-owned .goe-singular__content > :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid) {
  width: 100%;
  max-width: var(--goe-grid-width);
  margin-inline: auto;
}

.goe-page__body > .wp-block-shortcode:has(> :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid)),
.goe-singular--editor-owned .goe-singular__content > .wp-block-shortcode:has(> :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid)) {
  width: 100%;
  max-width: var(--goe-grid-width);
  margin-inline: auto;
}

.goe-page__body > .wp-block-shortcode > :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid),
.goe-singular--editor-owned .goe-singular__content > .wp-block-shortcode > :where(.go-exp-grid, .go-categories-grid, .go-cat-grid, .goe-grid) {
  width: 100%;
}

.goe-page__body > :where(
  p,
  ul,
  ol,
  dl,
  blockquote,
  pre,
  table,
  hr,
  h2,
  h3,
  h4,
  h5,
  h6,
  .wp-block-heading,
  .wp-block-paragraph,
  .wp-block-list,
  .wp-block-quote,
  .wp-block-table,
  .wp-block-preformatted,
  .wp-block-code,
  .wp-block-pullquote,
  .wp-block-details,
  .goe-page__pages
),
.goe-singular--editor-owned .goe-singular__content > :where(
  p,
  ul,
  ol,
  dl,
  blockquote,
  pre,
  table,
  hr,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .wp-block-heading,
  .wp-block-paragraph,
  .wp-block-list,
  .wp-block-quote,
  .wp-block-table,
  .wp-block-preformatted,
  .wp-block-code,
  .wp-block-pullquote,
  .wp-block-details,
  .goe-page__pages
) {
  width: 100%;
  max-width: var(--goe-layout-contained-width);
}

.goe-page__body > .alignwide,
.goe-singular--editor-owned .goe-singular__content > .alignwide {
  width: 100%;
  max-width: var(--goe-layout-wide-width);
  margin-inline: auto;
}

.goe-page__body > .alignfull,
.goe-singular--editor-owned .goe-singular__content > .alignfull {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.goe-page__body > .alignfull > :where(.wp-block-group__inner-container, .wp-block-cover__inner-container, .wp-block-columns, .wp-block-media-text, .wp-block-post-content),
.goe-singular--editor-owned .goe-singular__content > .alignfull > :where(.wp-block-group__inner-container, .wp-block-cover__inner-container, .wp-block-columns, .wp-block-media-text, .wp-block-post-content) {
  width: 100%;
  max-width: var(--goe-full-width-content-width);
  margin-inline: auto;
}

.goe-page__body > .alignfull > .alignwide,
.goe-singular--editor-owned .goe-singular__content > .alignfull > .alignwide {
  width: 100%;
  max-width: var(--goe-full-width-content-width);
  margin-inline: auto;
}

.goe-page__body > :where(.goe-migrated-section, .goe-migrated-columns),
.goe-singular--editor-owned .goe-singular__content > :where(.goe-migrated-section, .goe-migrated-columns) {
  margin-block: var(--goe-section-space);
}

.goe-page__body > :where(.goe-migrated-section, .goe-migrated-columns):first-child,
.goe-singular--editor-owned .goe-singular__content > :where(.goe-migrated-section, .goe-migrated-columns):first-child {
  margin-top: 0;
}

.goe-page__body > :where(.goe-migrated-section, .goe-migrated-columns):last-child,
.goe-singular--editor-owned .goe-singular__content > :where(.goe-migrated-section, .goe-migrated-columns):last-child {
  margin-bottom: 0;
}

.goe-migrated-section,
.goe-migrated-columns,
.goe-migrated-section__inner {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.goe-migrated-section--full {
  padding-block: var(--goe-section-space);
}

.goe-migrated-section :where(.goe-migrated-section, .goe-migrated-columns) {
  margin-block: 0;
}

.goe-migrated-section :where(.alignwide) {
  width: 100%;
  max-width: var(--goe-layout-wide-width);
  margin-inline: auto;
}

.goe-page__title {
  margin: 0;
  max-width: var(--goe-title-width, 14ch);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--goe-text, #1a2e1a);
}

.goe-page__media {
  margin: 0 0 calc(var(--goe-section-space) * 0.75);
}

.goe-page__media img,
.goe-page__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--goe-radius-lg, 1rem);
}

.goe-prose {
  width: 100%;
  line-height: 1.7;
  color: var(--goe-text, #1a2e1a);
}

.goe-prose > * {
  margin-top: 0;
  margin-bottom: 1.1em;
}

.goe-prose > *:last-child {
  margin-bottom: 0;
}

.goe-prose h2 {
  margin-top: 2em;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
}

.goe-prose h3 {
  margin-top: 1.6em;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  line-height: 1.25;
}

.goe-prose a {
  color: var(--goe-primary, #2563eb);
  text-underline-offset: 0.15em;
}

.goe-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--goe-radius-md, 0.6rem);
}

.goe-prose ul,
.goe-prose ol {
  padding-left: 1.4em;
}

.goe-prose li + li {
  margin-top: 0.4em;
}

.goe-prose blockquote {
  margin-inline: 0;
  padding-left: 1.2em;
  border-left: 4px solid var(--goe-primary, #2563eb);
  color: var(--goe-text-muted, #5a6b5a);
  font-style: italic;
}

.goe-page__pages {
  margin-top: 2rem;
  font-weight: 600;
}

.goe-shell__footer {
  position: relative;
  margin-top: 4rem;
  padding: 3.5rem 1.5rem 2.5rem;
  background-color: var(--goe-shell-footer-bg-color, #0e1a0e);
  background-image: var(--goe-shell-footer-bg, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.goe-shell__footer-overlay {
  position: absolute;
  inset: 0;
  background: var(--goe-shell-footer-overlay, rgba(12, 22, 12, 0.78));
  pointer-events: none;
}

.goe-shell__footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: var(--goe-shell-footer-text, #eef3e8);
}

.goe-shell__footer-widgets {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem 2.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.goe-shell__footer-col {
  min-width: 0;
}

.goe-shell__widget {
  margin: 0 0 1.5rem;
}

.goe-shell__widget:last-child {
  margin-bottom: 0;
}

.goe-shell__widget-title {
  margin: 0 0 0.85rem;
  font-family: var(--goe-shell-heading-font, inherit);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.goe-shell__widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.goe-shell__widget li {
  margin: 0 0 0.4rem;
}

.goe-shell__widget a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.goe-shell__widget a:hover {
  opacity: 1;
}

.goe-shell__footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.goe-shell__footer-widgets + .goe-shell__footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.goe-shell__footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.02rem;
}

.goe-shell__footer-menu a {
  color: var(--goe-shell-footer-link, inherit);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.goe-shell__footer-menu a:hover {
  opacity: 1;
}

.goe-shell__footer-payment {
  display: block;
  width: auto;
  height: 1.5rem;
  opacity: 0.9;
}

.goe-shell__footer-copy {
  margin: 0;
  opacity: 0.6;
  font-size: 0.85rem;
}

@media (min-width: 1000px) {
  .goe-shell__desktop-nav {
    display: block;
  }

  .goe-shell__menu-trigger {
    display: none;
  }
}

@media (max-width: 999px) {
  .goe-shell__chrome {
    --goe-shell-header-logo-height: 2.2rem;
    --goe-shell-header-bar-padding: 0.85rem;
  }

  .goe-shell__brand:not(.goe-shell__brand--logo) {
    max-width: calc(100vw - 10rem);
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .goe-shell__bar {
    padding-inline: 1rem;
  }

  .goe-shell__overlay {
    padding: 0;
  }

  .goe-shell__overlay-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem 0.55rem;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 18, 0.08);
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 12px 28px rgba(16, 35, 18, 0.14);
    max-height: calc(100dvh - var(--goe-shell-mobile-panel-top, 0px));
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .goe-shell__topbar-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .goe-shell__topbar-start,
  .goe-shell__topbar-center,
  .goe-shell__topbar-end {
    justify-self: center;
  }

  .goe-shell__secondary-menu {
    justify-content: center;
  }

  .goe-shell__overlay-inner {
    padding-inline: 1rem;
  }

  .goe-shell__footer-widgets {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

body.goe-shell--overlay-open {
  overflow: hidden;
}
