@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --bee-ink: #161412;
  --bee-charcoal: #262824;
  --bee-accent: #e9843a;
  --bee-accent-strong: #c9621f;
  --bee-gold: #ebcd79;
  --bee-green: #4c7d49;
  --bee-green-deep: #3b6a3b;
  --bee-surface: #fdfdfc;
  --bee-surface-soft: #f5f4f1;
  --bee-surface-muted: #eeedea;
  --bee-surface-raised: #fdfdfc;
  --bee-footer: #e7e4dd;
  --bee-text: #161412;
  --bee-text-muted: #5f625e;
  --bee-border: rgba(22, 20, 18, 0.14);
  --bee-shadow: 0 24px 70px rgba(45, 37, 29, 0.1);
  --bee-radius: 18px;
  --bee-radius-small: 12px;
  --bee-container: 1240px;
  --bee-header-height: 76px;
  --bee-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bee-header-height) + 32px);
}

body {
  margin: 0;
  background: var(--bee-surface);
  color: var(--bee-text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .bee-site-header {
  top: 32px;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--bee-accent) 65%, transparent);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--bee-accent);
}

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

img {
  height: auto;
}

figure,
p,
h1,
h2,
h3,
h4,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--bee-text);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 5.35rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.15rem);
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

::selection {
  background: var(--bee-gold);
  color: var(--bee-ink);
}

:focus-visible {
  outline: 3px solid var(--bee-green);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--bee-surface);
  color: var(--bee-text);
}

.bee-skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: var(--bee-radius-small);
  background: var(--bee-accent);
  color: var(--bee-ink);
  font-weight: 800;
  transform: translateY(-180%);
}

.bee-skip-link:focus {
  transform: translateY(0);
}

.bee-container {
  width: min(calc(100% - 40px), var(--bee-container));
  margin-inline: auto;
}

.bee-main {
  min-height: 50dvh;
}

.bee-section {
  padding-block: clamp(72px, 8vw, 118px);
}

.bee-section-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.bee-section-heading--stacked {
  max-width: 800px;
}

.bee-section-heading h2 {
  max-width: 15ch;
  margin-bottom: 18px;
}

.bee-section-heading p {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--bee-text-muted);
  font-size: 1.08rem;
}

.bee-eyebrow {
  margin-bottom: 18px;
  color: var(--bee-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bee-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bee-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--bee-radius-small);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms var(--bee-ease), background-color 220ms var(--bee-ease), border-color 220ms var(--bee-ease);
}

.bee-button:hover {
  transform: translateY(-2px);
}

.bee-button:active {
  transform: translateY(1px) scale(0.99);
}

.bee-button--primary,
.bee-button--header {
  background: var(--bee-accent);
  color: var(--bee-ink);
}

.bee-button--primary:hover,
.bee-button--header:hover {
  background: var(--bee-gold);
  color: var(--bee-ink);
}

.bee-button--secondary {
  border-color: var(--bee-border);
  background: var(--bee-surface-raised);
  color: var(--bee-text);
}

.bee-button--secondary:hover {
  border-color: var(--bee-accent);
  background: var(--bee-surface-soft);
}

.bee-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--bee-text);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.bee-text-link span {
  color: var(--bee-accent-strong);
  transition: transform 220ms var(--bee-ease);
}

