.site.grid-container,
.grid-container,
.bdp-container {
  width: min(calc(100% - (var(--bdp-gutter) * 2)), var(--bdp-container-lg));
  max-width: var(--bdp-container-lg);
  margin-inline: auto;
}

.bdp-container--md {
  width: min(calc(100% - (var(--bdp-gutter) * 2)), var(--bdp-container-md));
  max-width: var(--bdp-container-md);
  margin-inline: auto;
}

.bdp-container--narrow {
  width: min(calc(100% - (var(--bdp-gutter) * 2)), var(--bdp-container-sm));
  max-width: var(--bdp-container-sm);
  margin-inline: auto;
}

.bdp-section {
  padding-block: var(--bdp-section-y-desktop);
}

.bdp-section--tight {
  padding-block: clamp(var(--bdp-space-6), 6vw, var(--bdp-space-8));
}

.bdp-section--soft {
  background: var(--bdp-color-surface-soft);
}

.bdp-section--deep {
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.1), transparent 30%),
    linear-gradient(180deg, var(--bdp-color-emerald-deep) 0, #072b24 100%);
  color: var(--bdp-color-text-on-dark);
}

.bdp-stack {
  display: grid;
  gap: var(--bdp-stack-gap, var(--bdp-space-5));
}

.bdp-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--bdp-cluster-gap, var(--bdp-space-4));
}

.bdp-flow > * + * {
  margin-top: var(--bdp-flow-space, var(--bdp-space-5));
}

body.bdp-shell-managed:not(.bdp-pdp-enabled) {
  background:
    radial-gradient(circle at top left, rgba(198, 165, 107, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(6, 78, 59, 0.05), transparent 28%),
    linear-gradient(180deg, var(--bdp-color-bg) 0, var(--bdp-color-surface-soft) 100%);
}

body.bdp-shell-managed:not(.bdp-pdp-enabled) #page,
body.bdp-shell-managed:not(.bdp-pdp-enabled) .site {
  background: transparent;
}

body.bdp-shell-managed:not(.bdp-pdp-enabled) .site-content {
  padding-top: clamp(var(--bdp-space-5), 2vw, var(--bdp-space-7));
}

body.bdp-shell-managed:not(.bdp-pdp-enabled) .site-footer {
  margin-top: 0;
  background: transparent;
}

.bdp-shell-header {
  z-index: 1000;
  color: var(--bdp-color-emerald-deep);
}

.bdp-shell-header--inner {
  position: sticky;
  top: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bdp-color-bg) 96%, transparent), color-mix(in srgb, var(--bdp-color-bg) 90%, transparent));
  backdrop-filter: blur(22px);
  border-bottom: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 88%, transparent);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.bdp-shell-header--home {
  position: fixed;
  inset: 0 0 auto;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease;
}

.bdp-shell-header--home.is-scrolled {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bdp-color-bg) 94%, transparent), color-mix(in srgb, var(--bdp-color-bg) 88%, transparent));
  border-bottom: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 88%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

body.admin-bar .bdp-shell-header--inner,
body.admin-bar .bdp-shell-header--home {
  top: 32px;
}

.bdp-shell-topbar {
  border-bottom: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 80%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bdp-color-surface-soft) 92%, white), color-mix(in srgb, white 92%, var(--bdp-color-surface-soft)));
}

.bdp-shell-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.35rem;
  padding-inline: var(--bdp-shell-inline-padding);
}

.bdp-shell-topbar__item {
  display: inline-flex;
  align-items: center;
  min-height: var(--bdp-touch-target-min);
  padding-inline: 0.35rem;
  border-radius: var(--bdp-radius-pill);
  color: color-mix(in srgb, var(--bdp-color-text) 74%, var(--bdp-color-muted));
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--bdp-motion-base) ease,
    background-color var(--bdp-motion-base) ease;
}

.bdp-shell-topbar__item:hover,
.bdp-shell-topbar__item:focus-visible {
  background: color-mix(in srgb, var(--bdp-color-gold-soft) 65%, white);
  color: var(--bdp-color-emerald-deep);
}

