/* Pennsylvania Bigfoot Society - Para-Storm-inspired interface */

:root {
  --pbs-forest-950: #030d06;
  --pbs-forest-900: #07170c;
  --pbs-forest-850: #0a2112;
  --pbs-forest-800: #0d2b16;
  --pbs-forest-700: #1c4725;
  --pbs-forest-500: #3b7f41;
  --pbs-gold-400: #f9cb5f;
  --pbs-gold-600: #e0a526;
  --pbs-cream-50: #fef9ef;
  --pbs-cream-100: #f7f1e2;
  --pbs-cream-300: #e6dec8;
  --pbs-muted: #b9c8b8;
  --pbs-panel: rgba(10, 34, 20, 0.96);
  --pbs-panel-soft: rgba(17, 48, 28, 0.88);
  --pbs-border: rgba(183, 211, 188, 0.16);
  --pbs-shadow: 0 28px 60px rgba(3, 12, 6, 0.44);
  --pbs-shadow-soft: 0 16px 36px rgba(3, 12, 6, 0.3);
  --pbs-radius-xl: 28px;
  --pbs-radius-lg: 20px;
  --pbs-radius-md: 14px;
  --pbs-display: Georgia, "Times New Roman", serif;
  --pbs-body: "Montserrat", "Segoe UI", sans-serif;
  --pbs-transition: 180ms ease;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background-color: var(--pbs-forest-950);
  background-image:
    linear-gradient(155deg, rgba(2, 19, 8, 0.66), rgba(8, 48, 20, 0.48) 48%, rgba(3, 20, 9, 0.7)),
    url("deep-forest.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body.pbs-modern {
  position: relative;
  height: auto !important;
  min-height: 100vh !important;
  margin: 0 !important;
  color: var(--pbs-cream-100) !important;
  font-family: var(--pbs-body) !important;
  background: transparent !important;
  overflow-x: clip;
}

body.pbs-modern::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background-color: var(--pbs-forest-950);
  background-image:
    radial-gradient(circle at 18% -10%, rgba(111, 190, 107, 0.2), transparent 48%),
    radial-gradient(circle at 90% 12%, rgba(59, 127, 65, 0.24), transparent 55%),
    linear-gradient(155deg, rgba(2, 19, 8, 0.66), rgba(8, 48, 20, 0.48) 48%, rgba(3, 20, 9, 0.7)),
    url("deep-forest.jpg");
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.pbs-modern::after {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

body.pbs-modern * {
  box-sizing: border-box;
}

body.pbs-modern .wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: visible !important;
  background: transparent !important;
}

body.pbs-modern a {
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition),
    box-shadow var(--pbs-transition);
}

body.pbs-modern a:focus-visible,
body.pbs-modern button:focus-visible,
body.pbs-modern input:focus-visible,
body.pbs-modern textarea:focus-visible,
body.pbs-modern select:focus-visible {
  outline: 3px solid rgba(249, 203, 95, 0.72) !important;
  outline-offset: 3px;
}

/* Header and brand */

body.pbs-modern .unite-header,
body.pbs-modern.splash-page .unite-header,
body.pbs-modern.header-page .unite-header,
body.pbs-modern.no-header-page .unite-header {
  position: sticky !important;
  z-index: 1000 !important;
  top: 0 !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  padding: 0.55rem 0 !important;
  color: var(--pbs-cream-100) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055) !important;
  background: rgba(3, 18, 8, 0.88) !important;
  box-shadow: 0 18px 32px rgba(3, 12, 6, 0.34) !important;
  backdrop-filter: blur(18px) saturate(125%);
}

body.pbs-modern .unite-header .nav-wrap {
  position: static !important;
  width: 100% !important;
  min-height: 0 !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

body.pbs-modern .unite-header .nav-wrap > .container {
  position: relative;
  width: min(1440px, calc(100% - 1rem)) !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0.78rem 1rem !important;
  display: grid !important;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 48, 26, 0.84), rgba(12, 35, 21, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 28px rgba(3, 14, 7, 0.3);
}

body.pbs-modern .unite-header .logo,
body.pbs-modern .unite-header .membership-cart {
  display: none !important;
}

.pbs-brand {
  display: grid !important;
  min-width: 0;
  gap: 0.22rem;
  padding: 0 0.4rem;
  color: var(--pbs-cream-100) !important;
  text-decoration: none !important;
}

.pbs-brand__title {
  display: block;
  font-family: var(--pbs-display) !important;
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 5px 14px rgba(3, 14, 7, 0.5);
  white-space: nowrap;
}

.pbs-brand__tagline {
  display: block;
  color: rgba(240, 245, 225, 0.7);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

body.pbs-modern .unite-header .desktop-nav {
  position: static !important;
  display: block !important;
  float: none !important;
  width: fit-content !important;
  max-width: 100%;
  min-width: 0;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  justify-self: end;
  margin: 0 !important;
  padding: 0.3rem !important;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(8, 28, 14, 0.82), rgba(5, 22, 11, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.pbs-modern .unite-header .wsite-menu-default {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.pbs-modern .unite-header .wsite-menu-default > li {
  position: relative;
  display: block !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.pbs-modern .unite-header .wsite-menu-default > li > a,
body.pbs-modern .pbs-more-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 0.42rem;
  margin: 0 !important;
  padding: 0.68rem 0.82rem !important;
  color: rgba(242, 247, 234, 0.84) !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-family: var(--pbs-body) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.025em !important;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color var(--pbs-transition),
    transform var(--pbs-transition),
    box-shadow var(--pbs-transition);
}

body.pbs-modern .unite-header .wsite-menu-default > li > a::before,
body.pbs-modern .pbs-more-toggle::before {
  display: none !important;
  content: none !important;
}

.pbs-nav-link__icon {
  display: inline-grid;
  flex: 0 0 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: rgba(247, 250, 241, 0.92);
  border: 1px solid rgba(232, 242, 230, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition),
    box-shadow var(--pbs-transition);
}

.pbs-nav-link__svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  fill: currentColor;
}

.pbs-nav-link__label {
  display: block;
  min-width: 0;
}

body.pbs-modern .unite-header .wsite-menu-default > li > a::after,
body.pbs-modern .pbs-more-toggle::after {
  position: absolute !important;
  z-index: -1;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  content: "" !important;
  opacity: 0;
  border: 0 !important;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(249, 203, 95, 0.24), rgba(111, 190, 107, 0.16)) !important;
  transition: opacity var(--pbs-transition);
}

body.pbs-modern .unite-header .wsite-menu-default > li > a:hover,
body.pbs-modern .unite-header .wsite-menu-default > li > a:focus-visible,
body.pbs-modern .pbs-more-toggle:hover,
body.pbs-modern .pbs-more-toggle:focus-visible,
body.pbs-modern .pbs-more-menu.is-open > .pbs-more-toggle,
body.pbs-modern .pbs-more-menu.is-current > .pbs-more-toggle,
body.pbs-modern .unite-header .wsite-menu-default > li#active > a {
  color: #fffde8 !important;
}

body.pbs-modern .unite-header .wsite-menu-default > li > a:hover .pbs-nav-link__icon,
body.pbs-modern .unite-header .wsite-menu-default > li > a:focus-visible .pbs-nav-link__icon,
body.pbs-modern .unite-header .wsite-menu-default > li#active > a .pbs-nav-link__icon,
body.pbs-modern .pbs-more-toggle:hover .pbs-nav-link__icon,
body.pbs-modern .pbs-more-toggle:focus-visible .pbs-nav-link__icon,
body.pbs-modern .pbs-more-menu.is-open > .pbs-more-toggle .pbs-nav-link__icon,
body.pbs-modern .pbs-more-menu.is-current > .pbs-more-toggle .pbs-nav-link__icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 7px 14px rgba(2, 12, 5, 0.18);
  transform: scale(1.06);
}

body.pbs-modern .unite-header .wsite-menu-default > li > a:hover,
body.pbs-modern .unite-header .wsite-menu-default > li > a:focus-visible,
body.pbs-modern .pbs-more-toggle:hover,
body.pbs-modern .pbs-more-toggle:focus-visible {
  transform: translateY(-2px);
}

body.pbs-modern .unite-header .wsite-menu-default > li > a:hover::after,
body.pbs-modern .unite-header .wsite-menu-default > li > a:focus-visible::after,
body.pbs-modern .pbs-more-toggle:hover::after,
body.pbs-modern .pbs-more-toggle:focus-visible::after,
body.pbs-modern .pbs-more-menu.is-open > .pbs-more-toggle::after,
body.pbs-modern .pbs-more-menu.is-current > .pbs-more-toggle::after,
body.pbs-modern .unite-header .wsite-menu-default > li#active > a::after {
  opacity: 1;
}

.pbs-more-toggle__chevron {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform var(--pbs-transition);
}

body.pbs-modern .unite-header .pbs-more-menu {
  position: relative !important;
}

.pbs-more-menu.is-open .pbs-more-toggle__chevron {
  transform: rotate(180deg);
}

.pbs-more-panel {
  position: absolute;
  z-index: 10000;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  max-height: min(72vh, 640px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 0.7rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(190, 219, 195, 0.16);
  border-radius: var(--pbs-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(79, 135, 86, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(10, 34, 20, 0.99), rgba(5, 23, 12, 0.99));
  box-shadow: var(--pbs-shadow);
  transform: translateY(-8px) scale(0.985);
  transform-origin: top right;
  transition:
    opacity var(--pbs-transition),
    transform var(--pbs-transition),
    visibility var(--pbs-transition);
}

html,
body.pbs-modern .desktop-nav,
body.pbs-modern .pbs-more-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(207, 174, 78, 0.86) rgba(4, 25, 12, 0.88);
}

html::-webkit-scrollbar,
body.pbs-modern .desktop-nav::-webkit-scrollbar,
body.pbs-modern .pbs-more-panel::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

html::-webkit-scrollbar-track,
body.pbs-modern .desktop-nav::-webkit-scrollbar-track,
body.pbs-modern .pbs-more-panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(4, 25, 12, 0.9);
  box-shadow: inset 0 0 0 1px rgba(183, 211, 188, 0.08);
}