.bee-text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.bee-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--bee-border);
  background: color-mix(in srgb, var(--bee-surface) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.bee-utility {
  min-height: 34px;
  background: var(--bee-surface-muted);
  color: var(--bee-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.bee-utility__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bee-utility p {
  margin: 0;
}

.bee-utility a {
  color: var(--bee-text);
  text-decoration: none;
}

.bee-header-main__inner {
  display: grid;
  min-height: var(--bee-header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.bee-brand {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.bee-brand__logo {
  width: 58px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(22, 20, 18, 0.08);
  border-radius: 10px;
  background: #fdfdfc;
  object-fit: cover;
}

.bee-brand__text {
  display: grid;
  line-height: 1.12;
}

.bee-brand__text strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.bee-brand__text small {
  margin-top: 4px;
  color: var(--bee-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bee-nav {
  justify-self: end;
}

.bee-nav__list,
.bee-nav__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bee-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.bee-nav__list > li {
  position: relative;
}

.bee-nav__list > li > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--bee-text);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.bee-nav__list > li > a:hover,
.bee-nav__list > .current-menu-item > a,
.bee-nav__list > .current-menu-ancestor > a {
  color: var(--bee-accent-strong);
}

.bee-nav__list .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  width: 260px;
  padding: 10px;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius-small);
  visibility: hidden;
  background: var(--bee-surface-raised);
  box-shadow: var(--bee-shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.bee-nav__list li:hover > .sub-menu,
.bee-nav__list li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.bee-nav__list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--bee-text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.bee-nav__list .sub-menu a:hover,
.bee-nav__list .sub-menu a:focus-visible {
  background: var(--bee-surface-soft);
  color: var(--bee-accent-strong);
}

.bee-nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--bee-border);
  border-radius: 10px;
  background: var(--bee-surface-raised);
  color: var(--bee-text);
  font-weight: 800;
}

.bee-nav-toggle__bars {
  display: grid;
  width: 20px;
  gap: 4px;
}

.bee-nav-toggle__bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

/* Home hero */
.bee-hero {
  padding-block: clamp(38px, 5vw, 72px) clamp(68px, 8vw, 108px);
  overflow: hidden;
}

.bee-hero__grid {
  display: grid;
  min-height: min(650px, calc(100dvh - 116px));
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.bee-hero__content {
  max-width: 650px;
}

.bee-hero h1 {
  max-width: 12.5ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.2vw, 4.5rem);
}

.bee-hero__copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--bee-text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.bee-hero__media {
  margin: 0;
}

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

.bee-hero__media figcaption {
  max-width: 48ch;
  padding: 12px 2px 0;
  color: var(--bee-text-muted);
  font-size: 0.78rem;
}

/* Services */
.bee-services {
  padding-top: 0;
}

.bee-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bee-service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
  box-shadow: 0 10px 35px rgba(45, 37, 29, 0.05);
  transition: transform 260ms var(--bee-ease), border-color 260ms var(--bee-ease), box-shadow 260ms var(--bee-ease);
}

.bee-service-card:hover {
  border-color: color-mix(in srgb, var(--bee-accent) 60%, var(--bee-border));
  box-shadow: 0 18px 48px rgba(45, 37, 29, 0.1);
  transform: translateY(-5px);
}

.bee-service-card__image {
  display: block;
  overflow: hidden;
  background: var(--bee-surface-muted);
}

.bee-service-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms var(--bee-ease);
}

.bee-service-card:hover .bee-service-card__image img {
  transform: scale(1.035);
}

.bee-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.bee-service-card h3 {
  min-height: 2.2em;
  margin-bottom: 14px;
}

.bee-service-card h3 a {
  text-decoration: none;
}

.bee-service-card p {
  flex: 1;
  margin-bottom: 22px;
  color: var(--bee-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Trust */
.bee-trust-band {
  padding-block: clamp(44px, 6vw, 72px);
  background: var(--bee-surface-muted);
}

.bee-trust-band__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.bee-trust-band__metric {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bee-trust-band__metric strong {
  color: var(--bee-accent-strong);
  font-size: clamp(4.4rem, 8vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.bee-trust-band__metric span {
  max-width: 15ch;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.bee-trust-band__list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.bee-trust-band__list li {
  display: grid;
  gap: 7px;
  padding: 8px 24px;
  border-left: 1px solid var(--bee-border);
}

.bee-trust-band__list strong {
  font-size: 0.94rem;
}

.bee-trust-band__list span {
  color: var(--bee-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* About */
.bee-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.bee-about__media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 14px;
}

.bee-about__image {
  width: 100%;
  border-radius: var(--bee-radius);
  object-fit: cover;
}

.bee-about__image--main {
  aspect-ratio: 4 / 5;
}

.bee-about__image--detail {
  aspect-ratio: 4 / 5;
  margin-bottom: 38px;
}

.bee-about__content h2 {
  max-width: 12ch;
  margin-bottom: 24px;
}

.bee-about__content > p {
  margin-bottom: 30px;
  color: var(--bee-text-muted);
  font-size: 1.04rem;
}

.bee-value-stack {
  margin-bottom: 30px;
}

.bee-value-stack > div {
  padding-block: 18px;
  border-bottom: 1px solid var(--bee-border);
}

.bee-value-stack h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.bee-value-stack p {
  margin: 0;
  color: var(--bee-text-muted);
  font-size: 0.88rem;
}

/* Mission */
.bee-mission {
  padding-block: clamp(66px, 8vw, 104px);
  background: color-mix(in srgb, var(--bee-gold) 35%, var(--bee-surface));
}

.bee-mission__inner,
.bee-full-mission__inner {
  max-width: 960px;
  text-align: center;
}

.bee-mission h2,
.bee-full-mission h2 {
  margin-bottom: 20px;
}

.bee-mission p,
.bee-full-mission p {
  margin-bottom: 28px;
  color: var(--bee-text-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

/* Video */
.bee-video-section {
  overflow: hidden;
}

.bee-video-rail {
  display: grid;
  grid-auto-columns: minmax(220px, 280px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bee-accent) var(--bee-surface-muted);
}

.bee-video-card {
  margin: 0;
  scroll-snap-align: start;
}

.bee-video-card video {
  width: 100%;
  aspect-ratio: 478 / 850;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-charcoal);
  object-fit: cover;
}

.bee-video-card figcaption {
  padding-top: 10px;
  color: var(--bee-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Gallery */
.bee-gallery-preview {
  padding-top: 0;
}

.bee-gallery-grid {
  display: grid;
}

.bee-gallery-grid--preview {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 100px;
  gap: 12px;
}

.bee-gallery-item {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--bee-radius);
  appearance: none;
  background: var(--bee-surface-muted);
  cursor: zoom-in;
}

.bee-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--bee-ease);
}

.bee-gallery-item:hover img {
  transform: scale(1.03);
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 4;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 3;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 4;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(6) {
  grid-column: span 3;
  grid-row: span 3;
}

.bee-gallery-grid--preview .bee-gallery-item:nth-child(7),
.bee-gallery-grid--preview .bee-gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 3;
}

.bee-section-action {
  margin-top: 32px;
  text-align: center;
}

.bee-gallery-grid--complete {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 10px;
  gap: 14px;
}

.bee-gallery-grid--complete .bee-gallery-item {
  grid-column: span 3;
  grid-row: span 12;
  min-height: 0;
  border: 1px solid var(--bee-border);
  box-shadow: 0 14px 34px rgba(45, 37, 29, 0.08);
}

.bee-gallery-grid--complete .bee-gallery-item--portrait {
  grid-row: span 18;
}

.bee-gallery-grid--complete .bee-gallery-item--featured {
  grid-column: span 6;
  grid-row: span 15;
}

.bee-gallery-grid--complete .bee-gallery-item img {
  height: 100%;
}

.bee-gallery-complete {
  padding-top: clamp(54px, 6vw, 84px);
  background: var(--bee-surface-soft);
}

.bee-gallery-complete__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.bee-gallery-complete__heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.bee-gallery-complete__count {
  flex: 0 0 auto;
  margin-bottom: 6px;
  color: var(--bee-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bee-lightbox {
  width: min(96vw, 1180px);
  max-width: none;
  padding: 50px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bee-radius);
  background: #1d1b19;
  color: #f7f5f1;
  box-shadow: 0 30px 100px rgba(8, 6, 4, 0.42);
}

.bee-lightbox:not([open]) {
  display: none;
}

.bee-lightbox.is-fallback-open {
  position: fixed;
  z-index: 40;
  inset: 4vh 3vw;
  display: block;
  max-height: 92vh;
  overflow: auto;
  margin: auto;
  box-shadow: 0 0 0 100vmax rgba(15, 13, 11, 0.82), 0 30px 100px rgba(8, 6, 4, 0.42);
}

html.bee-lightbox-open {
  overflow: hidden;
}

.bee-lightbox::backdrop {
  background: rgba(15, 13, 11, 0.78);
  backdrop-filter: blur(8px);
}

.bee-lightbox img {
  width: 100%;
  max-height: 74dvh;
  margin-inline: auto;
  object-fit: contain;
}

.bee-lightbox__stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.bee-lightbox__figure {
  min-width: 0;
  margin: 0;
}

.bee-lightbox__figure figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 2px 0;
  color: rgba(247, 245, 241, 0.76);
  font-size: 0.78rem;
  line-height: 1.45;
}

.bee-lightbox__figure figcaption span:first-child {
  max-width: 72ch;
}

.bee-lightbox__figure figcaption span:last-child {
  flex: 0 0 auto;
  color: var(--bee-accent);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.bee-lightbox__nav {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--bee-ease);
}

.bee-lightbox__nav span {
  display: block;
  margin-top: -4px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.bee-lightbox__nav:hover,
.bee-lightbox__nav:focus-visible {
  border-color: var(--bee-accent);
  background: rgba(233, 132, 58, 0.2);
  transform: scale(1.05);
}

.bee-lightbox__nav:active {
  transform: scale(0.97);
}

.bee-lightbox__close {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: #f7f5f1;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Service area and contact */
.bee-service-area {
  color: #f7f5f1;
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 132, 58, 0.11), transparent 42%),
    #171a18;
}

.bee-service-area__heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.bee-service-area__heading h2 {
  margin-bottom: 14px;
  color: #fff;
}

.bee-service-area__heading p:not(.bee-eyebrow) {
  max-width: 58ch;
  margin-inline: auto;
  color: rgba(247, 245, 241, 0.72);
}

.bee-service-area__heading .bee-text-link {
  color: #fff;
}

.bee-city-card-grid {
  display: grid;
  max-width: 890px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.bee-city-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--bee-radius) + 2px);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 260ms var(--bee-ease), border-color 260ms var(--bee-ease), background 260ms var(--bee-ease);
}

.bee-city-card:hover {
  border-color: rgba(233, 132, 58, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.bee-city-card img {
  width: 100%;
  aspect-ratio: 156 / 214;
  border-radius: var(--bee-radius-small);
  object-fit: cover;
}

.bee-city-card .bee-button {
  min-height: 38px;
  padding: 9px 18px;
  font-size: 0.75rem;
}

.bee-service-area__action {
  margin-top: 34px;
  text-align: center;
}

.bee-service-area-mobile {
  display: none;
}

@keyframes bee-map-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.7);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.bee-contact-section__grid,
.bee-contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: start;
  gap: clamp(46px, 8vw, 112px);
}

.bee-contact-section__intro,
.bee-contact-main__details {
  position: sticky;
  top: 150px;
}

.bee-contact-section h2,
.bee-contact-main h2 {
  max-width: 12ch;
  margin-bottom: 20px;
}

.bee-contact-section__intro > p,
.bee-contact-main__details > p {
  color: var(--bee-text-muted);
}

.bee-contact-list {
  margin-top: 32px;
}

.bee-contact-list > div {
  padding-block: 14px;
  border-bottom: 1px solid var(--bee-border);
}

.bee-contact-list dt {
  margin-bottom: 3px;
  color: var(--bee-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bee-contact-list dd {
  margin: 0;
  font-weight: 750;
}

.bee-contact-form-wrap {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
  box-shadow: 0 14px 48px rgba(45, 37, 29, 0.06);
}

.bee-contact-form {
  display: grid;
  gap: 18px;
}

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

.bee-field {
  display: grid;
  gap: 7px;
}

.bee-field label {
  color: var(--bee-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.bee-field input,
.bee-field textarea {
  width: 100%;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius-small);
  background: var(--bee-surface-soft);
  color: var(--bee-text);
  outline: none;
}

.bee-field input {
  min-height: 50px;
  padding: 11px 13px;
}

.bee-field textarea {
  min-height: 138px;
  padding: 12px 13px;
  resize: vertical;
}

.bee-field input:focus,
.bee-field textarea:focus {
  border-color: var(--bee-green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bee-green) 22%, transparent);
}

.bee-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bee-form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--bee-radius-small);
  font-size: 0.88rem;
  font-weight: 750;
}

.bee-form-status--success {
  border: 1px solid color-mix(in srgb, var(--bee-green) 55%, transparent);
  background: color-mix(in srgb, var(--bee-green) 13%, var(--bee-surface));
}

.bee-form-status--error {
  border: 1px solid color-mix(in srgb, #b43c32 55%, transparent);
  background: color-mix(in srgb, #b43c32 10%, var(--bee-surface));
  color: color-mix(in srgb, #b43c32 84%, var(--bee-text));
}

/* Footer */
.bee-site-footer {
  padding-top: clamp(54px, 7vw, 88px);
  background: var(--bee-footer);
}

.bee-footer-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(42px, 6vw, 66px);
  border-bottom: 1px solid var(--bee-border);
}

.bee-footer-lead h2 {
  max-width: 14ch;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.bee-footer-lead p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--bee-text-muted);
}

.bee-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 0.8fr;
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(46px, 6vw, 72px);
}

.bee-brand--footer {
  margin-bottom: 20px;
}

.bee-footer-brand > p {
  max-width: 32ch;
  color: var(--bee-text-muted);
  font-size: 0.88rem;
}

.bee-footer-title {
  margin-bottom: 18px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bee-footer-list {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 9px;
  list-style: none;
}

.bee-footer-list a {
  color: var(--bee-text-muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.bee-footer-list a:hover {
  color: var(--bee-accent-strong);
}

.bee-footer-hours {
  color: var(--bee-text-muted);
  font-size: 0.86rem;
}

.bee-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.bee-social-links a {
  color: var(--bee-text);
  font-size: 0.8rem;
  font-weight: 800;
}

.bee-social-links--contact {
  display: grid;
  margin-top: 30px;
}

.bee-footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--bee-border);
  color: var(--bee-text-muted);
  font-size: 0.76rem;
}

.bee-footer-bottom p {
  margin: 0;
}

/* Inner pages */
.bee-page-intro,
.bee-inner-hero,
.bee-service-hero {
  padding-block: clamp(54px, 7vw, 100px);
}

.bee-page-intro__inner {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.bee-page-intro h1 {
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 22px;
}

.bee-page-intro__inner > p:last-child {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--bee-text-muted);
  font-size: 1.08rem;
}

.bee-inner-hero__grid,
.bee-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.bee-inner-hero__content h1,
.bee-service-hero__content h1 {
  max-width: 11ch;
  margin-bottom: 22px;
}

.bee-inner-hero__content > p:last-child,
.bee-service-hero__content > p:not(.bee-eyebrow) {
  max-width: 58ch;
  color: var(--bee-text-muted);
  font-size: 1.08rem;
}

.bee-inner-hero__media,
.bee-service-hero__media {
  margin: 0;
}

.bee-inner-hero__media img,
.bee-service-hero__media img {
  width: 100%;
  max-height: 630px;
  aspect-ratio: 4 / 5;
  border-radius: var(--bee-radius);
  object-fit: cover;
}

.bee-story {
  background: var(--bee-surface-soft);
}

.bee-story__grid,
.bee-service-copy__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  align-items: start;
  gap: clamp(44px, 8vw, 112px);
}

.bee-story h2,
.bee-service-copy h2 {
  max-width: 13ch;
  margin-bottom: 22px;
}

.bee-story p,
.bee-service-copy p {
  color: var(--bee-text-muted);
}

.bee-story__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bee-story__facts > div,
.bee-benefit-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
}

.bee-story__facts strong,
.bee-benefit-grid strong {
  font-size: 0.94rem;
}

.bee-story__facts span,
.bee-benefit-grid span {
  color: var(--bee-text-muted);
  font-size: 0.84rem;
}

.bee-about-gallery {
  padding-bottom: 0;
}

.bee-about-gallery__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  align-items: center;
  gap: 14px;
}

.bee-about-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--bee-radius);
  object-fit: cover;
}

.bee-about-gallery img:nth-child(2) {
  aspect-ratio: 16 / 9;
}

.bee-full-mission {
  background: color-mix(in srgb, var(--bee-gold) 35%, var(--bee-surface));
}

.bee-secondary-services {
  background: var(--bee-surface-soft);
}

.bee-secondary-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bee-secondary-service {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
}

.bee-secondary-service img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.bee-secondary-service > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.bee-secondary-service h3 {
  margin-bottom: 14px;
}

.bee-secondary-service p {
  flex: 1;
  color: var(--bee-text-muted);
  font-size: 0.9rem;
}

.bee-service-cta {
  padding-top: 0;
}

.bee-service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--bee-radius);
  background: color-mix(in srgb, var(--bee-gold) 32%, var(--bee-surface));
}

.bee-service-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.bee-service-cta p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--bee-text-muted);
}