.bdp-shell-header__bar {
  background: transparent;
}

.bdp-shell-header__inner {
  min-height: var(--bdp-shell-height-desktop);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(var(--bdp-space-4), 2vw, var(--bdp-space-6));
  padding-block: 0.95rem;
}

.bdp-shell-header__start,
.bdp-shell-header__utilities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bdp-shell-header__toggle {
  display: none;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-pill);
  background:
    linear-gradient(180deg, color-mix(in srgb, white 86%, var(--bdp-color-surface-soft)), color-mix(in srgb, white 76%, var(--bdp-color-surface-soft)));
  color: var(--bdp-color-emerald-deep);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  box-shadow: var(--bdp-shadow-1);
}

.bdp-shell-header__toggle-line {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
}

.bdp-shell-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bdp-color-emerald-deep);
  text-decoration: none;
}

.bdp-shell-header__logo {
  max-height: 34px;
  width: auto;
}

.bdp-shell-header__title {
  color: inherit;
  font-family: var(--bdp-font-display);
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.8rem);
  letter-spacing: 0.08em;
}

.bdp-shell-nav {
  justify-self: center;
}

.bdp-shell-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-shell-nav__item {
  position: relative;
}

.bdp-shell-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: var(--bdp-touch-target-min);
  padding: 0.7rem 0.82rem;
  border-radius: var(--bdp-radius-pill);
  color: var(--bdp-color-emerald-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--bdp-motion-base) ease,
    background-color var(--bdp-motion-base) ease,
    box-shadow var(--bdp-motion-base) ease;
}

.bdp-shell-nav__item.has-children > .bdp-shell-nav__link::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.15rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.bdp-shell-nav__item:hover > .bdp-shell-nav__link,
.bdp-shell-nav__item:focus-within > .bdp-shell-nav__link,
.bdp-shell-nav__item.is-current > .bdp-shell-nav__link {
  background: color-mix(in srgb, var(--bdp-color-gold-soft) 76%, white);
  color: var(--bdp-color-emerald);
}

.bdp-shell-nav__submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 16rem;
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-5);
  background: color-mix(in srgb, white 94%, var(--bdp-color-surface-soft));
  box-shadow: var(--bdp-shadow-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.bdp-shell-nav__item:hover > .bdp-shell-nav__submenu,
.bdp-shell-nav__item:focus-within > .bdp-shell-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bdp-shell-nav__submenu-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--bdp-radius-4);
  color: var(--bdp-color-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.bdp-shell-nav__submenu-link:hover,
.bdp-shell-nav__submenu-link:focus-visible,
.bdp-shell-nav__submenu-link[aria-current='page'] {
  background: color-mix(in srgb, var(--bdp-color-surface) 86%, white);
  color: var(--bdp-color-emerald-deep);
}

.bdp-shell-header__utilities {
  justify-content: flex-end;
}

.bdp-shell-header__icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--bdp-touch-target-min);
  min-width: var(--bdp-touch-target-min);
  height: var(--bdp-touch-target-min);
  min-height: var(--bdp-touch-target-min);
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  backdrop-filter: blur(10px);
  color: var(--bdp-color-emerald-deep);
  text-decoration: none;
  box-shadow: var(--bdp-shadow-1);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.bdp-shell-header__icon-link:hover,
.bdp-shell-header__icon-link:focus-visible,
.bdp-shell-header__icon-link.is-current {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--bdp-color-gold) 55%, var(--bdp-color-border-warm));
  background: color-mix(in srgb, white 82%, var(--bdp-color-surface));
  color: var(--bdp-color-emerald);
  box-shadow: var(--bdp-shadow-2);
}

.bdp-shell-header__icon-badge {
  position: absolute;
  top: -0.15rem;
  right: -0.1rem;
  min-width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.18rem;
  border-radius: 999px;
  background: var(--bdp-color-gold);
  color: #221610;
  font-size: 0.62rem;
  font-weight: 700;
}