html::-webkit-scrollbar-thumb,
body.pbs-modern .desktop-nav::-webkit-scrollbar-thumb,
body.pbs-modern .pbs-more-panel::-webkit-scrollbar-thumb {
  min-height: 46px;
  border: 2px solid rgba(4, 25, 12, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(224, 195, 102, 0.96), rgba(116, 126, 61, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

html::-webkit-scrollbar-thumb:hover,
body.pbs-modern .desktop-nav::-webkit-scrollbar-thumb:hover,
body.pbs-modern .pbs-more-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0d783, #979b4c);
}

html::-webkit-scrollbar-button,
body.pbs-modern .desktop-nav::-webkit-scrollbar-button,
body.pbs-modern .pbs-more-panel::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

@media (min-width: 721px) {
  body.pbs-modern .unite-header .pbs-more-menu > .pbs-more-panel {
    position: absolute !important;
    top: calc(100% + 0.55rem) !important;
    right: 0 !important;
    left: auto !important;
    inset-inline-start: auto !important;
    inset-inline-end: 0 !important;
  }
}

.pbs-more-menu.is-open > .pbs-more-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.pbs-modern .pbs-more-list {
  display: grid !important;
  gap: 0.22rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.pbs-modern .pbs-more-list > li {
  position: relative;
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.pbs-modern .pbs-more-list > li > a {
  display: flex !important;
  width: 100% !important;
  min-height: 0 !important;
  align-items: center;
  justify-content: flex-start;
  padding: 0.72rem 0.8rem !important;
  color: rgba(241, 247, 233, 0.82) !important;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  background: transparent !important;
  font-family: var(--pbs-body) !important;
  font-size: 0.76rem !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  white-space: normal;
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition);
}

body.pbs-modern .pbs-more-list > li > a::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

body.pbs-modern .pbs-more-link__icon {
  display: inline-grid;
  flex: 0 0 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0.72rem;
  place-items: center;
  color: rgba(247, 250, 241, 0.92);
  border: 1px solid rgba(232, 242, 230, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition);
}

body.pbs-modern .pbs-more-link__svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  color: inherit;
}

body.pbs-modern .pbs-more-list > li > a:hover,
body.pbs-modern .pbs-more-list > li > a:focus-visible,
body.pbs-modern .pbs-more-list > li#active > a {
  color: var(--pbs-cream-50) !important;
  border-color: rgba(249, 203, 95, 0.16) !important;
  background: linear-gradient(120deg, rgba(249, 203, 95, 0.13), rgba(111, 190, 107, 0.12)) !important;
  transform: translateX(2px);
}

body.pbs-modern .pbs-more-list > li > a:hover .pbs-more-link__icon,
body.pbs-modern .pbs-more-list > li > a:focus-visible .pbs-more-link__icon,
body.pbs-modern .pbs-more-list > li#active > a .pbs-more-link__icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  transform: scale(1.06);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.85rem 1rem;
  width: min(100%, 930px);
  margin: 2rem auto 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(3, 22, 10, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-choice {
  display: grid !important;
  min-width: 0;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-choice--last {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 0.5rem);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 82px;
  height: 100%;
  margin: 0 !important;
  padding: 0.8rem 4.25rem;
  color: var(--pbs-cream-50) !important;
  -webkit-text-fill-color: var(--pbs-cream-50);
  border: 1px solid rgba(232, 242, 230, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(89, 145, 95, 0.07)),
    rgba(7, 31, 16, 0.82);
  box-shadow: 0 10px 22px rgba(2, 12, 5, 0.2);
  font-family: var(--pbs-display) !important;
  font-size: clamp(1.35rem, 2.35vw, 2rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  text-align: center;
  text-decoration: none !important;
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition),
    box-shadow var(--pbs-transition);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--pbs-cream-50);
  -webkit-text-fill-color: initial;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 7px 16px rgba(2, 12, 5, 0.2);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif !important;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none !important;
  transform: translateY(-50%);
  transition: transform var(--pbs-transition), background var(--pbs-transition);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-label {
  display: block;
  min-width: 0;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-align: center;
  text-wrap: balance;
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link:hover,
body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(102, 172, 111, 0.13)),
    rgba(8, 39, 19, 0.9);
  box-shadow: 0 14px 28px rgba(2, 12, 5, 0.28);
  transform: translateY(-2px);
}

body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link:hover .pbs-history-decade-icon,
body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link:focus-visible .pbs-history-decade-icon {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 700px) {
  body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 0.65rem;
    border-radius: 15px;
  }

  body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-choice--last {
    grid-column: auto;
    width: 100%;
  }

  body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-link {
    min-height: 86px;
    padding: 0.7rem 3.6rem;
    font-size: clamp(1.25rem, 7vw, 1.7rem) !important;
  }

  body.pbs-modern.wsite-page-historicalarticles .pbs-history-decade-icon {
    left: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
}

body.pbs-modern .unite-header .hamburger {
  position: static !important;
  display: none;
  float: none !important;
  width: 52px;
  height: 52px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0 !important;
  border-radius: 12px;
  background: var(--pbs-cream-50) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

body.pbs-modern .unite-header .hamburger span,
body.pbs-modern .unite-header .hamburger span::before,
body.pbs-modern .unite-header .hamburger span::after {
  position: static !important;
  display: block !important;
  width: 27px !important;
  height: 4px !important;
  margin: 0 !important;
  content: none !important;
  border-radius: 999px;
  background: #07170c !important;
  transform: none !important;
}

body.pbs-modern .unite-header .hamburger span {
  transition: transform var(--pbs-transition), opacity var(--pbs-transition);
}

body.pbs-modern .unite-header .hamburger:hover,
body.pbs-modern .unite-header .hamburger:focus-visible,
body.pbs-modern.pbs-nav-open .unite-header .hamburger {
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

body.pbs-modern .desktop-nav .icon-caret {
  display: none !important;
}

body.pbs-modern.pbs-nav-open .unite-header .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg) !important; }
body.pbs-modern.pbs-nav-open .unite-header .hamburger span:nth-child(2) { opacity: 0; }
body.pbs-modern.pbs-nav-open .unite-header .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg) !important; }

body.pbs-modern > .mobile-nav,
body.pbs-modern .nav.mobile-nav {
  display: none !important;
}

/* Shared page surfaces */

body.pbs-modern .banner-wrap,
body.pbs-modern .main-wrap {
  position: relative;
  width: min(1180px, calc(100% - 3rem)) !important;
  max-width: none !important;
  height: auto !important;
  margin: 3.25rem auto 0 !important;
  color: var(--pbs-cream-100) !important;
  border-radius: var(--pbs-radius-xl);
  background: transparent !important;
}