.bee-service-copy__grid > div:first-child {
  position: sticky;
  top: 150px;
}

.bee-prose {
  max-width: 760px;
}

.bee-prose p,
.bee-entry-content p {
  color: var(--bee-text-muted);
}

.bee-prose p + p {
  margin-top: 1.25em;
}

.bee-service-benefits {
  background: var(--bee-surface-soft);
}

.bee-service-benefits h2 {
  margin-bottom: 34px;
}

.bee-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bee-other-services h2 {
  max-width: 12ch;
  margin-bottom: 28px;
}

.bee-other-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 34px;
}

.bee-other-services__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bee-border);
  font-weight: 800;
  text-decoration: none;
}

.bee-other-services__list a span:last-child {
  color: var(--bee-accent-strong);
}

.bee-contact-logistics {
  background: var(--bee-surface-soft);
}

.bee-contact-logistics__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 8vw, 112px);
}

.bee-hours-list {
  margin: 0;
}

.bee-hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  border-bottom: 1px solid var(--bee-border);
  font-size: 0.86rem;
}

.bee-hours-list dd {
  font-weight: 750;
}

.bee-standard-page,
.bee-listing-page,
.bee-not-found {
  padding-block: clamp(64px, 8vw, 112px);
}

.bee-page-header {
  max-width: 920px;
  margin-bottom: 42px;
}