.bdp-shell-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--bdp-touch-target-min);
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--bdp-radius-pill);
  background: linear-gradient(180deg, var(--bdp-color-emerald) 0%, var(--bdp-color-emerald-deep) 100%);
  color: var(--bdp-color-text-on-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(6, 78, 59, 0.18);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.bdp-shell-header__cta:hover,
.bdp-shell-header__cta:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, var(--bdp-color-emerald-deep) 0%, #082d26 100%);
  color: var(--bdp-color-text-on-dark);
}

.bdp-shell-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.bdp-shell-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bdp-shell-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 13, 18, 0.42);
  backdrop-filter: blur(6px);
}

.bdp-shell-drawer__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(28rem, calc(100vw - 1rem));
  max-width: 100%;
  padding: 1.35rem 1.25rem 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(198, 165, 107, 0.16), transparent 26%),
    linear-gradient(180deg, white 0, var(--bdp-color-surface-soft) 100%);
  color: var(--bdp-color-text);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 24px 0 80px rgba(17, 24, 39, 0.18);
}

.bdp-shell-drawer.is-open .bdp-shell-drawer__panel {
  transform: translateX(0);
}

.bdp-shell-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bdp-shell-drawer__section {
  display: grid;
  gap: 0.8rem;
}

.bdp-shell-drawer__section + .bdp-shell-drawer__section {
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 78%, transparent);
}

.bdp-shell-drawer__section-label {
  color: color-mix(in srgb, var(--bdp-color-text) 68%, var(--bdp-color-muted));
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bdp-shell-drawer__eyebrow {
  color: var(--bdp-color-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bdp-shell-drawer__list {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-shell-drawer__item {
  display: grid;
  gap: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 80%, transparent);
}

.bdp-shell-drawer__item.is-current > .bdp-shell-drawer__link,
.bdp-shell-drawer__item.is-current > .bdp-shell-drawer__row > .bdp-shell-drawer__link {
  color: var(--bdp-color-emerald);
}

.bdp-shell-drawer__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.bdp-shell-drawer__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--bdp-touch-target-min);
  color: var(--bdp-color-emerald-deep);
  font-family: var(--bdp-font-display);
  font-size: clamp(1.18rem, 4vw, 1.52rem);
  line-height: 1.1;
  text-decoration: none;
}

.bdp-shell-drawer__link:hover,
.bdp-shell-drawer__link:focus-visible,
.bdp-shell-drawer__submenu-link:hover,
.bdp-shell-drawer__submenu-link:focus-visible,
.bdp-shell-drawer__submenu-link[aria-current='page'] {
  color: var(--bdp-color-emerald);
}

.bdp-shell-drawer__submenu-toggle {
  width: var(--bdp-touch-target-min);
  min-width: var(--bdp-touch-target-min);
  height: var(--bdp-touch-target-min);
  min-height: var(--bdp-touch-target-min);
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--bdp-color-emerald-deep);
  box-shadow: var(--bdp-shadow-1);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bdp-shell-drawer__submenu-toggle[aria-expanded='true'] {
  transform: rotate(180deg);
  border-color: color-mix(in srgb, var(--bdp-color-gold) 55%, var(--bdp-color-border-warm));
  color: var(--bdp-color-emerald);
}

.bdp-shell-drawer__submenu {
  display: grid;
  gap: 0.35rem;
  padding: 0 0 0.25rem 0.6rem;
}

.bdp-shell-drawer__submenu-link {
  color: var(--bdp-color-text);
  font-size: 0.96rem;
  text-decoration: none;
}

.bdp-shell-drawer__actions {
  display: grid;
  gap: 0.65rem;
}

.bdp-shell-drawer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-pill);
  background: rgba(255, 255, 255, 0.78);
  color: var(--bdp-color-emerald-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--bdp-shadow-1);
}