body.pbs-modern .main-wrap {
  overflow: hidden;
  margin-bottom: 3.25rem !important;
  border: 1px solid var(--pbs-border);
  background:
    radial-gradient(circle at top right, rgba(103, 148, 109, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(10, 34, 20, 0.98), rgba(7, 25, 14, 0.97)) !important;
  box-shadow: var(--pbs-shadow);
}

body.pbs-modern .banner-wrap .wsite-header-section,
body.pbs-modern .banner-wrap .wsite-section {
  position: relative;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
  padding: 0 !important;
  border: 0 !important;
  border-radius: var(--pbs-radius-xl) !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

body.pbs-modern .main-wrap .wsite-body-section {
  position: relative;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  padding: clamp(1.15rem, 3vw, 2.2rem) !important;
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none;
}

body.pbs-modern .banner-wrap .wsite-section-content,
body.pbs-modern .main-wrap .wsite-section-content,
body.pbs-modern .main-wrap > #wsite-content {
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: none !important;
}

body.pbs-modern .banner-wrap .banner {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

body.pbs-modern .banner-wrap .banner > .container,
body.pbs-modern .main-wrap .wsite-section-elements {
  position: relative;
  width: 100% !important;
  max-width: 1060px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: clamp(2rem, 5vw, 4rem) !important;
  color: var(--pbs-cream-100) !important;
  border: 1px solid rgba(183, 211, 188, 0.14);
  border-radius: var(--pbs-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(111, 160, 117, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(8, 30, 17, 0.91), rgba(5, 23, 12, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 44px rgba(3, 12, 6, 0.34);
  backdrop-filter: blur(8px);
}

body.pbs-modern .banner-wrap .banner > .container {
  max-width: none !important;
}

body.pbs-modern .main-wrap > #wsite-content {
  padding: clamp(2rem, 5vw, 4rem) !important;
}

body.pbs-modern .main-wrap > #wsite-content > .wsite-spacer:first-child {
  display: none;
}

body.pbs-modern.splash-page:not(.wsite-page-index) .banner-wrap .banner > .container {
  max-width: 1080px !important;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-header-section {
  padding: clamp(1.3rem, 3.5vw, 2.8rem) !important;
  background-position: 50% 44% !important;
}

body.pbs-modern.wsite-page-index .banner-wrap .banner > .container {
  max-width: 1020px !important;
  text-align: center;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-image:first-child img {
  width: min(620px, 92%) !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.38));
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-image:first-child {
  padding-top: 0 !important;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-content-title {
  margin: 1.35rem auto 0.75rem !important;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-content-title:nth-of-type(2) {
  max-width: 760px;
  margin-top: 2rem !important;
  color: var(--pbs-cream-100) !important;
  font-size: clamp(1.5rem, 3vw, 2.35rem) !important;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-content-title:nth-of-type(2)::before {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--pbs-gold-400);
  content: "Featured Adventure";
  font-family: var(--pbs-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.pbs-modern.wsite-page-index .banner-wrap .wsite-image img[src*="62233432"] {
  width: min(560px, 94%) !important;
  margin: 0 auto !important;
  border: 1px solid rgba(249, 203, 95, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

/* Typography and legacy content */

body.pbs-modern h1,
body.pbs-modern h2,
body.pbs-modern h3,
body.pbs-modern .wsite-content-title,
body.pbs-modern .wsite-headline,
body.pbs-modern #wsite-title {
  color: var(--pbs-cream-50) !important;
  font-family: var(--pbs-display) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.045em !important;
  text-shadow: 0 10px 30px rgba(3, 12, 6, 0.34);
}

body.pbs-modern h2,
body.pbs-modern .wsite-content-title {
  margin-top: 1.25rem !important;
  margin-bottom: 1rem !important;
  font-size: clamp(1.7rem, 4vw, 3.25rem) !important;
}

body.pbs-modern h2 font,
body.pbs-modern h3 font,
body.pbs-modern .wsite-content-title font,
body.pbs-modern .paragraph font {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
}

body.pbs-modern .wsite-content-title font[color="#f8c91c"],
body.pbs-modern .wsite-content-title font[color="#f8f500"],
body.pbs-modern .paragraph font[color="#f8c91c"] {
  color: var(--pbs-gold-400) !important;
}

body.pbs-modern p,
body.pbs-modern div.paragraph,
body.pbs-modern .paragraph,
body.pbs-modern #wsite-content p,
body.pbs-modern #wsite-content div.paragraph,
body.pbs-modern label,
body.pbs-modern li,
body.pbs-modern td,
body.pbs-modern th {
  color: rgba(235, 243, 232, 0.84) !important;
  font-family: var(--pbs-body) !important;
  font-weight: 500 !important;
  line-height: 1.72 !important;
}

body.pbs-modern p,
body.pbs-modern div.paragraph,
body.pbs-modern .paragraph {
  font-size: clamp(0.94rem, 1.6vw, 1.06rem) !important;
}

body.pbs-modern .paragraph strong,
body.pbs-modern p strong {
  color: var(--pbs-cream-100) !important;
}

body.pbs-modern .wsite-not-footer .paragraph a,
body.pbs-modern .wsite-not-footer blockquote a,
body.pbs-modern #wsite-content a:not(.wsite-button),
body.pbs-modern .blog-sidebar a {
  color: var(--pbs-gold-400) !important;
  text-decoration-color: rgba(249, 203, 95, 0.36) !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body.pbs-modern .wsite-not-footer .paragraph a:hover,
body.pbs-modern .wsite-not-footer .paragraph a:focus-visible,
body.pbs-modern #wsite-content a:not(.wsite-button):hover,
body.pbs-modern #wsite-content a:not(.wsite-button):focus-visible {
  color: var(--pbs-cream-50) !important;
}

body.pbs-modern blockquote {
  margin: 1.5rem 0 !important;
  padding: 1.2rem 1.4rem !important;
  color: rgba(239, 246, 235, 0.86) !important;
  border: 1px solid rgba(249, 203, 95, 0.14);
  border-left: 4px solid var(--pbs-gold-600);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.055) !important;
  font-family: var(--pbs-body) !important;
}

body.pbs-modern hr,
body.pbs-modern .styled-hr {
  border-color: rgba(183, 211, 188, 0.14) !important;
}

body.pbs-modern .wsite-image img,
body.pbs-modern .galleryImageHolder img,
body.pbs-modern .wslide-slide-inner1 img {
  height: auto !important;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(2, 10, 5, 0.3);
}

body.pbs-modern .wsite-image a:hover img {
  filter: brightness(1.04);
  transform: scale(1.02);
  box-shadow: 0 22px 44px rgba(2, 10, 5, 0.46);
}

body.pbs-modern .wsite-image a {
  display: inline-block;
  max-width: 100%;
}

body.pbs-modern .wsite-image a:hover,
body.pbs-modern .wsite-image a:focus-visible {
  animation: pbsGalleryShake 420ms ease-in-out;
}

body.pbs-modern .wsite-image img {
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

body.pbs-modern.header-page .banner-wrap,
body.pbs-modern.splash-page:not(.wsite-page-index) .banner-wrap {
  overflow: hidden;
  border: 1px solid var(--pbs-border);
  background:
    radial-gradient(circle at top right, rgba(103, 148, 109, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(10, 34, 20, 0.98), rgba(7, 25, 14, 0.97)) !important;
  box-shadow: var(--pbs-shadow);
}

body.pbs-modern.header-page .banner-wrap .wsite-section-content > .container,
body.pbs-modern.splash-page:not(.wsite-page-index) .banner-wrap .banner > .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: clamp(2rem, 5vw, 4rem) !important;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

body.pbs-modern.pbs-banner-in-main .wrapper > .main-wrap {
  display: block !important;
  width: min(1180px, calc(100% - 3rem)) !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap > .banner-wrap {
  width: 100% !important;
  margin: 0 !important;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

body.pbs-modern.pbs-banner-in-main .main-wrap > .banner-wrap .wsite-section-content > .container {
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) 1.5rem !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap > .banner-wrap .pbs-keystone-banner {
  margin-bottom: 0 !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap > #wsite-content {
  padding: 1.5rem clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap.pbs-main-content-empty > #wsite-content {
  display: none !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap .wsite-body-section {
  padding: 0 !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap .wsite-body-section .wsite-section-content > .container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

body.pbs-modern.pbs-banner-in-main .main-wrap .wsite-section-elements {
  max-width: none !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

body.pbs-modern.pbs-banner-in-main .main-wrap .wsite-section-elements > .wsite-spacer:first-child {
  display: none;
}

body.pbs-modern .banner-wrap .pbs-keystone-banner {
  position: relative !important;
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 1.75rem !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(232, 242, 230, 0.16);
  border-radius: 17px;
  background: rgba(3, 18, 9, 0.7);
  box-shadow: 0 18px 34px rgba(2, 12, 5, 0.28);
  text-align: center !important;
}

body.pbs-modern .banner-wrap .pbs-keystone-banner__link {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.pbs-modern .banner-wrap img.pbs-keystone-banner__image {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  aspect-ratio: 1025 / 265;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none;
}

body.pbs-modern .banner-wrap .pbs-keystone-banner__link:hover img.pbs-keystone-banner__image,
body.pbs-modern .banner-wrap .pbs-keystone-banner__link:focus-visible img.pbs-keystone-banner__image {
  transform: scale(1.012);
}

/* About page leadership cards */

body.pbs-modern.wsite-page-aboutus .main-wrap > #wsite-content {
  padding: clamp(1.35rem, 3vw, 2rem) !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid {
  width: 100%;
  margin: 0 auto;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-about-intro {
  text-align: left !important;
  word-spacing: normal !important;
  text-wrap: pretty;
}

body.pbs-modern.wsite-page-aboutus .pbs-availability-card {
  width: 100%;
  margin: clamp(1.25rem, 2.5vw, 1.8rem) 0 0;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(176, 208, 181, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(92, 152, 99, 0.1), transparent 34%),
    linear-gradient(150deg, rgba(10, 39, 22, 0.88), rgba(5, 27, 14, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 16px 32px rgba(2, 11, 5, 0.22);
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-availability-card .wsite-content-title {
  margin: 0 0 0.75rem !important;
  font-size: clamp(1.45rem, 2.8vw, 2rem) !important;
  text-align: center !important;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-availability-card .paragraph {
  margin: 0 !important;
  color: rgba(231, 240, 228, 0.82) !important;
  font-size: clamp(0.95rem, 1.65vw, 1.08rem) !important;
  line-height: 1.68 !important;
  text-align: left !important;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-availability-card .paragraph font {
  color: inherit !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-table-wrap,
body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .wsite-multicol-table-wrap {
  margin: 0 !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-table,
body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-tbody,
body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .wsite-multicol-table,
body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .wsite-multicol-tbody {
  display: block !important;
  width: 100% !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-tr {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  width: 100% !important;
  max-width: 1040px;
  margin: 0 auto;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-col {
  display: block !important;
  width: 100% !important;
  min-width: 0;
  padding: 0 !important;
}

.pbs-leader-card {
  width: 100%;
  min-height: 610px;
  height: 100%;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  color: var(--pbs-cream-100);
  border: 1px solid rgba(176, 208, 181, 0.17);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(92, 152, 99, 0.1), transparent 32%),
    linear-gradient(160deg, rgba(11, 43, 24, 0.96), rgba(5, 27, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 36px rgba(2, 11, 5, 0.26);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.pbs-leader-card:hover,
.pbs-leader-card:focus-within {
  border-color: rgba(84, 140, 93, 0.45);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 40px rgba(2, 11, 5, 0.34),
    0 0 22px rgba(94, 165, 107, 0.28),
    0 0 44px rgba(94, 165, 107, 0.16);
}

.pbs-leader-card:hover .wsite-image img,
.pbs-leader-card:focus-within .wsite-image img {
  filter: brightness(1.03);
  transform: scale(1.03);
}

.pbs-leader-kicker {
  min-height: 1.2rem;
  margin: 0 0 1rem;
  color: rgba(190, 211, 188, 0.78);
  font-family: var(--pbs-body);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.145em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.pbs-modern.wsite-page-aboutus .pbs-leader-card .wsite-image {
  width: 100%;
  margin: 0 0 1.15rem !important;
  padding: 0 !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leader-card .wsite-image a {
  display: block;
  width: 100%;
}

body.pbs-modern.wsite-page-aboutus .pbs-leader-card .wsite-image img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 240px !important;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(1, 9, 4, 0.28);
}

body.pbs-modern.wsite-page-aboutus .pbs-leader-card .wsite-image img[src*="forker1"] {
  object-position: center 34%;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .wsite-content-title {
  margin: 0 0 0.85rem !important;
  color: var(--pbs-cream-50) !important;
  font-family: var(--pbs-body) !important;
  font-size: clamp(1.25rem, 2vw, 1.58rem) !important;
  font-weight: 850 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.018em !important;
  text-align: left !important;
  text-shadow: none;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .wsite-content-title font {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .paragraph {
  margin: 0 !important;
  color: rgba(222, 233, 219, 0.76) !important;
  font-family: var(--pbs-body) !important;
  font-size: 0.88rem !important;
  font-weight: 450 !important;
  line-height: 1.58 !important;
  text-align: left !important;
}

body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .paragraph font,
body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .paragraph span,
body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-leader-card .paragraph strong {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .pbs-leader-card--emeritus {
  width: min(330px, 100%);
  height: auto;
  min-height: 610px;
  margin: 0 auto 2rem;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus {
  margin-top: clamp(1.35rem, 2.5vw, 1.8rem);
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .wsite-multicol-tr {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  width: 100% !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-emeritus .wsite-multicol-col:not(.pbs-leadership-spacer) {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
}

body.pbs-modern.wsite-page-aboutus .pbs-leadership-spacer {
  display: none !important;
}

body.pbs-modern .wsite-social-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.45rem !important;
  height: 2.45rem !important;
  margin: 0 0.18rem !important;
  border: 1px solid rgba(249, 203, 95, 0.18);
  border-radius: 999px;
  background: rgba(3, 18, 8, 0.72);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

body.pbs-modern .wsite-social-item:hover,
body.pbs-modern .wsite-social-item:focus-visible {
  border-color: rgba(249, 203, 95, 0.48);
  background: rgba(249, 203, 95, 0.12);
  filter: brightness(1.06);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.28);
}

body.pbs-modern .wsite-social-item:active {
  transform: scale(0.96);
}

body.pbs-modern table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  color: var(--pbs-cream-100) !important;
  border: 1px solid rgba(183, 211, 188, 0.14);
  border-radius: 14px;
  background: rgba(3, 18, 8, 0.48);
}

body.pbs-modern td,
body.pbs-modern th {
  padding: 0.72rem;
  border-color: rgba(183, 211, 188, 0.1) !important;
}

body.pbs-modern input:not([type="checkbox"]):not([type="radio"]),
body.pbs-modern textarea,
body.pbs-modern select,
body.pbs-modern .wsite-form-input,
body.pbs-modern .form-select {
  width: 100% !important;
  max-width: none !important;
  padding: 0.82rem 0.95rem !important;
  color: var(--pbs-cream-50) !important;
  border: 1px solid rgba(183, 211, 188, 0.2) !important;
  border-radius: 12px !important;
  background: rgba(3, 18, 8, 0.76) !important;
  font-family: var(--pbs-body) !important;
}

/* Sighting report */

body.pbs-modern.wsite-page-reportasighting .main-wrap {
  width: min(1120px, calc(100% - 3rem)) !important;
}

body.pbs-modern.wsite-page-reportasighting .main-wrap .wsite-section-elements {
  max-width: 980px !important;
}

body.pbs-modern.pbs-banner-in-main.wsite-page-reportasighting .main-wrap > .banner-wrap .wsite-section-elements {
  max-width: none !important;
}

body.pbs-modern.wsite-page-reportasighting table.wsite-multicol-table {
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.pbs-modern .pbs-sighting-form {
  width: 100%;
  max-width: 760px;
  margin: 2.25rem auto 0;
}

body.pbs-modern .pbs-sighting-form .formlist {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.pbs-modern #wsite-content .pbs-sighting-form .formlist > .wsite-content-title {
  margin-bottom: 0.45rem !important;
  text-align: left !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

body.pbs-modern #wsite-content .pbs-sighting-form .wsite-form-fields-required-label {
  display: block;
  margin: 0 0 1.25rem !important;
  color: rgba(235, 243, 232, 0.7) !important;
  font-size: 0.78rem !important;
  font-weight: 650 !important;
}

.pbs-form-guide {
  margin: 0 0 1.4rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border: 1px solid rgba(249, 203, 95, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(249, 203, 95, 0.1), transparent 32%),
    rgba(3, 20, 9, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.pbs-form-guide__eyebrow {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--pbs-gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pbs-form-guide strong {
  display: block;
  color: var(--pbs-cream-50);
  font-family: var(--pbs-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  letter-spacing: 0.02em;
}

body.pbs-modern #wsite-content .pbs-form-guide p {
  margin: 0.38rem 0 0 !important;
  color: rgba(235, 243, 232, 0.72) !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}

.pbs-form-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1rem;
}

body.pbs-modern .pbs-form-steps a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.48rem;
  padding: 0.55rem 0.62rem;
  color: rgba(239, 246, 234, 0.78) !important;
  border: 1px solid rgba(183, 211, 188, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.69rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
}

.pbs-form-steps a span {
  color: var(--pbs-gold-400);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

body.pbs-modern .pbs-form-steps a:hover,
body.pbs-modern .pbs-form-steps a:focus-visible {
  color: var(--pbs-cream-50) !important;
  border-color: rgba(249, 203, 95, 0.3);
  background: rgba(249, 203, 95, 0.1);
}

.pbs-form-section {
  scroll-margin-top: 8.5rem;
  margin: 0 0 1.25rem;
  padding: clamp(1rem, 3vw, 1.55rem);
  border: 1px solid rgba(183, 211, 188, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(85, 145, 92, 0.1), transparent 30%),
    linear-gradient(155deg, rgba(8, 31, 16, 0.88), rgba(3, 19, 9, 0.9));
  box-shadow: 0 14px 30px rgba(2, 10, 5, 0.2);
}

.pbs-form-section__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(183, 211, 188, 0.12);
}

.pbs-form-section__number {
  display: inline-flex;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  color: #152817;
  border-radius: 50%;
  background: var(--pbs-gold-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(224, 165, 38, 0.16);
}

body.pbs-modern #wsite-content .pbs-form-section__header h3 {
  margin: 0 !important;
  color: var(--pbs-cream-50) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem) !important;
  letter-spacing: 0.025em !important;
}

body.pbs-modern #wsite-content .pbs-form-section__header p {
  margin: 0.24rem 0 0 !important;
  color: rgba(226, 237, 224, 0.66) !important;
  font-size: 0.76rem !important;
  line-height: 1.5 !important;
}

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

.pbs-form-section__fields > div {
  min-width: 0;
  margin: 0 !important;
}

.pbs-form-section__fields > .pbs-field-wide {
  grid-column: 1 / -1;
}

body.pbs-modern .pbs-sighting-form .wsite-form-field {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
}

body.pbs-modern .pbs-sighting-form .wsite-form-input-container,
body.pbs-modern .pbs-sighting-form .wsite-form-left,
body.pbs-modern .pbs-sighting-form .wsite-form-right {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 0.48rem !important;
}

body.pbs-modern #wsite-content .pbs-sighting-form .wsite-form-label {
  display: block;
  margin: 0 0 0.42rem !important;
  color: rgba(246, 249, 239, 0.9) !important;
  font-size: 0.82rem !important;
  font-weight: 750 !important;
  line-height: 1.38 !important;
}

body.pbs-modern #wsite-content .pbs-sighting-form .wsite-form-sublabel {
  display: block;
  margin-top: 0.26rem;
  color: rgba(222, 234, 220, 0.54) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
}

/* Address inputs already carry clear placeholders. Keep the imported duplicate
   sublabels available to assistive technology without showing them twice. */
body.pbs-modern #wsite-content .pbs-sighting-form .wsite-address-field .wsite-form-sublabel {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.pbs-modern .pbs-sighting-form input:not([type="checkbox"]):not([type="radio"]),
body.pbs-modern .pbs-sighting-form select {
  min-height: 52px !important;
}

body.pbs-modern .pbs-sighting-form textarea {
  height: auto !important;
  min-height: 148px !important;
  resize: vertical;
  line-height: 1.55;
}

body.pbs-modern .pbs-sighting-form .pbs-field-optional textarea {
  min-height: 112px !important;
}

body.pbs-modern .pbs-sighting-form input::placeholder,
body.pbs-modern .pbs-sighting-form textarea::placeholder {
  color: rgba(218, 231, 215, 0.42) !important;
}

body.pbs-modern .pbs-sighting-form .form-required {
  color: var(--pbs-gold-400) !important;
}

body.pbs-modern .pbs-sighting-form .form-not-required {
  display: inline-flex;
  margin-left: 0.35rem;
  padding: 0.12rem 0.4rem;
  color: rgba(232, 241, 228, 0.68) !important;
  border: 1px solid rgba(183, 211, 188, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.58rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body.pbs-modern .pbs-sighting-form .wsite-form-radio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.pbs-modern .pbs-sighting-form span.form-radio-container {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.48rem;
  margin: 0 !important;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(183, 211, 188, 0.14);
  border-radius: 11px;
  background: rgba(3, 18, 8, 0.54);
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"],
body.pbs-modern .pbs-sighting-form input[type="radio"] {
  appearance: none;
  display: inline-grid;
  width: 1.15rem !important;
  height: 1.15rem !important;
  flex: 0 0 1.15rem;
  place-content: center;
  margin: 0 !important;
  cursor: pointer;
  border: 1px solid rgba(202, 222, 201, 0.34) !important;
  background: rgba(1, 14, 6, 0.92) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.42);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"] {
  border-radius: 5px;
}

body.pbs-modern .pbs-sighting-form input[type="radio"] {
  border-radius: 50%;
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"]::after,
body.pbs-modern .pbs-sighting-form input[type="radio"]::after {
  display: none !important;
  content: none !important;
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"]::before {
  width: 0.34rem;
  height: 0.66rem;
  content: "";
  border: solid #102617;
  border-width: 0 2px 2px 0;
  transform: translateY(-0.05rem) rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

body.pbs-modern .pbs-sighting-form input[type="radio"]::before {
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  border-radius: 50%;
  background: var(--pbs-gold-400);
  box-shadow: 0 0 0 2px rgba(249, 203, 95, 0.12);
  transform: scale(0);
  transition: transform 140ms ease;
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"]:checked {
  border-color: var(--pbs-gold-400) !important;
  background: linear-gradient(135deg, var(--pbs-gold-400), #f3d780) !important;
  box-shadow: 0 0 0 3px rgba(249, 203, 95, 0.1);
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"]:checked::before,
body.pbs-modern .pbs-sighting-form input[type="radio"]:checked::before {
  transform: translateY(-0.05rem) rotate(45deg) scale(1);
}

body.pbs-modern .pbs-sighting-form input[type="radio"]:checked::before {
  transform: scale(1);
}

body.pbs-modern .pbs-sighting-form input[type="radio"]:checked {
  border-color: var(--pbs-gold-400) !important;
  box-shadow: 0 0 0 3px rgba(249, 203, 95, 0.1), inset 0 1px 2px rgba(0, 0, 0, 0.42);
}

body.pbs-modern .pbs-sighting-form input[type="checkbox"]:focus-visible,
body.pbs-modern .pbs-sighting-form input[type="radio"]:focus-visible {
  outline: 2px solid var(--pbs-gold-400);
  outline-offset: 3px;
}

body.pbs-modern .pbs-sighting-form span.form-radio-container:hover,
body.pbs-modern .pbs-sighting-form span.form-radio-container:focus-within {
  border-color: rgba(249, 203, 95, 0.3);
  background: rgba(249, 203, 95, 0.07);
}

body.pbs-modern .pbs-sighting-form span.form-radio-container:has(input:checked) {
  border-color: rgba(249, 203, 95, 0.38);
  background: rgba(249, 203, 95, 0.1);
}

body.pbs-modern .pbs-sighting-form select.form-select {
  appearance: none;
  padding-right: 3.1rem !important;
  cursor: pointer;
  color-scheme: dark;
  background-color: rgba(3, 18, 8, 0.96) !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f9cb5f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(8, 34, 18, 0.98), rgba(3, 18, 8, 0.98)) !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: right 1rem center, 0 0 !important;
  background-size: 18px 18px, 100% 100% !important;
}

body.pbs-modern .pbs-sighting-form select.form-select:hover {
  border-color: rgba(249, 203, 95, 0.34) !important;
}

body.pbs-modern .pbs-sighting-form select.form-select:focus-visible {
  border-color: var(--pbs-gold-400) !important;
  outline: 2px solid rgba(249, 203, 95, 0.78);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(249, 203, 95, 0.08);
}

body.pbs-modern .pbs-sighting-form select.form-select:invalid {
  color: rgba(224, 235, 219, 0.62) !important;
}

body.pbs-modern .pbs-sighting-form select.form-select option {
  color: var(--pbs-cream-50);
  background: #092817;
}

body.pbs-modern .pbs-sighting-form select.form-select option:checked {
  color: #fffdf4;
  background: #4a552c;
}

body.pbs-modern .pbs-sighting-form select.pbs-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

body.pbs-modern .pbs-sighting-form .pbs-select {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-width: 0;
}

body.pbs-modern .pbs-sighting-form .pbs-select__trigger {
  display: flex !important;
  width: 100% !important;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.95rem !important;
  cursor: pointer;
  color: rgba(224, 235, 219, 0.62) !important;
  border: 1px solid rgba(183, 211, 188, 0.2) !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, rgba(8, 34, 18, 0.98), rgba(3, 18, 8, 0.98)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  font-family: var(--pbs-body) !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  transform: none !important;
  animation: none !important;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

body.pbs-modern .pbs-sighting-form .pbs-select.has-value .pbs-select__trigger {
  color: var(--pbs-cream-50) !important;
}

body.pbs-modern .pbs-sighting-form .pbs-select__chevron {
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.2rem 0.18rem 0 0;
  border-right: 2px solid var(--pbs-gold-400);
  border-bottom: 2px solid var(--pbs-gold-400);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

body.pbs-modern .pbs-sighting-form .pbs-select.is-open .pbs-select__chevron {
  margin-top: 0.25rem;
  transform: rotate(225deg);
}

body.pbs-modern .pbs-sighting-form .pbs-select__trigger:hover,
body.pbs-modern .pbs-sighting-form .pbs-select.is-open .pbs-select__trigger {
  border-color: rgba(249, 203, 95, 0.42) !important;
  background: linear-gradient(180deg, rgba(17, 48, 28, 0.99), rgba(5, 24, 12, 0.99)) !important;
}

body.pbs-modern .pbs-sighting-form .pbs-select__trigger:focus-visible {
  border-color: var(--pbs-gold-400) !important;
  outline: 2px solid rgba(249, 203, 95, 0.78);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(249, 203, 95, 0.08);
}

body.pbs-modern .pbs-sighting-form .pbs-select.is-invalid .pbs-select__trigger {
  border-color: #e6a65a !important;
  box-shadow: 0 0 0 3px rgba(230, 166, 90, 0.12);
}

body.pbs-modern .pbs-sighting-form .pbs-select__list {
  position: absolute;
  z-index: 80;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: grid;
  max-height: 220px;
  gap: 0.28rem;
  padding: 0.45rem;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(207, 174, 78, 0.86) rgba(4, 25, 12, 0.88);
  border: 1px solid rgba(249, 203, 95, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(79, 135, 86, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(10, 34, 20, 0.995), rgba(5, 23, 12, 0.995));
  box-shadow: 0 22px 42px rgba(2, 12, 6, 0.48);
}

body.pbs-modern .pbs-sighting-form .pbs-select__list[hidden] {
  display: none !important;
}

body.pbs-modern .pbs-sighting-form .pbs-select__list::-webkit-scrollbar {
  width: 9px;
}

body.pbs-modern .pbs-sighting-form .pbs-select__list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(4, 25, 12, 0.9);
}

body.pbs-modern .pbs-sighting-form .pbs-select__list::-webkit-scrollbar-thumb {
  border: 2px solid rgba(4, 25, 12, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(224, 195, 102, 0.96), rgba(116, 126, 61, 0.96));
}

body.pbs-modern .pbs-sighting-form .pbs-select__option {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0.68rem 0.78rem;
  cursor: pointer;
  color: rgba(239, 246, 234, 0.84);
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.9rem;
  font-weight: 650;
  outline: none;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

body.pbs-modern .pbs-sighting-form .pbs-select__option:hover,
body.pbs-modern .pbs-sighting-form .pbs-select__option:focus-visible,
body.pbs-modern .pbs-sighting-form .pbs-select__option[aria-selected="true"] {
  color: var(--pbs-cream-50);
  border-color: rgba(249, 203, 95, 0.24);
  background: rgba(249, 203, 95, 0.12);
  transform: translateX(2px);
}

body.pbs-modern #wsite-content .pbs-sighting-form span.form-radio-container label {
  margin: 0 !important;
  color: rgba(241, 247, 235, 0.82) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  cursor: pointer;
}

body.pbs-modern .pbs-sighting-form .pbs-marketing-choice {
  padding: 0.85rem;
  border: 1px solid rgba(183, 211, 188, 0.12);
  border-radius: 12px;
  background: rgba(3, 18, 8, 0.45);
}

body.pbs-modern .pbs-sighting-form .wsite-name-field,
body.pbs-modern .pbs-sighting-form .wsite-address-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

body.pbs-modern .pbs-sighting-form .wsite-name-field > .wsite-form-label,
body.pbs-modern .pbs-sighting-form .wsite-name-field > div[style*="clear"],
body.pbs-modern .pbs-sighting-form .wsite-name-field > .wsite-form-instructions,
body.pbs-modern .pbs-sighting-form .wsite-address-field > .wsite-form-label,
body.pbs-modern .pbs-sighting-form .wsite-address-field > .wsite-form-input-container:not(.wsite-address-short),
body.pbs-modern .pbs-sighting-form .wsite-address-field > .wsite-form-instructions {
  grid-column: 1 / -1;
}

body.pbs-modern .pbs-sighting-form .pbs-form-submit {
  grid-column: 1 / -1;
  margin: 0 !important;
  padding-top: 0.2rem;
  text-align: left !important;
}

body.pbs-modern .pbs-recaptcha {
  width: min(100%, 440px);
  margin: 0.35rem auto 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(183, 211, 188, 0.17);
  border-radius: 15px;
  background:
    radial-gradient(circle at top right, rgba(249, 203, 95, 0.08), transparent 38%),
    rgba(2, 15, 7, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.pbs-modern .pbs-recaptcha__copy {
  margin-bottom: 0.8rem;
}

body.pbs-modern .pbs-recaptcha__eyebrow {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--pbs-gold-400);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.pbs-modern #wsite-content .pbs-recaptcha__copy strong {
  display: block;
  color: var(--pbs-cream-50) !important;
  font-family: var(--pbs-display);
  font-size: 1.08rem;
  line-height: 1.3;
}

body.pbs-modern #wsite-content .pbs-recaptcha__copy p {
  margin: 0.28rem 0 0 !important;
  color: rgba(228, 238, 224, 0.68) !important;
  font-size: 0.72rem !important;
  line-height: 1.5 !important;
}

body.pbs-modern .pbs-recaptcha__widget {
  width: 100%;
  min-width: 0;
  min-height: 78px;
  overflow: hidden;
  border-radius: 4px;
}

body.pbs-modern .pbs-recaptcha__message {
  min-height: 1.15rem;
  margin: 0.55rem 0 0;
  color: #ffb7ab;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.45;
}

body.pbs-modern .pbs-recaptcha.is-invalid {
  border-color: rgba(255, 183, 171, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 183, 171, 0.08);
}

body.pbs-modern .pbs-report-honeypot {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.pbs-modern .pbs-sighting-form .wsite-button[aria-disabled="true"] {
  cursor: wait;
  pointer-events: none;
  filter: saturate(0.72);
  transform: none;
}

body.pbs-modern .pbs-sighting-form .wsite-button.is-sent {
  cursor: default;
  background: linear-gradient(135deg, #b7d6af, #e3efdd) !important;
}

body.pbs-modern .pbs-form-submit-status {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  color: rgba(228, 238, 224, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
}

body.pbs-modern .pbs-form-submit-status.is-success {
  color: #cce7c4;
}

body.pbs-modern .pbs-form-submit-status.is-error {
  color: #ffb7ab;
}

body.pbs-modern .pbs-sighting-form .wsite-button {
  display: inline-flex !important;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.78rem 1.35rem !important;
  cursor: pointer;
  text-decoration: none !important;
}

body.pbs-modern .pbs-sighting-form .wsite-button-inner {
  padding: 0 !important;
  color: #102617 !important;
  background: transparent !important;
  font-family: var(--pbs-body) !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.035em;
}

body.pbs-modern .wsite-button,
body.pbs-modern button:not(.pbs-more-toggle):not(.hamburger):not(.pbs-lightbox-zoom):not(.pbs-lightbox-control):not(.pbs-select__trigger),
body.pbs-modern input[type="submit"] {
  overflow: hidden;
  color: #102617 !important;
  border: 1px solid rgba(249, 203, 95, 0.34) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--pbs-gold-400), #f3d780) !important;
  box-shadow: 0 12px 24px rgba(224, 165, 38, 0.18);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

body.pbs-modern .wsite-button:hover,
body.pbs-modern .wsite-button:focus-visible,
body.pbs-modern button:not(.pbs-more-toggle):not(.hamburger):not(.pbs-lightbox-zoom):not(.pbs-lightbox-control):not(.pbs-select__trigger):hover,
body.pbs-modern button:not(.pbs-more-toggle):not(.hamburger):not(.pbs-lightbox-zoom):not(.pbs-lightbox-control):not(.pbs-select__trigger):focus-visible,
body.pbs-modern input[type="submit"]:hover,
body.pbs-modern input[type="submit"]:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(224, 165, 38, 0.26);
  animation: pbsButtonShake 420ms ease-in-out;
}

body.pbs-modern .wsite-button .wsite-button-inner {
  padding: 0.8rem 1.3rem !important;
  color: inherit !important;
  background: transparent !important;
  font-family: var(--pbs-body) !important;
  font-weight: 800 !important;
}

body.pbs-modern iframe,
body.pbs-modern video,
body.pbs-modern audio {
  max-width: 100%;
  border-radius: 14px;
}

body.pbs-modern .wsite-map iframe {
  min-height: 320px;
  border: 1px solid rgba(183, 211, 188, 0.16) !important;
}

/* Footer */

.pbs-bigfoot-greeter {
  --pbs-bigfoot-width: clamp(112px, calc((100vw - 1180px) / 2 - 1rem), 220px);
  position: absolute;
  z-index: 0;
  right: max(
    0.75rem,
    calc((100vw - 1180px) / 2 - var(--pbs-bigfoot-width) - 0.5rem)
  );
  bottom: 214px;
  width: var(--pbs-bigfoot-width);
  aspect-ratio: 408 / 612;
  pointer-events: none;
  opacity: 0.76;
  background: url("bigfoot9.png") center bottom / contain no-repeat;
  filter:
    drop-shadow(0 18px 34px rgba(2, 12, 5, 0.38))
    saturate(0.88)
    brightness(0.9);
  transform: translateZ(0);
}

body.pbs-modern .footer-wrap {
  display: none !important;
}

.pbs-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  padding: 2.5rem 1.5rem 3rem;
  color: rgba(232, 239, 221, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, rgba(7, 23, 12, 0.96), rgba(20, 55, 28, 0.96));
  box-shadow: 0 -18px 42px rgba(2, 12, 5, 0.24);
  font-family: var(--pbs-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pbs-footer__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
  letter-spacing: 0.06em;
}

.pbs-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.15rem;
}

.pbs-footer__social {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  border: 0;
  border-radius: 0.8rem;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

.pbs-footer__social svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  transition: transform 220ms ease;
}

.pbs-footer__social[data-brand="facebook"] {
  background: linear-gradient(180deg, #2d8cff, #1f6fe3);
}

.pbs-footer__social[data-brand="instagram"] {
  background: linear-gradient(135deg, #ffd45f, #ff5a5f 42%, #b83cff 100%);
}

.pbs-footer__social[data-brand="mail"] {
  background: linear-gradient(180deg, #15271b, #030d06);
}

.pbs-footer__social:hover,
.pbs-footer__social:focus-visible {
  color: #fff !important;
  transform: translateY(-1px) scale(1.05);
  filter: brightness(1.08);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.pbs-footer__social:hover svg,
.pbs-footer__social:focus-visible svg {
  transform: scale(1.06);
}

.pbs-footer__social:active {
  transform: scale(0.96);
}

body.pbs-modern .pbs-footer__made,
body.pbs-modern .pbs-footer__copy {
  margin: 0 !important;
  line-height: 1.5 !important;
}

body.pbs-modern .pbs-footer__made {
  color: rgba(241, 247, 229, 0.75) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.pbs-modern .pbs-footer__copy {
  color: rgba(232, 239, 221, 0.8) !important;
  font-size: 0.9rem !important;
}

.pbs-footer__legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(232, 239, 221, 0.8);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.pbs-footer__legal a {
  color: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.pbs-footer__legal a:hover,
.pbs-footer__legal a:focus-visible {
  color: var(--pbs-gold-400) !important;
  border-color: rgba(249, 203, 95, 0.72);
}

.pbs-footer__heart {
  display: inline-block;
  color: #ff1d1d;
  transform-origin: center;
  animation: pbs-footer-heartbeat 1.4s infinite ease-in-out;
}

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

@keyframes pbs-footer-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .pbs-footer__heart {
    animation: none;
  }
}

/* Responsive */

@media (max-width: 1399px) {
  .pbs-bigfoot-greeter {
    display: none;
  }
}

@media (max-width: 1340px) {
  body.pbs-modern .unite-header .nav-wrap > .container {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pbs-brand {
    text-align: center;
  }

  body.pbs-modern .unite-header .wsite-menu-default {
    justify-content: center;
    flex-wrap: wrap;
  }

  body.pbs-modern .unite-header .desktop-nav {
    justify-self: center;
  }
}

@media (max-width: 960px) {
  body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  body.pbs-modern {
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body.pbs-modern .wrapper,
  body.pbs-modern .container,
  body.pbs-modern .wsite-section,
  body.pbs-modern .wsite-section-content,
  body.pbs-modern .wsite-section-elements,
  body.pbs-modern #wsite-content,
  body.pbs-modern #wsite-content > div,
  body.pbs-modern form,
  body.pbs-modern fieldset {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.pbs-modern #wsite-content img,
  body.pbs-modern .banner-wrap img,
  body.pbs-modern .main-wrap img {
    max-width: 100% !important;
    height: auto !important;
  }

  body.pbs-modern #wsite-content iframe,
  body.pbs-modern #wsite-content video,
  body.pbs-modern #wsite-content embed,
  body.pbs-modern #wsite-content object {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.pbs-modern #wsite-content table:not(.wsite-multicol-table) {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.pbs-modern #wsite-content .paragraph,
  body.pbs-modern #wsite-content p,
  body.pbs-modern #wsite-content li,
  body.pbs-modern #wsite-content h1,
  body.pbs-modern #wsite-content h2,
  body.pbs-modern #wsite-content h3 {
    overflow-wrap: anywhere;
  }

  /* Neutralize desktop-only imported table spacing once columns stack. */
  body.pbs-modern #wsite-content .wsite-multicol-table-wrap,
  body.pbs-modern .banner-wrap .wsite-multicol-table-wrap {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.pbs-modern #wsite-content .wsite-multicol-col,
  body.pbs-modern .banner-wrap .wsite-multicol-col {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.pbs-modern.wsite-page-aboutus #wsite-content .pbs-about-intro {
    line-height: 1.65 !important;
    text-align: left !important;
    word-spacing: normal !important;
  }

  body.pbs-modern.wsite-page-aboutus .pbs-leadership-grid .wsite-multicol-tr {
    grid-template-columns: 1fr;
  }

  .pbs-leader-card {
    width: min(340px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  body.pbs-modern .unite-header .nav-wrap > .container {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 0.9rem !important;
  }

  .pbs-brand {
    text-align: left;
  }

  .pbs-brand__title {
    font-size: clamp(1rem, 5vw, 1.35rem);
    white-space: normal;
  }

  .pbs-brand__tagline {
    font-size: 0.58rem;
  }

  body.pbs-modern .unite-header .hamburger {
    display: inline-flex !important;
  }

  body.pbs-modern .unite-header .desktop-nav {
    display: none !important;
    grid-column: 1 / -1;
    width: 100% !important;
    max-height: min(72dvh, 36rem);
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    scroll-padding-block: 0.5rem 1rem;
    scrollbar-gutter: stable;
    margin-top: 0.2rem !important;
    padding: 0.62rem !important;
    border-radius: 18px;
  }

  body.pbs-modern.pbs-nav-open .unite-header .desktop-nav {
    display: block !important;
    animation: pbsNavDrop 220ms ease both;
  }

  body.pbs-modern.pbs-nav-open {
    overflow: hidden !important;
  }

  body.pbs-modern .unite-header .wsite-menu-default {
    align-items: stretch;
    flex-direction: column;
    gap: 0.28rem;
  }

  body.pbs-modern .unite-header .wsite-menu-default > li,
  body.pbs-modern .unite-header .wsite-menu-default > li > a,
  body.pbs-modern .pbs-more-toggle {
    width: 100% !important;
  }

  body.pbs-modern .unite-header .wsite-menu-default > li > a,
  body.pbs-modern .pbs-more-toggle {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0.72rem 0.86rem !important;
  }

  body.pbs-modern .pbs-more-list > li > a {
    min-height: 50px !important;
  }

  @media (hover: none), (pointer: coarse) {
    body.pbs-modern .pbs-more-menu:not(.is-open):not(.is-current) > .pbs-more-toggle {
      color: rgba(242, 247, 234, 0.84) !important;
      transform: none !important;
    }

    body.pbs-modern .pbs-more-menu:not(.is-open):not(.is-current) > .pbs-more-toggle::after {
      opacity: 0 !important;
    }

    body.pbs-modern .pbs-more-menu:not(.is-open):not(.is-current) > .pbs-more-toggle .pbs-nav-link__icon {
      color: rgba(247, 250, 241, 0.92);
      border-color: rgba(232, 242, 230, 0.16);
      background: rgba(255, 255, 255, 0.055);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      transform: none;
    }
  }

  .pbs-more-toggle__chevron {
    margin-left: auto;
  }

  body.pbs-modern .unite-header .pbs-more-menu > .pbs-more-panel {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-height: 0;
    margin-top: 0;
    padding: 0 0.35rem;
    visibility: hidden;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    transform: none;
  }

  .pbs-more-menu:hover > .pbs-more-panel,
  .pbs-more-menu:focus-within > .pbs-more-panel {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  body.pbs-modern .unite-header .pbs-more-menu.is-open > .pbs-more-panel {
    max-height: none;
    margin-top: 0.35rem;
    padding: 0.45rem;
    visibility: visible;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.pbs-modern .banner-wrap,
  body.pbs-modern .main-wrap {
    width: calc(100% - 1.5rem) !important;
  }

  body.pbs-modern .banner-wrap,
  body.pbs-modern .main-wrap {
    margin-top: 1.5rem !important;
  }

  body.pbs-modern .banner-wrap .wsite-header-section,
  body.pbs-modern .banner-wrap .wsite-section {
    padding: 0 !important;
    border-radius: 20px !important;
  }

  body.pbs-modern .main-wrap .wsite-body-section {
    padding: 0.7rem !important;
  }

  body.pbs-modern.header-page .banner-wrap .wsite-section-content > .container,
  body.pbs-modern.splash-page:not(.wsite-page-index) .banner-wrap .banner > .container,
  body.pbs-modern .main-wrap .wsite-section-elements,
  body.pbs-modern .main-wrap > #wsite-content {
    padding: 1.35rem !important;
    border-radius: 16px;
  }

  body.pbs-modern.pbs-banner-in-main .wrapper > .main-wrap {
    width: calc(100% - 1.5rem) !important;
  }

  body.pbs-modern.pbs-banner-in-main .main-wrap > .banner-wrap .wsite-section-content > .container {
    padding: 1.35rem 1.35rem 1rem !important;
  }

  body.pbs-modern.pbs-banner-in-main .main-wrap > #wsite-content {
    padding: 1rem 1.35rem 1.35rem !important;
  }

  body.pbs-modern.pbs-banner-in-main .main-wrap .wsite-body-section {
    padding: 0 !important;
  }

  .pbs-form-steps,
  .pbs-form-section__fields {
    grid-template-columns: 1fr;
  }

  .pbs-form-section__fields > .pbs-field-wide {
    grid-column: auto;
  }

  body.pbs-modern .pbs-sighting-form .wsite-name-field,
  body.pbs-modern .pbs-sighting-form .wsite-address-field {
    grid-template-columns: 1fr;
  }

  body.pbs-modern .pbs-sighting-form .wsite-address-field > .wsite-address-short {
    grid-column: 1;
  }

  body.pbs-modern .pbs-sighting-form .wsite-button {
    width: 100% !important;
  }

  body.pbs-modern .pbs-recaptcha {
    width: 100%;
    max-width: 360px;
    padding: 0.75rem;
  }

  body.pbs-modern .pbs-sighting-form .pbs-select {
    max-width: 100%;
  }

  /* Keep legacy forms comfortably usable on phones. */
  body.pbs-modern .wsite-form-container,
  body.pbs-modern .formlist,
  body.pbs-modern .wsite-form-field,
  body.pbs-modern .wsite-form-input-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  body.pbs-modern .wsite-name-field > .wsite-form-left,
  body.pbs-modern .wsite-name-field > .wsite-form-right {
    float: none !important;
    width: 100% !important;
    margin: 0 0 0.9rem !important;
  }

  body.pbs-modern .wsite-name-field > .wsite-form-right {
    margin-bottom: 0 !important;
  }

  body.pbs-modern input:not([type="checkbox"]):not([type="radio"]),
  body.pbs-modern textarea,
  body.pbs-modern select,
  body.pbs-modern .wsite-form-input {
    min-height: 50px;
    font-size: 16px !important;
  }

  body.pbs-modern .wsite-button:not(.pbs-footer__social) {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    white-space: normal !important;
  }

  body.pbs-modern .wsite-button:not(.pbs-footer__social) .wsite-button-inner {
    width: 100%;
    white-space: normal !important;
    text-align: center;
  }

  /* No-header pages contain several nested legacy wrappers. On mobile those
     wrappers should share the card width instead of compounding padding. */
  body.pbs-modern.no-header-page .main-wrap > #wsite-content {
    padding: 0.75rem !important;
  }

  body.pbs-modern.no-header-page .main-wrap .wsite-body-section {
    padding: 0 !important;
  }

  body.pbs-modern.no-header-page .main-wrap .wsite-section-content > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  body.pbs-modern.no-header-page .main-wrap .wsite-section-elements {
    padding: 0.75rem !important;
  }

  body.pbs-modern .pbs-sighting-form input:not([type="checkbox"]):not([type="radio"]),
  body.pbs-modern .pbs-sighting-form textarea,
  body.pbs-modern .pbs-sighting-form select,
  body.pbs-modern .pbs-sighting-form .pbs-select__trigger {
    font-size: 16px !important;
  }

  body.pbs-modern h2,
  body.pbs-modern .wsite-content-title {
    font-size: clamp(1.45rem, 8vw, 2.15rem) !important;
  }

  body.pbs-modern .wsite-multicol-table,
  body.pbs-modern .wsite-multicol-tbody,
  body.pbs-modern .wsite-multicol-tr,
  body.pbs-modern .wsite-multicol-col {
    display: block !important;
    width: 100% !important;
  }

  .pbs-footer {
    padding: 2.15rem 1rem 2.5rem;
  }

  .pbs-footer__inner {
    width: 100%;
  }

  .pbs-footer__socials {
    gap: 0.75rem;
  }

  .pbs-footer__social {
    width: 2.5rem;
    height: 2.5rem;
  }

  .pbs-footer__legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  body.pbs-modern .unite-header .nav-wrap > .container {
    width: calc(100% - 0.75rem) !important;
    gap: 0.65rem;
    padding: 0.72rem !important;
    border-radius: 16px;
  }

  .pbs-brand {
    padding-inline: 0.18rem;
  }

  .pbs-brand__title {
    font-size: clamp(0.94rem, 5.35vw, 1.18rem);
    line-height: 1.02;
  }

  .pbs-brand__tagline {
    font-size: clamp(0.5rem, 2.55vw, 0.58rem);
    line-height: 1.35;
  }

  body.pbs-modern .unite-header .hamburger {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  body.pbs-modern .banner-wrap,
  body.pbs-modern .main-wrap,
  body.pbs-modern.pbs-banner-in-main .wrapper > .main-wrap {
    width: calc(100% - 1rem) !important;
  }

  body.pbs-modern.header-page .banner-wrap .wsite-section-content > .container,
  body.pbs-modern.splash-page:not(.wsite-page-index) .banner-wrap .banner > .container,
  body.pbs-modern .main-wrap .wsite-section-elements,
  body.pbs-modern .main-wrap > #wsite-content,
  body.pbs-modern.pbs-banner-in-main .main-wrap > .banner-wrap .wsite-section-content > .container,
  body.pbs-modern.pbs-banner-in-main .main-wrap > #wsite-content {
    padding: 1rem !important;
  }

  .pbs-form-guide,
  .pbs-form-section {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .pbs-form-section__fields {
    gap: 0.82rem;
  }

  .pbs-form-section__header {
    gap: 0.68rem;
    margin-bottom: 1rem;
    padding-bottom: 0.82rem;
  }

  .pbs-form-section__number {
    width: 2.05rem;
    height: 2.05rem;
  }

  body.pbs-modern .pbs-sighting-form span.form-radio-container {
    flex: 1 1 100%;
    min-width: 0;
  }

  .pbs-footer {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 420px) {
  body.pbs-modern .pbs-recaptcha {
    max-width: 100%;
    padding: 0.65rem;
  }

  body.pbs-modern .pbs-recaptcha__copy {
    margin-bottom: 0.65rem;
  }

  body.pbs-modern.wsite-page-index .banner-wrap .wsite-image:first-child img {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.pbs-modern *,
  body.pbs-modern *::before,
  body.pbs-modern *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes pbsNavDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pbsGalleryShake {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translate(-2px, -1px) rotate(-1deg); }
  50% { transform: translate(3px, 2px) rotate(1.2deg); }
  75% { transform: translate(-2px, 1px) rotate(-0.8deg); }
}

@keyframes pbsButtonShake {
  0%, 100% { transform: translateY(-3px) rotate(0deg); }
  25% { transform: translate(-2px, -5px) rotate(-1deg); }
  50% { transform: translate(3px, -1px) rotate(1.2deg); }
  75% { transform: translate(-1px, -4px) rotate(-0.8deg); }
}

/* Forest gallery viewer */

.fancybox-overlay,
.fancybox-overlay-fixed {
  background-color: rgba(2, 14, 7, 0.96) !important;
  background-image:
    linear-gradient(155deg, rgba(2, 22, 10, 0.84), rgba(1, 10, 5, 0.96)),
    url("deep-forest.jpg") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  backdrop-filter: blur(9px) saturate(110%);
}

.fancybox-wrap {
  max-width: calc(100vw - 2rem) !important;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.62));
}

.fancybox-skin {
  padding: 10px !important;
  overflow: visible !important;
  color: var(--pbs-cream-100) !important;
  border: 1px solid rgba(249, 203, 95, 0.42) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top right, rgba(99, 158, 105, 0.13), transparent 35%),
    linear-gradient(155deg, rgba(9, 37, 19, 0.99), rgba(3, 19, 9, 0.99)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.68) !important;
}

.fancybox-outer,
.fancybox-inner {
  border-radius: 15px !important;
  background: #031208 !important;
}

.fancybox-inner {
  overflow: hidden !important;
}

.fancybox-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 15px !important;
  transition: width 180ms ease, height 180ms ease;
}

body.pbs-lightbox-open {
  overflow: hidden !important;
}

.pbs-native-lightbox {
  position: fixed !important;
  z-index: 10000 !important;
  inset: 0 !important;
  display: grid !important;
  box-sizing: border-box;
  padding: clamp(0.5rem, 2vw, 1.5rem);
  place-items: center;
}

.pbs-native-lightbox__dialog {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: min(1120px, calc(100vw - 2rem)) !important;
  max-height: calc(100vh - 2rem) !important;
  margin: 0 !important;
}

.pbs-native-lightbox .fancybox-skin,
.pbs-native-lightbox .fancybox-outer,
.pbs-native-lightbox .fancybox-inner {
  box-sizing: border-box;
  max-height: calc(100vh - 2rem) !important;
}

.pbs-native-lightbox .fancybox-inner {
  display: grid;
  min-height: min(48vh, 360px);
  place-items: center;
}

.pbs-native-lightbox .fancybox-image {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: calc(100vh - 4rem) !important;
  object-fit: contain;
}

.pbs-native-lightbox .fancybox-close,
.pbs-native-lightbox .fancybox-nav {
  appearance: none;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.pbs-native-lightbox .fancybox-close {
  position: absolute !important;
  z-index: 10005;
  background-image: none !important;
}

.pbs-native-lightbox .fancybox-nav {
  position: absolute !important;
  z-index: 10004;
  top: 0 !important;
  bottom: 0 !important;
  width: clamp(4rem, 9vw, 6.5rem) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pbs-native-lightbox .fancybox-prev { left: 0 !important; }
.pbs-native-lightbox .fancybox-next { right: 0 !important; }

.pbs-native-lightbox .fancybox-nav span {
  position: absolute !important;
  top: 50% !important;
}

.pbs-native-lightbox__dialog.pbs-lightbox-zoomed .fancybox-image {
  width: auto !important;
  min-width: 175% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
}

.pbs-lightbox-zoom {
  position: absolute !important;
  z-index: 10005;
  top: 18px !important;
  left: 18px !important;
  display: grid !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center;
  color: var(--pbs-cream-50) !important;
  border: 1px solid rgba(249, 203, 95, 0.5) !important;
  border-radius: 14px !important;
  background: rgba(5, 28, 13, 0.94) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48) !important;
  cursor: zoom-in;
  transition:
    color var(--pbs-transition),
    border-color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition);
}

.pbs-lightbox-zoom svg {
  width: 23px;
  height: 23px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pbs-lightbox-zoom__minus {
  display: none;
}

.pbs-lightbox-zoom:hover,
.pbs-lightbox-zoom:focus-visible,
.pbs-lightbox-zoom[aria-pressed="true"] {
  color: #142418 !important;
  border-color: var(--pbs-gold-400) !important;
  background: var(--pbs-gold-400) !important;
  transform: translateY(-1px);
}

.pbs-lightbox-zoom[aria-pressed="true"] {
  cursor: zoom-out;
}

.pbs-lightbox-zoom[aria-pressed="true"] .pbs-lightbox-zoom__plus {
  display: none;
}

.pbs-lightbox-zoom[aria-pressed="true"] .pbs-lightbox-zoom__minus {
  display: block;
}

.fancybox-wrap.pbs-lightbox-zoomed .fancybox-inner {
  overflow: auto !important;
}

.fancybox-wrap.pbs-lightbox-zoomed .fancybox-image {
  width: 175% !important;
  max-width: none !important;
  height: 175% !important;
  cursor: grab;
}

.fancybox-close {
  top: 18px !important;
  right: 18px !important;
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center;
  color: var(--pbs-cream-50) !important;
  border: 1px solid rgba(249, 203, 95, 0.5) !important;
  border-radius: 14px !important;
  background: rgba(5, 28, 13, 0.94) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48) !important;
  text-decoration: none !important;
}

.fancybox-close::before {
  content: "\00d7" !important;
  color: currentColor !important;
  font-family: Arial, sans-serif !important;
  font-size: 2rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.fancybox-close:hover,
.fancybox-close:focus-visible {
  color: #142418 !important;
  border-color: var(--pbs-gold-400) !important;
  background: var(--pbs-gold-400) !important;
  transform: translateY(-1px);
}

.fancybox-nav span {
  width: 48px !important;
  height: 48px !important;
  margin-top: -24px !important;
  display: grid !important;
  place-items: center;
  visibility: visible !important;
  opacity: 0.84;
  color: var(--pbs-cream-50) !important;
  border: 1px solid rgba(249, 203, 95, 0.34) !important;
  border-radius: 14px !important;
  background: rgba(5, 28, 13, 0.9) !important;
  background-image: none !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  transition:
    opacity var(--pbs-transition),
    color var(--pbs-transition),
    background var(--pbs-transition),
    transform var(--pbs-transition);
}

body.pbs-modern .fancybox-nav:focus-visible {
  outline: 0 !important;
}

.fancybox-prev span {
  left: 16px !important;
}

.fancybox-next span {
  right: 16px !important;
}

.fancybox-nav span::before {
  position: static !important;
  color: currentColor !important;
  font-family: Georgia, serif !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}

.fancybox-prev span::before {
  content: "\2039" !important;
}

.fancybox-next span::before {
  content: "\203a" !important;
}

.fancybox-nav:hover span,
.fancybox-nav:focus-visible span {
  opacity: 1;
  color: #142418 !important;
  background: var(--pbs-gold-400) !important;
  transform: scale(1.04);
}

.fancybox-title,
.fancybox-title-inside-wrap {
  color: rgba(245, 249, 238, 0.86) !important;
  font-family: var(--pbs-body) !important;
  font-size: 0.82rem !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

.fancybox-title-inside-wrap {
  margin: 8px 4px 2px !important;
  padding: 0.55rem 0.7rem !important;
  border: 1px solid rgba(183, 211, 188, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

#fancybox-thumbs.bottom {
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
}

#fancybox-thumbs ul {
  padding: 7px !important;
  border: 1px solid rgba(249, 203, 95, 0.24);
  border-radius: 14px;
  background: rgba(4, 26, 12, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

#fancybox-thumbs ul li {
  padding: 2px !important;
  opacity: 0.58 !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  transition:
    opacity var(--pbs-transition),
    border-color var(--pbs-transition),
    transform var(--pbs-transition);
}

#fancybox-thumbs ul li:hover,
#fancybox-thumbs ul li.active {
  opacity: 1 !important;
  border-color: var(--pbs-gold-400) !important;
  transform: translateY(-1px);
}

#fancybox-thumbs ul li a,
#fancybox-thumbs ul li img {
  overflow: hidden;
  border: 0 !important;
  border-radius: 5px !important;
}

#fancybox-loading {
  border: 1px solid rgba(249, 203, 95, 0.32) !important;
  border-radius: 14px !important;
  background-color: rgba(4, 26, 12, 0.96) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

@media (max-width: 700px) {
  .fancybox-wrap {
    max-width: calc(100vw - 1rem) !important;
  }

  .fancybox-skin {
    padding: 6px !important;
    border-radius: 16px !important;
  }

  .fancybox-outer,
  .fancybox-inner,
  .fancybox-image {
    border-radius: 11px !important;
  }

  .fancybox-close {
    top: 11px !important;
    right: 11px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .pbs-lightbox-zoom {
    top: 11px !important;
    left: 11px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .fancybox-nav span {
    width: 42px !important;
    height: 42px !important;
    margin-top: -21px !important;
  }

  .fancybox-prev span { left: 10px !important; }
  .fancybox-next span { right: 10px !important; }

  #fancybox-thumbs ul {
    padding: 5px !important;
  }
}

/* Centered document downloads */
body.pbs-modern .pbs-download-wrap {
  display: flex;
  justify-content: center;
  clear: both;
  width: 100%;
  margin: 1.35rem auto 1.9rem;
}

body.pbs-modern a.pbs-download-button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 0.95rem;
  width: min(100%, 680px);
  min-height: 82px;
  padding: 0.85rem 1rem;
  color: var(--pbs-cream-50) !important;
  text-align: left;
  text-decoration: none !important;
  border: 1px solid rgba(249, 203, 95, 0.32);
  border-radius: 19px;
  background:
    radial-gradient(circle at 0 0, rgba(249, 203, 95, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(22, 67, 35, 0.97), rgba(5, 33, 16, 0.98));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform var(--pbs-transition),
    border-color var(--pbs-transition),
    box-shadow var(--pbs-transition),
    background var(--pbs-transition);
}

body.pbs-modern a.pbs-download-button:hover,
body.pbs-modern a.pbs-download-button:focus-visible {
  color: var(--pbs-cream-50) !important;
  border-color: rgba(249, 203, 95, 0.78);
  background:
    radial-gradient(circle at 0 0, rgba(249, 203, 95, 0.23), transparent 46%),
    linear-gradient(135deg, rgba(28, 80, 42, 0.99), rgba(6, 40, 19, 0.99));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.38),
    0 0 0 3px rgba(249, 203, 95, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

body.pbs-modern a.pbs-download-button:active {
  transform: translateY(-1px) scale(0.995);
}

.pbs-download-button__icon,
.pbs-download-button__arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.pbs-download-button__icon {
  width: 48px;
  height: 48px;
  color: #18301e;
  border: 1px solid rgba(255, 244, 208, 0.48);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffe184, var(--pbs-gold-400));
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.28);
  transition: transform var(--pbs-transition), box-shadow var(--pbs-transition);
}

.pbs-download-button__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pbs-download-button:hover .pbs-download-button__icon,
.pbs-download-button:focus-visible .pbs-download-button__icon {
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.36);
  transform: translateY(-1px) scale(1.04);
}

.pbs-download-button__copy {
  display: grid;
  min-width: 0;
  gap: 0.22rem;
}

.pbs-download-button__eyebrow {
  color: var(--pbs-gold-400);
  font-family: var(--pbs-body);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.14em;
}

.pbs-download-button__label {
  color: var(--pbs-cream-50);
  font-family: var(--pbs-body);
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  font-weight: 780;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.pbs-download-button__arrow {
  width: 38px;
  height: 38px;
  color: var(--pbs-gold-400);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  border: 1px solid rgba(249, 203, 95, 0.2);
  border-radius: 50%;
  background: rgba(2, 21, 9, 0.45);
  transition: transform var(--pbs-transition), background var(--pbs-transition);
}

.pbs-download-button:hover .pbs-download-button__arrow,
.pbs-download-button:focus-visible .pbs-download-button__arrow {
  background: rgba(249, 203, 95, 0.13);
  transform: translateY(2px);
}

@media (max-width: 600px) {
  body.pbs-modern .pbs-download-wrap {
    margin: 1.1rem auto 1.6rem;
  }

  body.pbs-modern a.pbs-download-button {
    grid-template-columns: 44px minmax(0, 1fr) 34px;
    gap: 0.72rem;
    min-height: 76px;
    padding: 0.72rem 0.75rem;
    border-radius: 17px;
  }

  .pbs-download-button__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .pbs-download-button__icon svg {
    width: 22px;
    height: 22px;
  }

  .pbs-download-button__label {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .pbs-download-button__arrow {
    width: 34px;
    height: 34px;
    font-size: 1.18rem;
  }
}

/* Contact phone actions */
body.pbs-modern .pbs-contact-intro {
  max-width: 720px;
  margin: 0 auto 1.1rem !important;
  color: var(--pbs-cream-50) !important;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem) !important;
  line-height: 1.65 !important;
}

body.pbs-modern .pbs-contact-intro strong {
  color: inherit !important;
}

body.pbs-modern .pbs-call-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(100%, 650px);
  margin: 0 auto 1.7rem;
}

body.pbs-modern a.pbs-call-button {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 70px;
  padding: 0.72rem 0.9rem;
  color: var(--pbs-cream-50) !important;
  text-decoration: none !important;
  border: 1px solid rgba(249, 203, 95, 0.3);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(249, 203, 95, 0.11), rgba(111, 190, 107, 0.08)),
    rgba(3, 28, 12, 0.91);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(1, 12, 5, 0.24);
  transition: transform var(--pbs-transition), border-color var(--pbs-transition), box-shadow var(--pbs-transition), background var(--pbs-transition);
}

body.pbs-modern a.pbs-call-button:hover,
body.pbs-modern a.pbs-call-button:focus-visible {
  color: #fff !important;
  border-color: rgba(249, 203, 95, 0.72);
  background:
    linear-gradient(135deg, rgba(249, 203, 95, 0.2), rgba(111, 190, 107, 0.13)),
    rgba(5, 38, 17, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 15px 30px rgba(1, 12, 5, 0.34);
  transform: translateY(-2px);
}

body.pbs-modern a.pbs-call-button:active {
  transform: translateY(0) scale(0.985);
}

.pbs-call-button__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #17341f;
  border: 1px solid rgba(255, 245, 210, 0.52);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffe184, var(--pbs-gold-400));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform var(--pbs-transition), box-shadow var(--pbs-transition);
}

.pbs-call-button__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.pbs-call-button:hover .pbs-call-button__icon,
.pbs-call-button:focus-visible .pbs-call-button__icon {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  transform: scale(1.04);
}

.pbs-call-button__copy {
  display: grid;
  min-width: 0;
  gap: 0.23rem;
  text-align: left;
}

.pbs-call-button__label {
  color: var(--pbs-gold-400);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pbs-call-button__number {
  color: #fff !important;
  font-size: clamp(0.88rem, 1.65vw, 1.02rem);
  font-weight: 790;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 520px) {
  body.pbs-modern .pbs-call-actions {
    gap: 0.55rem;
  }

  body.pbs-modern a.pbs-call-button {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.52rem;
    min-height: 60px;
    padding: 0.58rem 0.62rem;
    border-radius: 14px;
  }

  .pbs-call-button__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .pbs-call-button__icon svg {
    width: 18px;
    height: 18px;
  }

  .pbs-call-button__label {
    display: none;
  }

  .pbs-call-button__number {
    font-size: clamp(0.72rem, 3.1vw, 0.84rem);
  }
}