.bee-page-header h1 {
  max-width: 15ch;
}

.bee-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bee-post-card {
  padding: 28px;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
}

.bee-post-card img,
.bee-post-image img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: var(--bee-radius);
}

.bee-post-card h2 {
  font-size: 1.6rem;
}

.bee-post-card h2 a {
  text-decoration: none;
}

.bee-post-meta {
  color: var(--bee-text-muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.bee-empty-state {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-soft);
  text-align: center;
}

.bee-empty-state h1,
.bee-empty-state h2 {
  margin-bottom: 18px;
}

.bee-empty-state p {
  color: var(--bee-text-muted);
}

.bee-empty-state .bee-button-row {
  justify-content: center;
}

.bee-comments {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--bee-border);
}

.bee-entry-content > * {
  max-width: 760px;
}

.bee-entry-content > .alignwide {
  max-width: 1080px;
}

.bee-entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.bee-starter-content {
  max-width: 920px;
  margin-block: 0 42px;
}

.bee-starter-content h1,
.bee-starter-content h2 {
  max-width: 14ch;
  margin-bottom: 18px;
}

.bee-starter-content p,
.bee-starter-content li {
  color: var(--bee-text-muted);
}

.bee-starter-hero {
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--bee-radius);
  background: color-mix(in srgb, var(--bee-gold) 28%, var(--bee-surface));
}