.bdp-shell-drawer__button--primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--bdp-color-emerald) 0%, var(--bdp-color-emerald-deep) 100%);
  color: var(--bdp-color-text-on-dark);
}

.bdp-shell-drawer__meta {
  display: grid;
  gap: 0.55rem;
  color: var(--bdp-color-muted);
}

.bdp-shell-drawer__meta a,
.bdp-shell-drawer__meta span {
  color: inherit;
  text-decoration: none;
}

.bdp-shell-drawer__meta a {
  display: inline-block;
  min-height: var(--bdp-touch-target-min);
  padding-block: 0.35rem;
}

.bdp-shell-drawer-open,
html.bdp-shell-drawer-open,
body.bdp-shell-drawer-open {
  overflow: hidden;
}

.bdp-shell-prefooter {
  margin-top: var(--bdp-space-10);
  padding: clamp(var(--bdp-space-8), 6vw, var(--bdp-space-10)) 0;
  background:
    radial-gradient(circle at top right, rgba(198, 165, 107, 0.16), transparent 22%),
    linear-gradient(180deg, var(--bdp-color-surface-soft) 0, var(--bdp-color-surface) 100%);
  border-top: 1px solid var(--bdp-color-border-warm);
  border-bottom: 1px solid var(--bdp-color-border-warm);
}

.bdp-shell-prefooter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(var(--bdp-space-6), 4vw, var(--bdp-space-9));
  align-items: start;
}

.bdp-shell-prefooter__eyebrow,
.bdp-shell-prefooter__card-label {
  display: inline-block;
  color: var(--bdp-color-gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bdp-shell-prefooter__title {
  margin: 1rem 0 1rem;
  color: var(--bdp-color-emerald-deep);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.bdp-shell-prefooter__text {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: color-mix(in srgb, var(--bdp-color-text) 84%, var(--bdp-color-muted));
}

.bdp-shell-prefooter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.bdp-shell-prefooter__card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--bdp-color-border-warm);
  border-radius: var(--bdp-radius-5);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--bdp-shadow-1);
}

.bdp-shell-prefooter__card a,
.bdp-shell-prefooter__card span {
  color: var(--bdp-color-text);
  line-height: 1.6;
  text-decoration: none;
}

.bdp-shell-prefooter__card a {
  display: inline-block;
  min-height: var(--bdp-touch-target-min);
  padding-block: 0.35rem;
}

.bdp-shell-footer {
  background:
    radial-gradient(circle at top center, rgba(6, 78, 59, 0.05), transparent 22%),
    linear-gradient(180deg, #fffdf9 0, #f4ede4 100%);
  color: var(--bdp-color-text);
}

.bdp-shell-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(var(--bdp-space-7), 5vw, var(--bdp-space-10));
  padding-block: clamp(var(--bdp-space-7), 5vw, var(--bdp-space-9));
}

.bdp-shell-footer__brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.bdp-shell-footer__brand-link,
.bdp-shell-footer__title {
  color: var(--bdp-color-emerald-deep);
  text-decoration: none;
}

.bdp-shell-footer__logo {
  max-height: 32px;
  width: auto;
}

.bdp-shell-footer__title {
  font-family: var(--bdp-font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.bdp-shell-footer__brand-copy {
  max-width: 28rem;
  margin: 0;
  color: color-mix(in srgb, var(--bdp-color-text) 84%, var(--bdp-color-muted));
  line-height: 1.72;
}

.bdp-shell-footer__brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid color-mix(in srgb, var(--bdp-color-border-warm) 72%, transparent);
}

.bdp-shell-footer__brand-meta a {
  color: color-mix(in srgb, var(--bdp-color-text) 82%, var(--bdp-color-muted));
  text-decoration: none;
}

.bdp-shell-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(var(--bdp-space-5), 3vw, var(--bdp-space-8));
}