.bee-starter-hero p {
  max-width: 62ch;
  font-size: 1.08rem;
}

.bee-starter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bee-starter-grid article {
  padding: 22px;
  border: 1px solid var(--bee-border);
  border-radius: var(--bee-radius);
  background: var(--bee-surface-raised);
}

.bee-starter-grid h3 {
  margin-bottom: 10px;
}

.bee-starter-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.bee-starter-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bee-starter-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--bee-radius);
  object-fit: cover;
}

.bee-elementor-full-width,
.bee-elementor-canvas,
.bee-content--elementor {
  width: 100%;
  max-width: none;
}

/* Motion */
.bee-js .bee-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--bee-ease), transform 620ms var(--bee-ease);
}

.bee-js .bee-reveal--delay {
  transition-delay: 90ms;
}

.bee-js .bee-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  .bee-button--header {
    display: none;
  }

  .bee-header-main__inner {
    grid-template-columns: auto 1fr;
  }

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

  .bee-service-card h3 {
    min-height: 0;
  }

  .bee-footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
	.bee-gallery-grid--complete {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.bee-gallery-grid--complete .bee-gallery-item {
		grid-column: span 3;
	}

	.bee-gallery-grid--complete .bee-gallery-item--featured {
		grid-column: span 6;
	}
  body.admin-bar .bee-site-header {
    top: 46px;
  }

  .bee-header-main__inner {
    grid-template-columns: 1fr auto;
  }

  .bee-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .bee-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100dvh - 140px);
    padding: 12px;
    border: 1px solid var(--bee-border);
    border-radius: var(--bee-radius);
    background: var(--bee-surface-raised);
    box-shadow: var(--bee-shadow);
    overflow-y: auto;
  }

  .bee-nav.is-open {
    display: block;
  }

  .bee-nav__list {
    display: grid;
    gap: 0;
  }

  .bee-nav__list > li > a {
    min-height: 46px;
    padding-inline: 10px;
    border-bottom: 1px solid var(--bee-border);
  }

  .bee-nav__list .sub-menu {
    position: static;
    width: auto;
    padding: 4px 0 8px 14px;
    border: 0;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .bee-hero__grid,
  .bee-inner-hero__grid,
  .bee-service-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bee-hero h1,
  .bee-inner-hero__content h1,
  .bee-service-hero__content h1 {
    max-width: 14ch;
  }

  .bee-hero__media img {
    max-height: 590px;
  }

  .bee-trust-band__grid,
  .bee-about__grid,
  .bee-service-area__grid,
  .bee-contact-section__grid,
  .bee-contact-main__grid,
  .bee-story__grid,
  .bee-service-copy__grid,
  .bee-contact-logistics__grid {
    grid-template-columns: 1fr;
  }

  .bee-contact-section__intro,
  .bee-contact-main__details,
  .bee-service-copy__grid > div:first-child {
    position: static;
  }

  .bee-trust-band__list li:first-child {
    border-left: 0;
  }

  .bee-secondary-services__grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  body.admin-bar .bee-site-header {
    top: 0;
  }

  .bee-container {
    width: min(calc(100% - 28px), var(--bee-container));
  }

  .bee-section {
    padding-block: 68px;
  }

  .bee-utility__inner {
    justify-content: center;
  }

  .bee-utility p {
    display: none;
  }

  .bee-brand {
    min-width: 0;
  }

  .bee-brand__logo {
    width: 50px;
    height: 42px;
  }

  .bee-brand__text small {
    display: none;
  }

  .bee-nav-toggle__label {
    display: none;
  }

  .bee-hero {
    padding-top: 34px;
  }

  .bee-hero h1,
  .bee-page-intro h1,
  .bee-inner-hero__content h1,
  .bee-service-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  .bee-button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .bee-button-row .bee-button {
    width: 100%;
  }

  .bee-service-grid,
  .bee-story__facts,
  .bee-benefit-grid,
  .bee-starter-grid,
  .bee-other-services__list,
  .bee-post-grid {
    grid-template-columns: 1fr;
  }

  .bee-trust-band__metric {
    align-items: flex-start;
    flex-direction: column;
  }

  .bee-trust-band__list {
    grid-template-columns: 1fr;
  }

  .bee-trust-band__list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--bee-border);
    border-left: 0;
  }

  .bee-about__media {
    grid-template-columns: 1fr;
  }

  .bee-about__image--main,
  .bee-about__image--detail {
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .bee-gallery-grid--preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .bee-gallery-grid--preview .bee-gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bee-gallery-grid--preview .bee-gallery-item:nth-child(1),
  .bee-gallery-grid--preview .bee-gallery-item:nth-child(5) {
    grid-column: span 2;
  }

  .bee-city-grid,
  .bee-city-card-grid,
  .bee-form-grid {
    grid-template-columns: 1fr;
  }

  .bee-service-area__desktop {
    display: none;
  }

  .bee-service-area__heading {
    margin-bottom: 24px;
  }

  .bee-service-area__heading .bee-text-link {
    display: none;
  }

  .bee-service-area-mobile {
    display: block;
  }

  .bee-service-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--bee-radius-small);
    background: #202420;
    box-shadow: 0 24px 58px rgba(7, 9, 8, 0.3);
  }

  .bee-service-map {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #e5e3dc;
    isolation: isolate;
  }

  .bee-service-map::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(23, 26, 24, 0.12);
    content: "";
    pointer-events: none;
  }

  .bee-service-map .leaflet-tile-pane {
    filter: saturate(0.62) sepia(0.08) brightness(1.03) contrast(0.94);
  }

  .bee-service-map .leaflet-control-attribution {
    padding: 2px 5px;
    background: rgba(248, 247, 243, 0.9);
    color: #4e514c;
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .bee-service-map .leaflet-control-attribution a {
    color: #343833;
    font-weight: 750;
  }

  .bee-map-marker {
    border: 0;
    background: transparent;
    filter: drop-shadow(0 5px 5px rgba(39, 28, 18, 0.28));
  }

  .bee-map-marker__pin {
    position: absolute;
    top: 5px;
    left: 7px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--bee-accent);
    transform: rotate(-45deg);
    transform-origin: 50% 50%;
    transition: background 180ms ease, transform 220ms var(--bee-ease);
  }

  .bee-map-marker__pin span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
  }

  .bee-map-marker__pulse {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--bee-accent);
    border-radius: 50%;
    opacity: 0;
    transform-origin: center;
  }

  .bee-map-marker.is-active {
    filter: drop-shadow(0 7px 7px rgba(39, 28, 18, 0.36));
  }

  .bee-map-marker.is-active .bee-map-marker__pin {
    background: var(--bee-accent-strong);
    transform: rotate(-45deg) scale(1.24);
  }

  .bee-map-marker.is-active .bee-map-marker__pulse {
    opacity: 0.72;
    animation: bee-map-pulse 1.8s ease-out infinite;
  }

  .bee-map-tooltip {
    padding: 5px 8px;
    border: 0;
    border-radius: 5px;
    background: #191d19;
    box-shadow: 0 8px 20px rgba(16, 18, 16, 0.25);
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
  }

  .bee-map-tooltip::before {
    border-top-color: #191d19;
  }

  .bee-landmark-preview {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 126px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #202420;
  }

  .bee-landmark-preview img {
    width: 100%;
    height: 100%;
    min-height: 126px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity 160ms ease, transform 360ms var(--bee-ease);
  }

  .bee-landmark-preview img.is-changing {
    opacity: 0.45;
    transform: scale(1.015);
  }

  .bee-landmark-preview figcaption {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 17px 16px;
    color: #fff;
    line-height: 1.25;
  }

  .bee-landmark-preview figcaption strong {
    font-size: 1rem;
    font-weight: 800;
  }

  .bee-landmark-preview figcaption span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
  }

  .bee-landmark-preview figcaption a {
    margin-top: 13px;
    color: var(--bee-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
  }

  .bee-landmark-preview figcaption a span {
    color: currentColor;
    font-size: inherit;
  }

  .bee-service-area-mobile__hint {
    margin: 18px 0 16px;
    color: rgba(247, 245, 241, 0.66);
    font-size: 0.8rem;
    text-align: center;
  }

  .bee-service-region-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
  }

  .bee-service-region h3 {
    min-height: 3.3em;
    margin-bottom: 8px;
    color: var(--bee-accent);
    font-size: clamp(0.66rem, 3.15vw, 0.78rem);
    letter-spacing: 0.055em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .bee-service-region ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .bee-service-city-link {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    padding: 7px 6px 7px 9px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 2px solid transparent;
    background: transparent;
    color: rgba(247, 245, 241, 0.82);
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(0.78rem, 3.6vw, 0.92rem);
    font-weight: 550;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--bee-ease);
  }

  .bee-service-city-link:hover,
  .bee-service-city-link:focus-visible,
  .bee-service-city-link.is-active {
    border-left-color: var(--bee-accent);
    background: rgba(233, 132, 58, 0.1);
    color: #fff;
    transform: translateX(2px);
  }

  .bee-service-city-link:active {
    transform: translateX(2px) scale(0.985);
  }

  .bee-contact-form-wrap {
    padding: 20px;
  }

  .bee-footer-lead,
  .bee-service-cta__inner,
  .bee-footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .bee-footer-lead .bee-button,
  .bee-service-cta__inner .bee-button {
    width: 100%;
  }

  .bee-footer-grid {
    grid-template-columns: 1fr;
  }

  .bee-footer-bottom {
    justify-content: center;
    padding-block: 22px;
  }

  .bee-secondary-service {
    grid-template-columns: 1fr;
  }

  .bee-secondary-service img {
    min-height: 220px;
    max-height: 280px;
  }

  .bee-about-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bee-about-gallery img:nth-child(2) {
    grid-column: span 2;
    grid-row: 1;
  }

  .bee-video-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: initial;
    grid-auto-flow: row;
    gap: 22px 12px;
    overflow-x: visible;
    padding: 4px 0;
    scroll-snap-type: none;
  }

  .bee-video-card {
    min-width: 0;
    scroll-snap-align: none;
  }

  .bee-video-card:last-child:nth-child(odd) {
    width: calc((100% - 12px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .bee-video-card video {
    border-radius: 14px;
  }

  .bee-video-card figcaption {
    padding-top: 8px;
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    line-height: 1.35;
    text-wrap: pretty;
  }

  .bee-gallery-complete__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .bee-gallery-complete__count {
    margin: 0;
  }

  .bee-gallery-grid--complete {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 8px;
    gap: 10px;
  }

  .bee-gallery-grid--complete .bee-gallery-item {
    grid-column: span 1;
    grid-row: span 9;
    border-radius: 12px;
  }

  .bee-gallery-grid--complete .bee-gallery-item--portrait {
    grid-row: span 14;
  }

  .bee-gallery-grid--complete .bee-gallery-item--featured {
    grid-column: span 2;
    grid-row: span 12;
  }

  .bee-lightbox {
    width: calc(100vw - 16px);
    padding: 48px 8px 12px;
    border-radius: 14px;
  }

  .bee-lightbox__stage {
    position: relative;
    display: block;
  }

  .bee-lightbox img {
    max-height: 68dvh;
  }

  .bee-lightbox__nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 42px;
    height: 42px;
    background: rgba(20, 18, 16, 0.7);
    transform: translateY(-50%);
  }

  .bee-lightbox__nav:hover,
  .bee-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .bee-lightbox__nav:active {
    transform: translateY(-50%) scale(0.97);
  }

  .bee-lightbox__nav--previous {
    left: 8px;
  }

  .bee-lightbox__nav--next {
    right: 8px;
  }

  .bee-lightbox__figure figcaption {
    padding-inline: 8px;
    font-size: 0.7rem;
  }

  .bee-starter-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bee-js .bee-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .bee-site-header {
    background: var(--bee-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bee-surface: #171614;
    --bee-surface-soft: #201f1c;
    --bee-surface-muted: #24221f;
    --bee-surface-raised: #292622;
    --bee-footer: #201f1c;
    --bee-text: #f3f0ea;
    --bee-text-muted: #b8b2a8;
    --bee-border: rgba(243, 240, 234, 0.15);
    --bee-shadow: 0 24px 70px rgba(4, 3, 2, 0.34);
    --bee-accent-strong: #f19a5d;
  }

  .bee-brand__logo {
    border-color: rgba(255, 255, 255, 0.2);
    background: #fdfdfc;
  }

  .bee-service-card,
  .bee-contact-form-wrap,
  .bee-story__facts > div,
  .bee-benefit-grid > div {
    box-shadow: none;
  }

  .bee-lightbox {
    background: #11100f;
  }
}