.bdp-shell-footer__column {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.bdp-shell-footer__heading {
  color: var(--bdp-color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bdp-shell-footer__links,
.bdp-shell-footer__sublinks {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-shell-footer__links a,
.bdp-shell-footer__sublinks a,
.bdp-shell-footer__visit a,
.bdp-shell-footer__visit span {
  color: var(--bdp-color-text);
  text-decoration: none;
  line-height: 1.6;
}

.bdp-shell-footer__brand-meta a,
.bdp-shell-footer__links a,
.bdp-shell-footer__sublinks a,
.bdp-shell-footer__visit a,
.bdp-shell-footer__contact-link,
.bdp-shell-footer__legal-nav a {
  display: inline-block;
  min-height: var(--bdp-touch-target-min);
  padding-block: 0.35rem;
}

.bdp-shell-footer__sublinks {
  margin-top: 0.45rem;
  padding-left: 0.75rem;
}

.bdp-shell-footer__visit {
  display: grid;
  gap: 0.65rem;
}

.bdp-shell-footer__contact-link {
  color: var(--bdp-color-emerald);
  font-weight: 600;
}

.bdp-shell-footer :where(a:hover, a:focus-visible) {
  color: var(--bdp-color-emerald);
}

.bdp-shell-footer__legal {
  border-top: 1px solid var(--bdp-color-border-warm);
}

.bdp-shell-footer__legal-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bdp-shell-footer__copyright {
  margin: 0;
  color: color-mix(in srgb, var(--bdp-color-text) 76%, var(--bdp-color-muted));
  font-size: 0.82rem;
}

.bdp-shell-footer__legal-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.bdp-shell-footer__legal-nav a {
  color: color-mix(in srgb, var(--bdp-color-text) 76%, var(--bdp-color-muted));
  font-size: 0.82rem;
  text-decoration: none;
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area {
  padding: clamp(var(--bdp-space-6), 3vw, var(--bdp-space-8));
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header {
  padding-block: clamp(var(--bdp-space-7), 5vw, var(--bdp-space-9));
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .entry-title,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .page-title,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header h1 {
  color: var(--bdp-color-emerald-deep);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .entry-meta,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .entry-meta a {
  color: var(--bdp-color-muted);
}

body.blog:not(.bdp-homepage) .inside-article,
body.archive:not(.post-type-archive-product):not(.taxonomy-product_cat):not(.taxonomy-product_tag):not(.bdp-homepage) .inside-article {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article > :first-child,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header > :first-child,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area > :first-child {
  margin-top: 0;
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article > :last-child,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header > :last-child,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area > :last-child {
  margin-bottom: 0;
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article > * + *,
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area > * + * {
  margin-top: var(--bdp-space-5);
}

body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article > :where(h2, h3, h4),
body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area > :where(h2, h3, h4) {
  margin-top: var(--bdp-space-7);
}

body.blog:not(.bdp-homepage) .entry-title a,
body.archive:not(.post-type-archive-product):not(.taxonomy-product_cat):not(.taxonomy-product_tag):not(.bdp-homepage) .entry-title a,
body.single-post:not(.bdp-homepage) .entry-title {
  color: var(--bdp-color-emerald-deep);
  font-family: var(--bdp-font-display);
  text-decoration: none;
}

body.blog:not(.bdp-homepage) .post-image img,
body.archive:not(.post-type-archive-product):not(.taxonomy-product_cat):not(.taxonomy-product_tag):not(.bdp-homepage) .post-image img {
  border-radius: 1rem;
}

body.single-post:not(.bdp-homepage) .inside-article {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.bdp-woocommerce-context {
  margin-block: var(--bdp-space-6);
}

.single-product.bdp-pdp-enabled .site-content {
  padding-top: 72px;
  padding-bottom: 170px;
}

.single-product.bdp-pdp-enabled #page {
  background: var(--bdp-color-bg);
}

.single-product.bdp-pdp-enabled .inside-article {
  padding: 0;
}

@media (max-width: 1100px) {
  .bdp-shell-header__inner {
    gap: var(--bdp-space-4);
  }

  .bdp-shell-nav__list {
    gap: 0.15rem;
  }

  .bdp-shell-nav__link {
    padding-inline: 0.65rem;
    font-size: 0.69rem;
  }

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

@media (max-width: 1024px) {
  .bdp-shell-header__toggle {
    display: inline-flex;
  }

  .bdp-shell-nav {
    display: none;
  }

  .bdp-shell-header__cta {
    min-height: 42px;
    padding-inline: 1rem;
  }

  .bdp-shell-prefooter__inner,
  .bdp-shell-footer__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 782px) {
  body.bdp-shell-managed:not(.bdp-homepage):not(.bdp-pdp-enabled) .site-content {
    padding-top: var(--bdp-space-4);
  }

  .bdp-shell-topbar__inner {
    justify-content: flex-start;
    gap: 0.45rem 0.9rem;
  }

  .bdp-shell-topbar__item {
    font-size: 0.64rem;
  }

  .bdp-shell-header__inner {
    min-height: var(--bdp-shell-height-mobile);
    gap: 0.65rem;
  }

  .bdp-shell-header__logo {
    max-height: 28px;
  }

  .bdp-shell-header__utilities {
    gap: 0.5rem;
  }

  .bdp-shell-header__cta {
    display: none;
  }

  .bdp-shell-drawer__panel {
    width: min(25rem, calc(100vw - 0.75rem));
    padding: 1.15rem 1rem 1.35rem;
  }

  .bdp-shell-prefooter {
    margin-top: var(--bdp-space-9);
    padding-block: var(--bdp-space-9);
  }

  .bdp-shell-prefooter__actions {
    flex-direction: column;
  }

  .bdp-shell-prefooter__cards {
    grid-template-columns: 1fr;
  }

  .bdp-shell-footer__grid {
    grid-template-columns: 1fr;
  }

  .bdp-shell-footer__legal-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.15rem;
  }

  .bdp-shell-footer__legal-nav {
    gap: 0.9rem;
  }
}

@media (max-width: 782px) {
  body.admin-bar .bdp-shell-header--inner,
  body.admin-bar .bdp-shell-header--home {
    top: 46px;
  }
}

.single-product.bdp-pdp-enabled .content-area,
.single-product.bdp-pdp-enabled .site-main {
  width: 100%;
}

@media (max-width: 1024px) {
  .bdp-section {
    padding-block: var(--bdp-section-y-tablet);
  }
}

@media (max-width: 782px) {
  .bdp-section {
    padding-block: var(--bdp-section-y-mobile);
  }

  body:not(.bdp-homepage):not(.bdp-pdp-enabled) .site-header {
    backdrop-filter: blur(12px);
  }

  body:not(.bdp-homepage):not(.bdp-pdp-enabled) .main-navigation .inside-navigation {
    padding: 0 var(--bdp-gutter) 16px;
  }

  body:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-article,
  body:not(.bdp-homepage):not(.bdp-pdp-enabled) .inside-page-header,
  body:not(.bdp-homepage):not(.bdp-pdp-enabled) .comments-area {
    padding: clamp(var(--bdp-space-5), 4vw, var(--bdp-space-6));
  }

  .bdp-woocommerce-context {
    margin-block: var(--bdp-space-5);
  }

  .single-product.bdp-pdp-enabled .site-content {
    padding-bottom: 180px;
  }
}

@media (max-width: 640px) {
  .bdp-shell-topbar__inner {
    gap: 0.3rem 0.75rem;
  }

  .bdp-shell-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-block: 0.85rem;
  }

  .bdp-shell-header__utilities {
    gap: 0.4rem;
  }

  .bdp-shell-drawer__panel {
    width: calc(100vw - 0.25rem);
    padding: 1rem 0.88rem 1.25rem;
  }

  .bdp-shell-footer__legal-nav {
    width: 100%;
    display: grid;
    gap: 0.25rem;
  }

}

@media (max-width: 782px) {
  body.admin-bar:not(.bdp-homepage):not(.bdp-pdp-enabled) .site-header {
    top: 46px;
  }
}
