.wp-site-blocks {
  min-height: 100vh;
  overflow-x: clip;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

.wp-site-blocks > .wp-block-template-part:has(.be-site-header) {
  position: sticky;
  top: 0;
  z-index: 60;
}

.wp-site-blocks > .wp-block-template-part.be-site-header-shell {
  position: sticky;
  top: 0;
  z-index: 60;
}

.be-site-header {
  position: relative;
  top: auto;
  z-index: 60;
  background: rgba(250, 247, 242, 0.9);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--border-hairline);
  transform: translateY(0);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 320ms var(--ease);
  will-change: transform;
}

.be-site-header.is-hidden {
  transform: translateY(-110%);
}

.be-site-header[data-lock-visible].is-hidden {
  transform: translateY(0);
}

.be-site-header__inner {
  max-width: var(--container-wide);
  height: 76px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.be-brand-link,
.be-brand-link:visited {
  text-decoration: none;
}

.be-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: none;
}

.be-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border-hairline);
  background: var(--surface-card);
  flex: 0 0 auto;
}

.be-brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.be-brand__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  line-height: 1.05;
  white-space: nowrap;
}

.be-brand__latin {
  display: inline;
  padding-left: 2px;
  font-family: var(--font-latin);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  line-height: 1;
  white-space: nowrap;
}

.be-brand.is-on-dark .be-brand__name {
  color: var(--text-on-dark);
}

.be-brand.is-on-dark .be-brand__latin {
  color: var(--text-on-dark-muted);
}

.be-desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.be-nav-item {
  position: relative;
}

.be-nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.be-nav-link.is-current {
  color: var(--accent);
}

.be-nav-caret {
  font-size: 10px;
  opacity: 0.7;
}

.be-nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.be-nav-item:hover .be-nav-dropdown,
.be-nav-item:focus-within .be-nav-dropdown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.be-nav-dropdown__panel {
  background: var(--surface-card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--border-hairline);
  padding: 8px;
  min-width: 220px;
}

.be-nav-dropdown a,
.be-mobile-submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-body);
  text-decoration: none;
}

.be-nav-dropdown a:hover,
.be-mobile-submenu a:hover {
  background: var(--accent-soft);
}

.be-mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
}

.be-mobile-line {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 8px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.be-mobile-line:hover,
.be-mobile-line:focus-visible,
.be-mobile-line:active {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(63, 138, 140, 0.12), 0 8px 18px rgba(49, 109, 112, 0.18);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.be-mobile-line::selection,
.be-mobile-line *::selection {
  background: rgba(230, 240, 240, 0.95);
  color: var(--accent-ink);
  text-shadow: none;
}

.be-mobile-menu {
  position: relative;
}

.be-mobile-menu summary {
  list-style: none;
  cursor: pointer;
  width: 34px;
  height: 44px;
  display: grid;
  place-items: center;
}

.be-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.be-mobile-menu:not([open]) .be-mobile-drawer,
.be-mobile-accordion:not([open]) .be-mobile-submenu {
  display: none;
}

.be-mobile-menu__bars {
  width: 22px;
}

.be-mobile-menu__bars span {
  display: block;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
  margin: 4px 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.be-mobile-menu[open] .be-mobile-menu__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.be-mobile-menu[open] .be-mobile-menu__bars span:nth-child(2) {
  opacity: 0;
}

.be-mobile-menu[open] .be-mobile-menu__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.be-mobile-drawer {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 78px);
  overflow-y: auto;
  background: var(--bg-page);
  border-top: 1px solid var(--border-hairline);
  padding: 8px 20px 28px;
  animation: be-drawer-in 0.26s var(--ease) both;
}

.be-mobile-link,
.be-mobile-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  background: transparent;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  cursor: pointer;
}

.be-mobile-link.is-current,
.be-mobile-accordion.is-current summary {
  color: var(--accent);
}

.be-mobile-accordion summary {
  list-style: none;
}

.be-mobile-accordion summary::-webkit-details-marker {
  display: none;
}

.be-mobile-submenu {
  padding: 0 0 14px 6px;
  display: grid;
  gap: 2px;
  animation: be-acc-in 0.28s var(--ease) both;
}

.be-mobile-booking {
  margin-top: 22px;
}

.be-mobile-booking .be-btn {
  width: 100%;
}

.be-btn,
.be-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), text-shadow var(--dur) var(--ease);
}

.be-btn--sm {
  min-height: 34px;
  padding: 9px 18px;
  font-size: 14px;
}

.be-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(63, 138, 140, 0.16);
}

.be-btn--warm {
  background: var(--accent-warm);
  color: #fff;
  box-shadow: 0 8px 18px rgba(196, 122, 85, 0.14);
}

.be-btn--ghost {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--text-body);
}

.be-btn--full {
  width: 100%;
}

.be-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.be-btn--primary:hover,
.be-btn--primary:focus-visible,
.be-btn--primary:active,
.be-btn--warm:hover,
.be-btn--warm:focus-visible,
.be-btn--warm:active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.be-btn--quiet:hover,
.be-btn--quiet:focus-visible,
.be-btn--quiet:active {
  color: var(--text-heading);
  text-shadow: 0 0 10px rgba(63, 138, 140, 0.18);
}

.be-btn--ghost:hover,
.be-btn--ghost:focus-visible,
.be-btn--ghost:active {
  color: var(--text-body);
  text-shadow: 0 0 10px rgba(63, 138, 140, 0.16);
}

.be-icon-link,
.be-icon-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.be-icon-link:hover {
  transform: translateY(-1px);
}

.be-ui-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.be-page-hero {
  position: relative;
  min-height: 380px;
  margin-bottom: -64px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
}

.be-service-hero {
  min-height: 440px;
}

.be-page-hero__picture {
  position: absolute;
  inset: 0;
  display: block;
}

.be-page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--be-hero-img-pos, center 40%);
}

.be-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 30, 26, 0.9) 0%, rgba(33, 30, 26, 0.62) 36%, rgba(33, 30, 26, 0.32) 66%, rgba(33, 30, 26, 0.14) 100%);
}

.be-page-hero__content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 32px) 96px;
  color: #fff;
}

.be-page-hero__eyebrow {
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0d9c8;
  margin-bottom: 16px;
}

.be-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.be-page-hero__lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
  margin: 20px 0 0;
  max-width: 620px;
  text-shadow: 0 1px 10px rgba(20, 18, 16, 0.5), 0 1px 2px rgba(20, 18, 16, 0.38);
}

.be-service-row {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--be-row-bg, var(--bg-page));
  overflow: hidden;
}

.be-service-row__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 32px);
}

.be-service-row__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.be-service-row--reverse .be-service-row__grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.be-service-row--reverse .be-service-row__media {
  order: 2;
}

.be-service-row--reverse .be-service-row__copy {
  order: 1;
}

.be-service-row__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  clip-path: none;
}

.be-service-row--reverse .be-service-row__media {
  clip-path: none;
}

.be-service-row__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: var(--be-img-pos, center);
  display: block;
}

.be-service-row__index {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.be-service-row__en {
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.be-service-row h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 18px;
  line-height: 1.28;
}

.be-service-row__lead {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 20px;
  max-width: 520px;
}

.be-service-row__points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.be-service-row__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
}

.be-service-row__points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex: 0 0 auto;
}

.be-watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.be-watermark span {
  font-family: var(--font-latin);
  font-weight: var(--fw-semibold);
  font-size: clamp(64px, 12vw, 184px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(33, 30, 26, 0.035);
  white-space: nowrap;
  padding-right: 0.4em;
  flex-shrink: 0;
}

.be-watermark__track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}

.be-watermark__group {
  display: flex;
  flex: 0 0 auto;
}

.be-home-intro-marquee.is-running,
.be-service-marquee.is-running {
  animation: be-marquee 44s linear infinite;
}

.be-home-cta-marquee.is-running {
  animation: be-marquee 58s linear infinite;
}

.be-service-marquee--reverse.is-running {
  animation-direction: reverse;
  animation-duration: 52s;
}

.be-service-watermark {
  top: 52%;
}

.be-service-watermark--faint span {
  color: rgba(33, 30, 26, 0.026);
}

.be-service-watermark--soft span {
  color: rgba(33, 30, 26, 0.052);
}

.be-about-watermark {
  position: absolute;
  left: 0;
  right: 0;
  top: 26%;
  z-index: 0;
  display: flex;
  overflow: hidden;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.be-about-watermark__track {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
}

.be-about-watermark__track span {
  flex-shrink: 0;
  padding-right: 0.4em;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-latin);
  font-size: clamp(64px, 12vw, 184px);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.be-services-cta {
  padding: var(--section-y) 0;
  background: var(--bg-parchment);
}

.be-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 32px);
}

.be-services-cta__card {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  text-align: center;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-card);
}

.be-services-cta h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 12px;
}

.be-services-cta p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 26px;
}

.be-services-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.be-listsec {
  padding: var(--section-y) 0;
  background: var(--bg-page);
}

.be-legal-page {
  background: var(--surface-marble);
}

.be-legal-page__wrap {
  max-width: 820px;
}

.be-legal-page .wp-block-post-content {
  color: var(--text-body);
}

.be-legal-page .wp-block-post-title {
  margin: 0 0 28px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.be-legal-page .wp-block-post-content h2 {
  margin: 42px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.be-legal-page .wp-block-post-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.be-legal-page .wp-block-post-content p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.95;
}

.be-filterbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: clamp(20px, 4.5vw, 32px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.be-filterbar::-webkit-scrollbar {
  display: none;
}

.be-filterbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 13px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 140ms var(--ease), border-color 140ms var(--ease), color 140ms var(--ease), transform 140ms var(--ease);
}

.be-filterbar__button.is-active {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
}

.be-filter-transition {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  will-change: opacity, transform;
}

.be-filter-transition.is-leaving {
  opacity: 0;
  transform: translateY(6px);
}

.be-filter-transition.is-entering {
  opacity: 1;
  transform: translateY(0);
}

.be-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(34px, 5vw, 52px);
  font-family: var(--font-sans);
}

.be-pagination__pages {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.be-pagination__page,
.be-pagination__step,
.be-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  background: var(--surface-card);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.be-pagination__step {
  min-width: 78px;
}

.be-pagination__page.is-current {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
}

.be-pagination__step.is-disabled {
  opacity: 0.38;
}

.be-pagination__ellipsis {
  min-width: 20px;
  border-color: transparent;
  background: transparent;
  padding-right: 2px;
  padding-left: 2px;
  color: var(--text-muted);
}

.be-pagination a:hover,
.be-pagination a:focus-visible {
  border-color: var(--accent-soft);
  color: var(--accent-ink);
  transform: translateY(-1px);
}

.be-faq-page-section {
  padding: 64px 0 var(--section-y);
  background: var(--bg-page);
}

.be-faq-page-inner {
  max-width: 880px;
  margin: 0 auto;
}

.be-faq-groups {
  display: grid;
  gap: 58px;
}

.be-faq-group {
  padding-top: 28px;
}

.be-faq-group:first-child {
  border-top: 0;
}

.be-faq-group h2 {
  margin: 0 0 10px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 28px);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.be-faq-group__description {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: center;
}

.be-faq-rows {
  display: grid;
  gap: 22px;
}

.be-faq-row {
  border-bottom: 0;
}

.be-faq-row summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 0;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.be-faq-row summary::-webkit-details-marker {
  display: none;
}

.be-faq-row__question {
  display: inline-block;
  max-width: min(650px, calc(100% - 48px));
  padding: 11px 18px 12px;
  border-radius: 18px 18px 18px 6px;
  background: var(--bg-feature);
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: inset 0 0 0 1px rgba(33, 30, 26, 0.035);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.be-faq-row__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.be-faq-row[open] .be-faq-row__question,
.be-faq-row:hover .be-faq-row__question {
  background: var(--mist-200);
  color: var(--text-heading);
  transform: translateY(-1px);
}

.be-faq-row[open] .be-faq-row__icon,
.be-faq-row:hover .be-faq-row__icon {
  color: var(--text-heading);
  opacity: 0.78;
}

.be-faq-row[open] .be-faq-row__icon {
  font-size: 0;
  transform: none;
}

.be-faq-row[open] .be-faq-row__icon::before {
  content: "-";
  font-size: 24px;
  line-height: 1;
}

.be-faq-row__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.be-faq-row[open] .be-faq-row__answer {
  grid-template-rows: 1fr;
  margin-top: 12px;
  opacity: 1;
  visibility: visible;
}

.be-faq-row__answer-inner {
  width: fit-content;
  max-width: min(650px, 70%);
  min-height: 0;
  margin-left: auto;
  padding: 16px 20px 17px;
  overflow: hidden;
  border-radius: 24px 24px 6px 24px;
  background: var(--accent);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  text-align: left;
  box-shadow: 0 12px 28px rgba(49, 109, 112, 0.2);
}

.be-faq-row__answer p {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

.be-faq-row__answer-inner > * + * {
  margin-top: 0.8em;
}

.be-faq-row__answer a {
  color: inherit;
  text-decoration-color: rgba(243, 239, 232, 0.55);
}

.be-faq-row__answer ul,
.be-faq-row__answer ol {
  margin: 0.65em 0 0;
  padding-left: 1.25em;
  color: inherit;
}

.be-faq-cta {
  margin-top: 48px;
  padding: 44px 40px;
  border-radius: var(--r-xl);
  background: var(--bg-feature);
  text-align: center;
}

.be-faq-cta h2 {
  margin: 0 0 12px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.be-faq-cta p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
}

.be-contact-section {
  padding: var(--section-y) 0;
  background: var(--bg-page);
}

.be-contact-main {
  max-width: var(--container);
  margin: 0 auto;
}

#booking-flow,
#booking-methods,
#storefront {
  scroll-margin-top: 104px;
}

.be-contact-main__top {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.be-contact-head {
  width: 100%;
  max-width: 720px;
  min-width: 0;
}

.be-contact-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-width: 0;
}

.be-contact-icon-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.be-contact-icon-link {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  box-shadow: 0 12px 26px rgba(72, 64, 54, 0.08);
}

.be-contact-icon-link .be-ui-icon {
  width: 36px;
  height: 36px;
}

.be-contact-icon-link .be-ui-icon--line,
.be-contact-icon-link .be-ui-icon--booking {
  width: 40px;
  height: 40px;
}

.be-contact-icon-link--booking-text {
  width: 58px;
  min-width: 58px;
  padding: 0;
  border-color: transparent;
  background: var(--accent-warm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.be-contact-icon-link--booking-text:visited {
  color: #fff;
}

.be-contact-icon-link:hover {
  box-shadow: var(--shadow-lift);
}

.be-contact-icon-link--booking-text:hover,
.be-contact-icon-link--booking-text:focus-visible,
.be-contact-icon-link--booking-text:active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.48);
}

.be-contact-actions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.be-contact-actions .be-btn {
  justify-content: center;
  min-height: 48px;
}

.be-contact-map-wrap {
  width: 100%;
  max-width: 820px;
  min-width: 0;
}

.be-contact-map {
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.be-contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  background: var(--bg-feature);
}

.be-contact-map-wrap p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.be-contact-info-wrap {
  width: 100%;
  max-width: 720px;
  min-width: 0;
  text-align: left;
}

.be-contact-appointment-card {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 122, 85, 0.28);
  border-radius: var(--r-md);
  background: var(--accent-warm-soft);
}

.be-contact-card {
  padding: 10px 26px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.be-contact-row {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-soft);
}

.be-contact-label {
  flex-shrink: 0;
  width: 78px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
}

.be-contact-row a,
.be-contact-row span:not(.be-contact-label) {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
}

.be-contact-row a {
  border-bottom: 1px solid var(--accent-soft);
  text-decoration: none;
}

.be-contact-offer {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--accent-warm-soft);
  color: var(--accent-warm-hover);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.7;
}

.be-booking-flow {
  margin-top: 34px;
}

.be-booking-flow--first {
  margin-top: 0;
}

.be-booking-flow + .be-contact-main__top,
.be-storefront-section {
  margin-top: clamp(48px, 7vw, 86px);
}

.be-storefront-section {
  margin-bottom: clamp(54px, 8vw, 96px);
}

.be-booking-flow__figure {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.be-booking-flow__figure img {
  display: block;
  width: 100%;
  height: auto;
}

[data-lightbox] {
  cursor: zoom-in;
}

.be-lb {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(20, 18, 16, 0.84);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.be-lb.is-open {
  opacity: 1;
  pointer-events: auto;
}

.be-lb img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}

.be-lb.is-open img {
  transform: scale(1);
}

.be-lb-close {
  position: absolute;
  top: 22px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.be-booking-flow-toggle {
  width: min(100%, 980px);
  margin: 24px auto 0;
}

.be-booking-flow-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
  color: var(--text-heading);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

.be-booking-flow-toggle summary::-webkit-details-marker {
  display: none;
}

.be-booking-flow-toggle summary i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-sans);
  font-style: normal;
  line-height: 1;
  transition: transform 0.32s var(--ease), background 0.32s var(--ease), color 0.32s var(--ease);
}

.be-booking-flow-toggle[open] summary i {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.be-booking-flow-toggle__body {
  padding-top: 22px;
}

.be-booking-flow__service-flow {
  display: grid;
  gap: 18px;
  width: min(100%, 900px);
  margin: 24px auto 0;
}

.be-booking-flow__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.be-booking-flow__head .be-section-head__lead {
  text-align: left;
}

.be-booking-summary {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.be-booking-summary__lead {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.be-booking-summary__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.be-booking-summary__steps span {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-feature);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.35;
}

.be-booking-summary__steps b {
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: 12px;
}

.be-booking-summary > .be-btn {
  justify-self: center;
}

.be-booking-detail-section {
  padding: var(--section-y) 0;
  background: var(--bg-page);
}

.be-booking-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: clamp(34px, 5vw, 64px);
  justify-content: center;
  align-items: start;
}

.be-booking-detail-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.be-booking-detail-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.be-booking-detail-copy {
  display: grid;
  gap: 26px;
}

.be-booking-step-list {
  display: grid;
  gap: 12px;
}

.be-booking-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  background: var(--surface-card);
}

.be-booking-step__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
}

.be-booking-step h3 {
  margin: 0 0 5px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.35;
}

.be-booking-step p {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.75;
}

.be-booking-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.be-booking-flow-modal {
  width: min(920px, calc(100vw - 32px));
  max-height: min(86vh, 820px);
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  background: transparent;
  color: var(--text-body);
  overflow: visible;
}

.be-booking-flow-modal::backdrop {
  background: rgba(22, 24, 22, 0.48);
  backdrop-filter: blur(6px);
}

.be-booking-flow-modal__panel {
  position: relative;
  overflow: hidden;
  padding: 20px clamp(18px, 3vw, 28px) clamp(18px, 3vw, 28px);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--bg-page);
  box-shadow: 0 26px 80px rgba(31, 27, 22, 0.26);
}

.be-booking-flow-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-full);
  background: var(--surface-card);
  color: var(--text-heading);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1;
  box-shadow: var(--shadow-card);
}

.be-booking-flow-modal .be-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 560px);
  margin: 22px auto 0;
  padding-top: 0;
}

.be-booking-flow-modal .be-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 13px 14px;
  cursor: default;
  pointer-events: none;
}

.be-booking-flow-modal .be-stepnode {
  width: 34px;
  height: 34px;
}

.be-booking-flow-modal .be-stepnode svg {
  width: 17px;
  height: 17px;
}

.be-booking-flow-modal .be-stepnum {
  margin-bottom: 3px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.be-booking-flow-modal .be-steptitle {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.be-booking-flow-modal .be-stepdesc {
  font-size: 12.5px;
  line-height: 1.55;
}

.be-booking-flow-modal .be-step,
.be-booking-flow-modal .be-step:hover,
.be-booking-flow-modal .be-step:focus-visible,
.be-booking-flow-modal .be-step:active,
.be-booking-flow-modal .be-step.be-active {
  border-color: var(--border-hairline);
  box-shadow: none;
  transform: none;
}

.be-booking-flow-modal .be-step::before,
.be-booking-flow-modal .be-step:hover::before,
.be-booking-flow-modal .be-step:focus-visible::before,
.be-booking-flow-modal .be-step:active::before,
.be-booking-flow-modal .be-step.be-active::before {
  transform: scaleY(0);
}

.be-booking-flow-modal .be-stepnode,
.be-booking-flow-modal .be-step:hover .be-stepnode,
.be-booking-flow-modal .be-step:focus-visible .be-stepnode,
.be-booking-flow-modal .be-step:active .be-stepnode,
.be-booking-flow-modal .be-step.be-active .be-stepnode {
  background: var(--accent-soft);
  color: var(--accent);
  transform: none;
}

.be-booking-flow-modal .be-stepnode svg,
.be-booking-flow-modal .be-step:hover .be-stepnode svg,
.be-booking-flow-modal .be-step:focus-visible .be-stepnode svg,
.be-booking-flow-modal .be-step:active .be-stepnode svg,
.be-booking-flow-modal .be-step.be-active .be-stepnode svg {
  transform: none;
}

.be-booking-flow-modal .be-stepghost,
.be-booking-flow-modal .be-step:hover .be-stepghost,
.be-booking-flow-modal .be-step:focus-visible .be-stepghost,
.be-booking-flow-modal .be-step:active .be-stepghost,
.be-booking-flow-modal .be-step.be-active .be-stepghost {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  opacity: 0.07;
  transform: none;
  font-size: clamp(46px, 7vw, 64px);
  line-height: 1;
}

.be-storefront-gallery {
  width: min(100%, 980px);
  height: min(72vw, calc(100vh - 150px), 760px);
  min-height: 430px;
  margin-top: 28px;
  margin-inline: auto;
  border: 1px solid var(--border-hairline);
  background: var(--surface-card);
}

.be-parking-note {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.75;
}

.be-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.be-case-card,
.be-case-card:visited {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
}

.be-case-card > img {
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 230px);
  object-fit: cover;
  object-position: var(--be-card-img-pos, center);
}

.be-article-preview-card > img {
  object-position: var(--be-card-img-pos, center);
}

.be-cardbody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.be-case-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.be-article-card__date {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1;
}

.be-cardtitle {
  display: block;
  margin: 0 0 9px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.be-cardexc {
  display: block;
  flex: 1;
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.8;
}

.be-cardlink {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}

.be-list-empty {
  padding: 40px 0;
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  text-align: center;
}

.be-list-empty--filter {
  padding: 56px 0 20px;
  border-top: 1px solid var(--border-hairline);
  color: var(--text-secondary);
}

.be-breadcrumb {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 80px 0 0;
}

.be-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.be-breadcrumb span {
  margin-right: 9px;
}

.be-breadcrumb span + a,
.be-breadcrumb span + span {
  margin-left: 0;
}

.be-case-hero .be-page-hero__image {
  object-position: center 42%;
}

.be-case-detail {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 24px var(--section-y);
}

.be-case-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.be-case-detail__tags a {
  text-decoration: none;
}

.be-case-detail__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.be-case-detail__header a {
  text-decoration: none;
}

.be-case-detail__header h1,
.be-case-detail__header .be-article-detail__meta {
  flex: 0 0 100%;
}

.be-case-prose p {
  margin: 0 0 22px;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 2;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.be-case-prose h2 {
  margin: 40px 0 16px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.be-case-figure {
  margin: 30px 0 34px;
}

.be-case-figure img {
  display: block;
  width: 100%;
  border-radius: var(--r-md);
}

.be-case-figure figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.be-case-inline-image {
  max-width: 560px;
  margin: 12px auto 34px;
}

.be-case-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.be-case-inline-image--contain {
  max-width: min(560px, 100%);
}

.be-case-inline-image--contain img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.be-case-prose blockquote {
  margin: 28px 0;
  padding: 18px 26px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.7;
}

.be-case-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: var(--r-lg);
  background: var(--bg-feature);
}

.be-case-share h2 {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.be-case-share p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
}

.be-case-detail-page .be-case-share {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.be-case-detail-page .be-case-share .be-btn {
  margin-right: auto;
  margin-left: auto;
}

.be-case-back,
.be-case-back:visited {
  display: inline-block;
  margin-top: 40px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: none;
}

.be-article-detail {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 24px;
}

.be-article-detail__header {
  padding: 28px 0 8px;
}

.be-article-detail__header h1 {
  margin: 18px 0 14px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: normal;
  line-break: strict;
}

.be-article-detail__meta {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.be-announcement-detail__excerpt {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.9;
}

.be-article-hero {
  margin: 20px 0 36px;
}

.be-article-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}

.be-article-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin: -12px 0 34px;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.66);
}

.be-article-trust__item {
  min-width: 0;
}

.be-article-trust__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.be-article-trust strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.be-article-trust p {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
}

.be-article-trust a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.be-article-prose p {
  margin: 0 0 22px;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 2;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.be-article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.be-article-inline-image {
  max-width: 560px;
  margin: 12px auto 34px;
}

.be-article-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.be-article-more {
  margin-top: 64px;
  padding: var(--section-y) 0;
  background: var(--bg-parchment);
}

.be-article-more__grid {
  margin-top: 40px;
}

.be-article-more .be-cardbody {
  padding: 20px 22px 24px;
}

.be-article-more .be-cardtitle {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.4;
}

.be-service-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px clamp(20px, 4.5vw, 32px) var(--section-y);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.be-service-mininav {
  position: sticky;
  top: 76px;
  z-index: 20;
  background: rgba(250, 247, 242, 0.94);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border-hairline);
  margin-bottom: 8px;
}

.be-service-mininav > div {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.be-service-mininav a {
  position: relative;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  padding: 14px 0;
}

.be-service-mininav a[data-active] {
  color: var(--accent);
}

.be-svc-section {
  scroll-margin-top: 140px;
}

.be-svc-section > h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  margin: 46px 0 20px;
}

.be-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.be-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.be-tag--teal {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.be-tag--warm {
  background: var(--accent-warm-soft);
  color: var(--accent-warm-hover);
}

.be-service-needs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.be-need-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  padding: 15px 18px;
}

.be-need-card span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.be-need-card p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
}

.be-service-content-text {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--text-body);
  margin: 0;
}

.be-flow {
  display: grid;
  gap: 14px;
  position: relative;
}

.be-step {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  padding: 22px 24px;
  overflow: hidden;
  cursor: default;
  outline: none;
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease), border-color 0.42s var(--ease), background 0.42s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.be-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.42s var(--ease);
}

.be-stepghost {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 0;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 78px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
  transform: translateY(2px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

.be-stepnode {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.42s var(--ease), color 0.42s var(--ease), transform 0.55s cubic-bezier(.34, 1.56, .64, 1);
}

.be-stepnode svg {
  transition: transform 0.42s var(--ease);
}

.be-stepcopy {
  position: relative;
  z-index: 1;
  display: block;
}

.be-stepnum,
.be-steptitle,
.be-stepdesc {
  display: block;
}

.be-stepnum {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  margin-bottom: 5px;
}

.be-steptitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.be-stepdesc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.be-step:hover,
.be-step:focus-visible,
.be-step:active,
.be-step.be-active {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.be-step:hover::before,
.be-step:focus-visible::before,
.be-step:active::before,
.be-step.be-active::before {
  transform: scaleY(1);
}

.be-step:hover .be-stepnode,
.be-step:focus-visible .be-stepnode,
.be-step:active .be-stepnode,
.be-step.be-active .be-stepnode {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}

.be-step:hover .be-stepnode svg,
.be-step:focus-visible .be-stepnode svg,
.be-step:active .be-stepnode svg,
.be-step.be-active .be-stepnode svg {
  transform: rotate(-6deg) scale(1.05);
}

.be-step:hover .be-stepghost,
.be-step:focus-visible .be-stepghost,
.be-step:active .be-stepghost,
.be-step.be-active .be-stepghost {
  opacity: 0.2;
  transform: translateY(0);
}

.be-service-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.be-service-notes li {
  display: flex;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
}

.be-service-notes span {
  color: var(--accent-warm);
  flex-shrink: 0;
}

.be-service-price {
  position: sticky;
  top: 96px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

.be-service-price__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 14px;
}

.be-service-price__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-sans);
}

.be-service-price__row span:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
}

.be-service-price__row span:last-child {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: right;
}

.be-service-price__actions {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.be-service-price p {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 18px 0 0;
}

.be-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.be-related-card {
  display: block;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  color: inherit;
  text-decoration: none;
}

.be-related-card__image {
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 220px);
  aspect-ratio: 3 / 2;
  object-fit: fill;
  object-position: center;
}

.be-article-preview-card .be-related-card__image {
  object-fit: fill;
}

.be-related-card__body {
  display: block;
  padding: 14px 16px;
}

.be-related-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-heading);
  margin-top: 9px;
}

.be-service-faq {
  padding: var(--section-y) 0 calc(var(--section-y) - 16px);
  background: var(--bg-page);
}

.be-service-faq__wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 32px);
}

.be-section-head {
  max-width: none;
}

.be-section-head--center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.be-section-head__eyebrow {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.be-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  margin: 0;
}

.be-section-head__lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.85;
}

.be-section-head.is-on-dark .be-section-head__eyebrow {
  color: var(--accent-warm);
}

.be-section-head.is-on-dark h2 {
  color: var(--text-on-dark);
}

.be-section-head.is-on-dark .be-section-head__lead {
  color: var(--text-on-dark-muted);
}

.be-about-brand,
.be-about-values {
  padding: var(--section-y) 0;
  background: var(--bg-page);
}

.be-about-brand {
  scroll-margin-top: 96px;
}

.be-about-brand__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.be-about-body {
  margin: 0 0 18px;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.95;
}

.be-about-motto {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.be-slideshow-frame {
  overflow: hidden;
  border-radius: var(--r-lg);
  clip-path: none;
}

.be-about-founder {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background: var(--bg-ink);
  scroll-margin-top: 96px;
}

.be-about-founder .be-wrap {
  position: relative;
  z-index: 1;
}

.be-about-founder__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  column-gap: 60px;
  row-gap: 26px;
  align-items: start;
}

.be-founder-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-photo);
}

.be-founder-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.be-founder-photo-block {
  grid-column: 1;
  grid-row: 2;
}

.be-founder-copy-block {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  max-width: min(520px, 100%);
  text-align: left;
}

.be-founder-copy-block .be-section-head {
  margin-bottom: 0;
}

.be-founder-details-block {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.be-founder-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.be-about-founder-card,
.be-about-certifications {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.045);
}

.be-about-founder-card {
  padding: 22px 22px 24px;
}

.be-about-founder-kicker {
  margin-bottom: 8px;
  color: var(--accent-warm);
  font-family: var(--font-latin);
  font-size: 11.5px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-about-founder-card h3,
.be-about-bio-group h4,
.be-about-cert-grid h4 {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
}

.be-about-founder-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.be-about-bio-group + .be-about-bio-group {
  margin-top: 18px;
}

.be-about-bio-group h4,
.be-about-cert-grid h4 {
  margin: 0 0 9px;
  font-size: 16.5px;
}

.be-about-cert-grid h4 {
  color: var(--accent-warm);
}

.be-about-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.be-about-list li {
  display: flex;
  gap: 10px;
  color: var(--text-on-dark-muted);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
}

.be-about-list span {
  flex: 0 0 auto;
  color: var(--accent-warm);
}

.be-about-certifications {
  margin-top: 24px;
  overflow: hidden;
}

.be-about-certifications summary {
  padding: 18px 20px;
  color: var(--text-on-dark);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--fw-semibold);
}

.be-about-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 20px 22px;
}

.be-about-values {
  background: var(--bg-parchment);
  scroll-margin-top: 110px;
}

.be-about-values__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.be-about-value-card {
  display: grid;
  align-content: start;
  padding: 34px 30px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  box-shadow: none;
}

.be-about-value-card__index {
  margin-bottom: 14px;
  color: var(--accent-warm);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: var(--fw-semibold);
}

.be-about-value-card h3 {
  margin: 0 0 10px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

.be-about-value-card p {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.85;
}

.be-about-values__action {
  margin-top: 48px;
  text-align: center;
}

.be-about-space {
  margin-top: clamp(64px, 8vw, 104px);
  padding-top: clamp(54px, 7vw, 84px);
  border-top: 1px solid var(--border-soft);
  scroll-margin-top: 110px;
}

.be-about-space__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.be-about-space__copy .be-section-head {
  margin-bottom: 34px;
}

.be-about-space__copy .be-section-head__lead {
  max-width: 560px;
  margin-left: 0;
}

.be-about-space__links {
  display: grid;
  border-top: 1px solid var(--border-soft);
}

.be-about-space__link {
  display: grid;
  grid-template-columns: 76px 1fr 24px;
  gap: 12px;
  align-items: start;
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--border-soft);
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.be-about-space__part {
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-about-space__mobile-stage,
.be-about-space__mobile-media {
  display: none;
}

.be-about-space__text {
  display: grid;
  gap: 6px;
}

.be-about-space__cat {
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.be-about-space__title {
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.be-about-space__excerpt {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.75;
}

.be-about-space__arrow {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.5;
  transform: translateX(-4px);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.be-about-space__link:not(.is-active) .be-about-space__part,
.be-about-space__link:not(.is-active) .be-about-space__arrow {
  opacity: 0.55;
}

.be-about-space__link:hover .be-about-space__arrow,
.be-about-space__link:focus-visible .be-about-space__arrow,
.be-about-space__link.is-active .be-about-space__arrow {
  transform: translateX(0);
}

.be-about-space__media-shell {
  position: relative;
  top: auto;
  align-self: end;
}

.be-about-space__media {
  position: relative;
  min-height: min(620px, calc(100vh - 84px));
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-feature);
  box-shadow: var(--shadow-photo);
}

.be-about-space__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: var(--be-img-pos, center);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms var(--ease), transform 720ms var(--ease);
}

.be-about-space__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.be-about-space__overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.be-about-space__media::after {
  content: none;
}

.be-about-space__overlay-part {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.be-about-space__overlay-cat {
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}

.be-about-space__overlay-title {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
}

.be-space-detail {
  background: var(--bg-parchment);
}

.be-space-detail .be-page-hero__image {
  object-position: var(--be-hero-pos, var(--be-hero-img-pos, center 50%));
}

.be-space-detail .be-page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 40px) 96px;
  color: #fff;
}

.be-space-detail .be-page-hero__inner .be-page-hero__eyebrow,
.be-space-detail .be-page-hero__inner h1,
.be-space-detail .be-page-hero__inner p {
  text-shadow: 0 2px 18px rgba(20, 18, 16, 0.64), 0 1px 4px rgba(20, 18, 16, 0.52);
}

.be-space-detail .be-page-hero__inner p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.75;
}

.be-space-detail__content {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 32px) clamp(64px, 8vw, 104px);
}

.be-space-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 32px;
}

.be-space-showcase {
  margin: 0 0 44px;
}

.be-space-showcase__main.be-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-feature);
  box-shadow: var(--shadow-photo);
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.be-space-showcase__main .be-slideshow__image {
  object-position: var(--be-img-pos, center);
  transform: scale(1.02);
}

.be-space-showcase__main .be-slideshow__image.is-active {
  transform: scale(1);
}

.be-slideshow__dots.be-space-thumbs {
  position: static;
  left: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.be-slideshow__dots.be-space-thumbs span,
.be-slideshow__dots.be-space-thumbs span.is-active {
  display: block;
  width: auto;
  height: auto;
  aspect-ratio: 5 / 3;
  border-radius: var(--r-sm);
  background: transparent;
  overflow: hidden;
  transition: opacity var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.be-slideshow__dots.be-space-thumbs span {
  border: 1px solid var(--border-hairline);
  opacity: 0.66;
  cursor: pointer;
}

.be-slideshow__dots.be-space-thumbs span.is-active {
  width: auto;
  background: transparent;
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-2px);
}

.be-space-thumbs img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: var(--be-img-pos, center);
}

.be-space-body {
  display: grid;
  gap: 22px;
}

.be-space-body p {
  margin: 0;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 2.05;
}

.be-space-back {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}

.be-space-back a {
  color: var(--accent-ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.be-space-related {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--bg-parchment);
}

.be-space-related__grid {
  margin-top: 40px;
}

.be-space-related-card {
  display: flex;
  flex-direction: column;
}

.be-space-related-card > img {
  display: block;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: var(--be-card-img-pos, center);
}

.be-space-related-card__title,
.be-space-related-card__excerpt {
  display: block;
}

.be-space-related-card__title {
  margin-top: 12px;
}

.be-space-related-card__excerpt {
  margin-top: 0;
}

.be-feedback-heading {
  position: relative;
  z-index: 1;
}

.be-feedback-row:first-child .be-feedback-track {
  transform: translate3d(-240px, 0, 0);
}

.be-feedback-row.is-reverse .be-feedback-track {
  transform: translate3d(-120px, 0, 0);
}

.be-faq-list {
  margin-top: 36px;
}

.be-faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.be-faq-item summary {
  list-style: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
}

.be-faq-item summary::-webkit-details-marker {
  display: none;
}

.be-faq-item summary span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.5;
}

.be-faq-item summary i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.be-faq-item[open] summary span,
.be-faq-item summary:hover span {
  color: var(--accent-ink);
}

.be-faq-item[open] summary i,
.be-faq-item summary:hover i {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.be-faq-item p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  padding: 0 44px 28px 4px;
}

.be-service-related-mobile {
  display: none;
  padding: 0 0 var(--section-y);
  background: var(--bg-page);
  scroll-margin-top: 118px;
}

.be-site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg-ink);
  color: var(--text-on-dark);
}

.be-foot-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4.5vw, 32px) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}

.be-foot-hd {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 18px;
}

.be-foot-link,
.be-foot-link:visited,
.be-foot-meta a,
.be-foot-meta a:visited {
  color: var(--text-on-dark-muted);
  text-decoration: none;
}

.be-foot-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2.2;
}

.be-foot-meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 2;
}

.be-foot-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0;
}

.be-foot-social-link {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  text-decoration: none;
}

.be-foot-social-link:hover {
  color: #fff;
}

.be-foot-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(20px, 4.5vw, 32px);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-on-dark-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.be-foot-credit {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.be-foot-legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.be-foot-legal-link,
.be-foot-legal-link:visited {
  color: var(--text-on-dark-muted);
  text-decoration: none;
}

.be-foot-legal-link:hover {
  color: #fff;
}

.be-foot-legal-link + .be-foot-legal-link::before {
  content: "｜";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.24);
}

.be-foot-mobile {
  display: none;
}

@media (max-width: 1160px) {
  .be-site-header__inner {
    height: 78px;
    padding: 0 8px;
    gap: 4px;
  }

  .be-desktop-nav,
  .be-site-header__inner > .be-btn {
    display: none;
  }

  .be-mobile-actions {
    display: flex;
  }
}

@media (max-width: 759px) {
  .be-brand__mark {
    display: none;
  }

  .be-brand__text {
    gap: 3px;
  }

  .be-site-header__inner {
    padding-left: 20px;
  }
}

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

  .be-page-hero--about {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 92px), 0 calc(100% - 30px));
  }

  .be-service-hero {
    min-height: 300px;
  }

  .be-page-hero__content {
    padding-bottom: 96px;
  }

  .be-page-hero__eyebrow {
    margin-bottom: 12px;
  }

  .be-page-hero h1 {
    font-size: clamp(27px, 7vw, 40px);
  }

  .be-page-hero__lead {
    font-size: 15.5px;
    margin-top: 14px;
  }

  .be-page-hero__image {
    object-position: var(--be-hero-img-mobile-pos, var(--be-hero-img-pos, center 40%));
  }

  .be-service-row__grid,
  .be-service-row--reverse .be-service-row__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .be-service-row--reverse .be-service-row__media,
  .be-service-row--reverse .be-service-row__copy {
    order: initial;
  }

  .be-service-row__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: var(--be-img-mobile-pos, var(--be-img-pos, center));
  }

  .be-services-cta__card {
    padding: 42px 26px;
  }

  .be-services-cta {
    padding-top: var(--section-y) !important;
    padding-bottom: var(--section-y) !important;
  }

  .be-filterbar__button {
    padding: 10px 15px;
    min-height: 40px;
  }

  .be-booking-detail-grid {
    grid-template-columns: 1fr;
  }

  .be-home-news__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .be-home-news-card {
    max-width: none;
  }

  .be-faq-page-section {
    padding-top: 84px !important;
  }

  .be-faq-groups {
    gap: 52px;
  }

  .be-faq-group {
    padding-top: 28px;
  }

  .be-faq-group h2 {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .be-faq-group__description {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
  }

  .be-faq-rows {
    gap: 20px;
  }

  .be-faq-row summary {
    align-items: flex-start;
    gap: 9px;
    padding: 0;
  }

  .be-faq-row__question {
    max-width: calc(100% - 38px);
    padding: 10px 14px 11px;
    border-radius: 16px 16px 16px 5px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .be-faq-row__icon {
    width: 24px;
    height: 24px;
    padding-top: 2px;
    font-size: 22px;
  }

  .be-faq-row[open] .be-faq-row__icon::before {
    font-size: 23px;
  }

  .be-faq-row[open] .be-faq-row__answer {
    margin-top: 10px;
  }

  .be-faq-row__answer-inner {
    max-width: 70%;
    padding: 14px 16px 15px;
    border-radius: 20px 20px 5px 20px;
    font-size: 15.5px;
    line-height: 1.95;
  }

  .be-faq-cta {
    margin-top: 48px;
    padding: 38px 28px 40px;
  }

  .be-contact-section {
    padding-top: 84px !important;
    padding-bottom: 0 !important;
  }

  .be-contact-main {
    max-width: 100%;
  }

  .be-contact-main__top {
    gap: 28px;
  }

  #booking-flow,
  #booking-methods,
  #storefront {
    scroll-margin-top: 92px;
  }

  .be-contact-actions {
    gap: 13px;
  }

  .be-contact-actions__grid {
    grid-template-columns: 1fr;
  }

  .be-contact-map iframe {
    height: 360px;
  }

  .be-contact-card {
    padding: 10px 26px;
  }

  .be-contact-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .be-contact-label {
    width: auto;
  }

  .be-contact-offer {
    font-size: 14.5px;
  }

  .be-booking-summary {
    padding: 18px;
  }

  .be-booking-summary__steps {
    grid-template-columns: 1fr;
  }

  .be-booking-detail-section {
    padding-top: 84px !important;
  }

  .be-booking-detail-actions .be-btn {
    width: 100%;
  }

  .be-booking-flow-modal {
    width: calc(100vw - 24px);
  }

  .be-booking-flow-modal__panel {
    padding: 16px 12px 14px;
  }

  .be-booking-flow-modal .be-flow {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .be-booking-flow-modal .be-step {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 78px;
    padding: 10px 11px;
  }

  .be-booking-flow-modal .be-stepnode {
    width: 28px;
    height: 28px;
  }

  .be-booking-flow-modal .be-stepnode svg {
    width: 15px;
    height: 15px;
  }

  .be-booking-flow-modal .be-stepnum {
    font-size: 9px;
  }

  .be-booking-flow-modal .be-steptitle {
    font-size: 13.5px;
  }

  .be-booking-flow-modal .be-stepdesc {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .be-booking-flow-modal .be-stepghost {
    font-size: 42px;
  }

  .be-lb {
    padding: 18px;
  }

  .be-lb img {
    max-height: 86vh;
  }

  .be-case-card > img {
    height: clamp(118px, 30vw, 148px);
  }

  .be-lb-close {
    top: 14px;
    right: 14px;
  }

  .be-booking-flow {
    margin-top: 34px;
  }

  .be-booking-flow--first {
    margin-top: 0;
  }

  .be-booking-flow__figure {
    position: relative;
    z-index: 1;
    overflow: visible;
    cursor: zoom-in;
  }

  .be-booking-flow__figure img {
    height: auto;
    object-fit: contain;
    transform: none;
    transform-origin: center center;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    will-change: transform;
  }

  .be-booking-flow__figure.is-floating {
    z-index: 30;
  }

  .be-booking-flow__figure.is-floating img {
    box-shadow: 0 24px 70px rgba(31, 27, 22, 0.25);
    transform: scale(1.52);
    transform-origin: 50% 50%;
  }

  .be-storefront-gallery {
    height: min(100vw, calc(100vh - 220px), 560px);
    min-height: 340px;
  }

  .be-cardlink {
    margin-top: 14px;
  }

  .be-section-head__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .be-feedback-section {
    padding-bottom: calc(var(--section-y) + 72px) !important;
  }

  .be-feedback-row:first-child .be-feedback-track,
  .be-feedback-row.is-reverse .be-feedback-track {
    transform: translate3d(-110px, 0, 0);
  }

  .be-articles-list {
    padding-bottom: 127px !important;
  }

  .be-breadcrumb {
    padding-top: 80px;
    font-size: 12.5px;
  }

  .be-case-detail {
    padding: 0 20px calc(var(--section-y) + 22px);
  }

  .be-case-detail__tags {
    margin: 24px 0 28px;
  }

  .be-case-prose p {
    font-size: 16.5px;
    line-height: 2.05;
  }

  .be-case-prose h2 {
    font-size: 25px;
    margin: 42px 0 16px;
  }

  .be-case-figure {
    margin: 28px 0 34px;
  }

  .be-case-inline-image {
    max-width: 100%;
  }

  .be-case-prose blockquote {
    padding: 18px 20px;
    font-size: 18px;
    line-height: 1.75;
  }

  .be-case-share {
    display: block;
    margin-top: 46px;
    padding: 30px 30px 32px;
  }

  .be-case-share .be-btn {
    margin-top: 20px;
  }

  .be-case-back {
    margin-top: 38px;
  }

  .be-article-detail {
    padding: 0 20px;
  }

  .be-article-detail__header {
    padding: 26px 0 8px;
  }

  .be-article-detail__header h1 {
    font-size: clamp(23px, 5vw, 30px);
    line-height: 1.32;
  }

  .be-article-trust {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: -10px 0 30px;
    padding: 18px;
  }

  .be-article-prose p {
    font-size: 16.5px;
    line-height: 2.05;
  }

  .be-article-inline-image {
    max-width: 100%;
  }

  .be-article-more {
    margin-top: 54px;
  }

  .be-service-detail {
    padding-top: 40px;
    gap: 40px;
  }

  .be-service-mininav {
    top: 78px;
    margin: 0 calc(-1 * clamp(20px, 4.5vw, 32px)) 22px;
  }

  .be-service-mininav > div {
    gap: 18px;
    padding: 0 clamp(20px, 4.5vw, 32px);
  }

  .be-service-mininav a {
    font-size: 14px;
    padding: 12px 0;
  }

  .be-svc-section {
    scroll-margin-top: 118px;
    padding-top: 26px;
    margin-top: 26px;
    border-top: 1px solid var(--border-soft);
  }

  .be-svc-section.is-first {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }

  .be-svc-section > h2 {
    font-size: 21px;
    margin: 0 0 16px;
  }

  .be-service-price {
    position: static;
  }

  .be-service-related--desktop {
    display: none;
  }

  .be-service-faq {
    padding-top: var(--section-y) !important;
    padding-bottom: calc(var(--section-y) - 8px) !important;
  }

  .be-service-related-mobile {
    display: block;
    padding-top: 0 !important;
    padding-bottom: calc(var(--section-y) - 8px) !important;
  }

  .be-service-related-mobile .be-related-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    margin-top: 32px;
  }

  .be-service-related-mobile .be-related-card {
    display: block;
    width: min(74vw, 330px);
    max-width: 100%;
    min-height: 0;
  }

  .be-service-related-mobile .be-related-card__image,
  .be-service-related-mobile .be-article-preview-card .be-related-card__image {
    width: 100%;
    height: clamp(170px, 24vw, 230px);
    min-height: 0;
    aspect-ratio: 3 / 2;
    object-fit: fill;
    object-position: center;
  }

  .be-service-related-mobile .be-related-card__body {
    display: block;
    min-width: 0;
    padding: 16px 18px;
  }

  .be-service-related-mobile .be-related-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 16px;
  }

  .be-article-more__grid.be-cardgrid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .be-article-more__grid.be-cardgrid .be-article-preview-card > img {
    height: clamp(198px, 56vw, 230px) !important;
  }

  .be-article-more__grid.be-cardgrid .be-cardbody {
    padding: 16px 18px 18px !important;
  }

  .be-article-more__grid.be-cardgrid .be-cardtitle {
    font-size: 17px !important;
    line-height: 1.38 !important;
  }
}

@media (max-width: 700px) {
  .be-foot-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 44px 20px 28px;
  }

  .be-foot-brand {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: flex-start;
    gap: clamp(8px, 3vw, 16px);
    width: 100%;
    min-width: 0;
  }

  .be-foot-brand .be-brand {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .be-foot-brand .be-motto-footer {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    width: max-content;
    max-width: clamp(112px, 36vw, 230px);
    margin: 0;
    text-align: right;
  }

  .be-foot-brand .be-motto-line {
    display: flex !important;
    justify-content: flex-end;
    gap: 2px;
    color: var(--text-on-dark-muted);
    font-family: var(--font-sans);
    font-size: clamp(10.5px, 2.45vw, 13px);
    line-height: 1.8;
    white-space: nowrap;
  }

  .be-foot-brand .be-motto-main {
    min-width: 0;
  }

  .be-foot-brand .be-motto-main-text {
    white-space: nowrap;
  }

  .be-foot-brand .be-brand__name {
    font-size: clamp(13.5px, 3.9vw, 18px);
    line-height: 1.15;
    white-space: normal;
  }

  .be-foot-brand .be-brand__latin {
    font-size: clamp(6.5px, 1.8vw, 9.5px);
    letter-spacing: 0.14em;
    line-height: 1.25;
    white-space: normal;
  }

  .be-foot-desktop {
    display: none;
  }

  .be-foot-mobile {
    display: block;
  }

  .be-foot-mobile details {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .be-foot-mobile summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    cursor: pointer;
  }

  .be-foot-mobile summary::-webkit-details-marker {
    display: none;
  }

  .be-foot-mobile .be-foot-hd {
    margin-bottom: 0;
  }

  .be-foot-mobile__content {
    padding: 0 0 16px;
    animation: be-acc-in 0.28s var(--ease) both;
  }

  .be-foot-bottom {
    justify-content: flex-start;
    padding-bottom: 26px;
    text-align: left;
  }

  .be-foot-credit {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .be-foot-grid {
    padding-right: 14px;
    padding-left: 14px;
  }

  .be-foot-brand {
    gap: 6px;
  }

  .be-foot-brand .be-motto-footer {
    max-width: 108px;
  }

  .be-foot-brand .be-motto-line {
    font-size: 9.5px;
    line-height: 1.75;
  }

  .be-foot-brand .be-brand__name {
    font-size: 13px;
  }

  .be-foot-brand .be-brand__latin {
    font-size: 6px;
    letter-spacing: 0.1em;
  }
}

.be-btn--quiet {
  background: #fff;
  color: var(--text-heading);
  border-color: var(--border-hairline);
  box-shadow: var(--shadow-card);
}

.be-btn--ondark {
  background: #fff;
  color: var(--accent-ink);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(13, 24, 26, 0.16);
}

.be-btn--ondark:hover,
.be-btn--ondark:focus-visible,
.be-btn--ondark:active {
  color: var(--accent-ink);
  text-shadow: 0 0 10px rgba(63, 138, 140, 0.2);
}

.be-btn--home-ghost,
.be-btn--home-ghost:visited,
.be-btn--home-ondark-ghost,
.be-btn--home-ondark-ghost:visited {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
}

.be-btn--home-ghost:hover,
.be-btn--home-ghost:focus-visible,
.be-btn--home-ghost:active,
.be-btn--home-ondark-ghost:hover,
.be-btn--home-ondark-ghost:focus-visible,
.be-btn--home-ondark-ghost:active {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.46);
}

.be-home {
  background: var(--bg-page);
  overflow-x: clip;
}

.be-home-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-ink);
}

.be-home-hero__image,
.be-home-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.be-home-hero__image {
  object-position: center 32%;
}

.be-home-hero__scrim,
.be-home-hero__vignette,
.be-home-cta__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.be-home-hero__scrim {
  background: linear-gradient(to top, rgba(24, 21, 19, 0.9) 0%, rgba(24, 21, 19, 0.66) 24%, rgba(24, 21, 19, 0.34) 46%, rgba(24, 21, 19, 0.1) 70%, rgba(24, 21, 19, 0) 88%);
}

.be-home-hero__vignette {
  background: linear-gradient(102deg, rgba(24, 21, 19, 0.42) 0%, rgba(24, 21, 19, 0.12) 38%, rgba(24, 21, 19, 0) 62%);
}

.be-home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.be-home-hero__copy {
  max-width: 700px;
  color: #fff;
}

.be-home-hero__eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 15px;
  border-radius: 4px;
  background: rgba(63, 138, 140, 0.92);
  color: #fff;
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.be-home-hero__eyebrow-mobile {
  display: none;
}

.be-home-hero__title {
  color: #fff;
  text-shadow: 0 1px 20px rgba(20, 18, 16, 0.5), 0 1px 3px rgba(20, 18, 16, 0.35);
}

.be-home-hero__lead {
  max-width: 500px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  text-shadow: 0 1px 10px rgba(20, 18, 16, 0.55), 0 1px 2px rgba(20, 18, 16, 0.4);
}

.be-home-hero__actions,
.be-home-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.be-home-hero__action {
  display: inline-flex;
}

.be-home-hero__marker {
  text-align: right;
  color: rgba(255, 255, 255, 0.86);
  padding-bottom: 6px;
  text-shadow: 0 1px 12px rgba(20, 18, 16, 0.55);
}

.be-home-hero__marker-title {
  color: #fff;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.be-home-hero__marker-kicker {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-latin);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.be-home-hero__marker-line {
  width: 44px;
  height: 1px;
  margin: 14px 0 14px auto;
  background: rgba(255, 255, 255, 0.3);
}

.be-home-hero__marker-note {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.be-home-hero-ticker {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  --ticker-duration: 52s;
  height: 42px;
  padding: 0 clamp(20px, 4vw, 36px);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 207, 207, 0.38);
  background: rgba(63, 138, 140, 0.94);
  color: #fff;
  backdrop-filter: blur(10px);
}

.be-home-hero-ticker__label {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.be-home-hero-ticker__viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.be-home-hero-ticker__viewport::before,
.be-home-hero-ticker__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 42px;
  pointer-events: none;
}

.be-home-hero-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(63, 138, 140, 0.96), rgba(63, 138, 140, 0));
}

.be-home-hero-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(63, 138, 140, 0.96), rgba(63, 138, 140, 0));
}

.be-home-hero-ticker__track {
  display: flex;
  width: max-content;
  animation: be-marquee var(--ticker-duration) linear infinite;
}

.be-home-hero-ticker__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.be-home-hero-ticker__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.be-home-hero-ticker__item,
.be-home-hero-ticker__item:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.be-home-hero-ticker__item:hover,
.be-home-hero-ticker__item:focus-visible,
.be-home-hero-ticker__item:active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.be-home-hero-ticker__item::selection,
.be-home-hero-ticker__item *::selection {
  background: rgba(243, 239, 232, 0.24);
  color: #fff;
}

.be-home-hero-ticker__item span {
  color: rgba(230, 240, 240, 0.78);
  font-family: var(--font-latin);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.be-home-hero-ticker__item strong {
  font-weight: 600;
}

.be-home-hero-ticker__item:hover span,
.be-home-hero-ticker__item:focus-visible span,
.be-home-hero-ticker__item:active span,
.be-home-hero-ticker__item:hover strong,
.be-home-hero-ticker__item:focus-visible strong,
.be-home-hero-ticker__item:active strong {
  color: inherit;
}

@media (min-width: 1200px) {
  .be-home-hero-ticker {
    --ticker-duration: 46s;
  }
}

@media (min-width: 1800px) {
  .be-home-hero-ticker {
    --ticker-duration: 40s;
  }
}

.be-home-news {
  position: relative;
  padding: clamp(34px, 4.5vw, 52px) 0;
  background: var(--bg-page);
}

.be-home-news__head {
  max-width: 640px;
}

.be-home-news__head h2 {
  margin: 6px 0 8px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0;
}

.be-home-news__head p {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.85;
}

.be-home-news__archive-link {
  margin-top: 12px;
  font-size: 13.5px;
}

.be-contact-appointment-card span {
  color: var(--accent-warm-hover);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.be-contact-appointment-card strong {
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
}

.be-home-news__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.be-home-news__mobile {
  display: none;
}

.be-home-news__cards--primary {
  grid-template-columns: minmax(0, 1fr);
}

.be-home-news-more {
  margin-top: 16px;
  text-align: center;
}

.be-home-news-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-800);
  cursor: pointer;
  list-style: none;
}

.be-home-news-more[open] summary {
  display: none;
}

.be-home-news-more summary::-webkit-details-marker {
  display: none;
}

.be-home-news-more summary svg,
.be-home-news-more__collapse svg {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--ink-800);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.24s var(--ease), transform 0.24s var(--ease);
}

.be-home-news-more summary:hover svg,
.be-home-news-more summary:focus-visible svg,
.be-home-news-more__collapse:hover svg,
.be-home-news-more__collapse:focus-visible svg {
  color: var(--ink-900);
  transform: translateY(1px);
}

.be-home-news__cards--more {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  text-align: left;
}

.be-home-news-more__collapse {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 34px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-800);
  cursor: pointer;
}

.be-home-news-more:not([open]) .be-home-news-more__collapse {
  display: none;
}

.be-home-news-more__collapse:hover svg,
.be-home-news-more__collapse:focus-visible svg {
  transform: translateY(-1px);
}

.be-home-news-card,
.be-home-news-card:visited {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.be-home-news-card img {
  display: block;
  width: 100%;
  height: clamp(132px, 13vw, 176px);
  object-fit: cover;
}

.be-home-news-card__date {
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.be-home-news__desktop .be-cardbody {
  padding: 16px 18px 18px;
}

.be-home-news__desktop .be-cardtitle {
  margin: 4px 0 6px;
  font-size: 17px;
  line-height: 1.35;
}

.be-home-news__desktop .be-cardexc {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.be-home-news__desktop .be-cardlink {
  margin-top: 10px;
  font-size: 13px;
}

.be-home-news-card h3 {
  margin: 5px 0 7px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.be-home-news-card p {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.75;
}

.be-announcement-archive {
  padding-top: clamp(54px, 6vw, 76px);
}

.be-announcement-archive__grid {
  margin-top: 34px;
}

.be-announcement-archive-card .be-cardbody {
  padding: 16px 18px 18px;
}

.be-announcement-archive-card .be-cardtitle {
  margin: 4px 0 7px;
  font-size: 18px;
  line-height: 1.35;
}

.be-announcement-archive-card .be-cardexc {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.be-announcement-archive-card .be-cardlink {
  margin-top: 12px;
  font-size: 13px;
}

.be-home-intro,
.be-home-services,
.be-home-feature {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.be-home-intro {
  background: var(--bg-page);
}

.be-home-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}

.be-home-kicker,
.be-home-cta__eyebrow {
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.be-home-kicker {
  margin-bottom: 14px;
  color: var(--accent);
}

.be-home-intro h2,
.be-home-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.28;
}

.be-home-intro h2 {
  margin: 0 0 18px;
  color: var(--text-heading);
  font-size: clamp(28px, 3.2vw, 38px);
}

.be-home-intro p {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.9;
}

.be-home-intro__motto {
  margin: 0 0 26px;
}

.be-home-text-link {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
}

.be-home-watermark {
  z-index: 0;
}

.be-home-watermark--zh span {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.be-home-watermark--dark {
  top: auto;
  right: 0;
  bottom: 6%;
  left: 0;
  transform: none;
}

.be-home-watermark--dark span {
  color: rgba(255, 255, 255, 0.05);
}

.be-slideshow {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-feature);
  box-shadow: var(--shadow-photo);
  cursor: pointer;
}

.be-slideshow__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms var(--ease), transform 1200ms var(--ease);
}

.be-slideshow__image.is-active,
.be-slideshow__image:first-child {
  opacity: 1;
  transform: scale(1);
}

.be-slideshow.is-bound .be-slideshow__image:first-child:not(.is-active) {
  opacity: 0;
  transform: scale(1.02);
}

.be-slideshow__dots {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  gap: 7px;
}

.be-slideshow__dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 1px 8px rgba(20, 18, 16, 0.22);
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}

.be-slideshow__dots span.is-active {
  width: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.be-home-services {
  background: var(--bg-feature);
}

.be-home-services [data-reveal] {
  opacity: 1;
  transform: none;
}

.be-home-services__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: auto auto auto;
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
}

.be-home-services__media {
  grid-column: 1;
  grid-row: 2 / span 2;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-photo);
  clip-path: none;
}

.be-home-services__media.be-slideshow {
  min-height: 500px;
  aspect-ratio: 3 / 4;
}

.be-home-services__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.be-home-services__marker {
  position: absolute;
  left: -8px;
  bottom: 28px;
  z-index: 2;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.be-home-services .be-section-head {
  margin-bottom: 22px;
}

.be-home-services__head {
  grid-column: 2;
  grid-row: 1;
}

.be-home-services .be-section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.be-home-services .be-section-head__lead {
  max-width: 460px;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.be-home-service-grid {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.be-home-service-card {
  position: relative;
  display: block;
  height: 100%;
  box-sizing: border-box;
  padding: 22px 22px 20px;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-md);
  background: var(--surface-card);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease), border-color 0.42s var(--ease), background 0.42s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.be-home-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.42s var(--ease);
}

.be-home-service-card::after {
  content: "→";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.32s var(--ease), transform 0.42s var(--ease), background 0.42s var(--ease), color 0.42s var(--ease);
}

.be-home-service-card:hover,
.be-home-service-card:focus-visible,
.be-home-service-card:active,
.be-home-service-card.be-active {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.be-home-service-card:hover::before,
.be-home-service-card:focus-visible::before,
.be-home-service-card:active::before,
.be-home-service-card.be-active::before {
  transform: scaleY(1);
}

.be-home-service-card:hover::after,
.be-home-service-card:focus-visible::after,
.be-home-service-card:active::after,
.be-home-service-card.be-active::after {
  background: var(--accent);
  color: #fff;
  opacity: 1;
  transform: translate(0, 0);
}

.be-home-service-card__media {
  display: none;
}

.be-home-service-card__index,
.be-home-service-card__title,
.be-home-service-card__en,
.be-home-service-card__summary {
  display: block;
}

.be-home-service-card__index {
  color: var(--accent);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.be-home-service-card__title {
  margin: 8px 0 4px;
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.4;
}

.be-home-service-card__en {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.be-home-service-card__summary {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
}

.be-home-service-card__media img {
  transition: transform 0.48s var(--ease);
  transform: scale(var(--be-card-img-scale, 1));
}

.be-home-service-card:hover .be-home-service-card__media img,
.be-home-service-card:focus-visible .be-home-service-card__media img,
.be-home-service-card:active .be-home-service-card__media img,
.be-home-service-card.be-active .be-home-service-card__media img {
  transform: scale(calc(var(--be-card-img-scale, 1) * 1.04));
}

.be-home-services__more {
  grid-column: 2;
  grid-row: 3;
  margin-top: 28px;
}

.be-home-feature {
  background: var(--bg-parchment);
}

.be-home-feature__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.be-home-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.be-home-article-rail {
  position: relative;
}

.be-home-article-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  border-radius: var(--r-lg);
  background: var(--surface-card);
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.be-home-article-card img {
  display: block;
  width: 100%;
  height: clamp(170px, 24vw, 230px);
  object-fit: fill;
}

.be-home-cta {
  position: relative;
  margin-top: -56px;
  padding: 120px 0 104px;
  overflow: hidden;
  background: var(--bg-ink);
  clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
}

.be-home-cta__image {
  object-position: center 55%;
}

.be-home-cta__overlay {
  background: linear-gradient(100deg, rgba(38, 79, 83, 0.92) 0%, rgba(33, 30, 26, 0.74) 100%);
}

.be-home-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: #fff;
}

.be-home-cta__eyebrow {
  margin-bottom: 18px;
  color: #f0d9c8;
}

.be-home-cta h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.25;
}

.be-home-cta p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.8;
}

.be-home-cta__meta {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.be-home-cta__meta a,
.be-home-cta__meta a:visited {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 768px) {
  .be-home-cta__content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .be-home-cta p {
    margin-right: auto;
    margin-left: auto;
  }

  .be-home-cta__actions {
    justify-content: center;
  }

  .be-foot-brand .be-motto-footer {
    display: grid;
    justify-items: start;
    gap: 4px;
    max-width: none;
  }

  .be-foot-brand .be-motto-line {
    display: block !important;
    white-space: nowrap;
  }
}

@media (max-width: 1160px) {
  .be-home-hero {
    min-height: calc(100svh - 78px);
  }
}

@media (max-width: 920px) {
  .be-home-hero__inner {
    padding: 0 20px 64px;
  }

  .be-home-hero__marker {
    position: absolute;
    right: 32px;
    bottom: 34px;
    z-index: 2;
    display: block;
    width: min(42vw, 220px);
    padding-bottom: 0;
  }

  .be-home-hero__marker-title,
  .be-home-hero__marker-note span:nth-child(-n + 2) {
    display: none;
  }

  .be-home-intro__grid,
  .be-home-services__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .be-home-services__media {
    display: block;
    grid-column: 1;
    grid-row: 2;
    max-width: 680px;
  }

  .be-home-services__head {
    grid-column: 1;
    grid-row: 1;
  }

  .be-home-service-grid {
    grid-column: 1;
    grid-row: 3;
  }

  .be-home-services__more {
    grid-column: 1;
    grid-row: 4;
  }

  .be-home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .be-home-hero {
    min-height: calc(100svh - 78px);
  }

  .be-home-hero__inner {
    padding-bottom: max(104px, calc(84px + env(safe-area-inset-bottom)));
  }

  .be-home-hero__image {
    object-position: center 30%;
  }

  .be-home-hero__scrim {
    background: linear-gradient(to top, rgba(24, 21, 19, 0.94) 0%, rgba(24, 21, 19, 0.8) 26%, rgba(24, 21, 19, 0.5) 50%, rgba(24, 21, 19, 0.18) 74%, rgba(24, 21, 19, 0) 92%);
  }

  .be-home-hero__eyebrow {
    margin-bottom: 18px;
  }

  .be-home-hero__eyebrow-desktop {
    display: none;
  }

  .be-home-hero__eyebrow-mobile {
    display: inline;
  }

  .be-home-hero__lead {
    margin: 18px 0 26px;
    font-size: 15.5px;
  }

  .be-home-hero__map {
    display: none;
  }

  .be-home-hero__marker {
    right: 20px;
    bottom: 28px;
    width: min(52vw, 220px);
  }

  .be-home-hero__marker-title {
    font-size: 11px;
    line-height: 1.35;
  }

  .be-home-hero__marker-kicker {
    margin-top: 4px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .be-home-hero__marker-line {
    width: 34px;
    margin: 8px 0 8px auto;
  }

  .be-home-hero__marker-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 10.5px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .be-home-hero__marker-note span {
    white-space: nowrap;
  }

  .be-home-hero-ticker {
    height: 36px;
    gap: 12px;
    padding: 0 16px;
    background: rgba(63, 138, 140, 0.96);
    --ticker-duration: 72s;
  }

  .be-home-hero-ticker__label {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .be-home-hero-ticker__viewport::before,
  .be-home-hero-ticker__viewport::after {
    width: 28px;
  }

  .be-home-hero-ticker__item,
  .be-home-hero-ticker__item:visited {
    gap: 8px;
    margin-right: 26px;
    font-size: 12px;
  }

  .be-home-hero-ticker__item span {
    font-size: 10px;
  }

  .be-home-intro,
  .be-home-services,
  .be-home-feature {
    padding: var(--section-y) 0 !important;
  }

  .be-home-intro__copy {
    max-width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
  }

  .be-home-news__head,
  .be-home-services__head {
    max-width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .be-home-intro .be-home-kicker,
  .be-home-intro h2,
  .be-home-cta__eyebrow,
  .be-home-cta h2 {
    text-align: center;
  }

  .be-home-news__head p,
  .be-home-services .be-section-head__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .be-home-news {
    padding: 42px 0 46px;
  }

  .be-home-news__desktop {
    display: none;
  }

  .be-home-news__mobile {
    display: block;
  }

  .be-home-news__cards {
    gap: 12px;
    margin-top: 22px;
  }

  .be-home-news-more {
    margin-top: 13px;
  }

  .be-home-news__cards--more {
    margin-top: 12px;
  }

  .be-home-news-card,
  .be-home-news-card:visited {
    display: grid;
    grid-template-columns: clamp(92px, 28vw, 118px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 118px;
    border-radius: var(--r-md);
  }

  .be-home-news-card img {
    width: 100%;
    height: 100% !important;
    min-height: 118px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .be-home-news-card .be-cardbody {
    display: grid;
    align-content: center;
    padding: 14px 15px;
  }

  .be-home-news-card .be-cardtitle {
    margin-top: 3px;
    font-size: 17px;
    line-height: 1.4;
  }

  .be-home-news-card .be-cardexc {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .be-home-news-card .be-cardlink {
    margin-top: 8px;
    font-size: 13px;
  }

  .be-home-intro__grid {
    gap: 34px !important;
  }

  .be-home-intro p {
    font-size: 15.5px;
    line-height: 1.85;
  }

  .be-slideshow {
    aspect-ratio: 4 / 3;
  }

  .be-slideshow__image {
    object-position: center 42%;
  }

  .be-home-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .be-home-services__media.be-slideshow {
    display: none;
  }

  .be-home-services .be-section-head {
    margin-bottom: 18px;
    text-align: center;
  }

  .be-home-service-grid {
    grid-row: 2;
  }

  .be-home-services__more {
    grid-row: 3;
  }

  .be-home-service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(92px, 29vw, 124px);
    grid-template-rows: auto auto auto 1fr;
    column-gap: 14px;
    min-height: 148px;
    padding: 16px;
    overflow: hidden;
  }

  .be-home-service-card.be-active {
    border-color: rgba(54, 144, 145, 0.34);
    box-shadow: 0 18px 42px rgba(33, 30, 26, 0.14);
    transform: translateY(-5px) scale(1.012);
  }

  .be-home-service-card::after {
    top: auto;
    right: 14px;
    bottom: 14px;
    width: 30px;
    height: 30px;
    background: rgba(230, 240, 240, 0.92);
    box-shadow: 0 8px 18px rgba(33, 30, 26, 0.08);
    opacity: 0.86;
    transform: translate(0, 0);
  }

  .be-home-service-card:hover::after,
  .be-home-service-card:focus-visible::after,
  .be-home-service-card:active::after,
  .be-home-service-card.be-active::after {
    background: var(--accent);
    color: #fff;
    opacity: 1;
  }

  .be-home-service-card__media {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 4;
    overflow: hidden;
    align-self: stretch;
    min-height: 116px;
    border-radius: calc(var(--r-md) - 3px);
    background: var(--bg-feature);
  }

  .be-home-service-card__media img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100% !important;
    object-fit: cover;
  }

  .be-home-service-card__index,
  .be-home-service-card__title,
  .be-home-service-card__en,
  .be-home-service-card__summary {
    grid-column: 1;
  }

  .be-home-service-card__title {
    margin-top: 6px;
    font-size: 17.5px;
  }

  .be-home-service-card__en {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .be-home-service-card__summary {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .be-home-services__more .be-btn {
    width: 100%;
    justify-content: center;
  }

  .be-home-feature__head {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  .be-home-journal .be-home-feature__head {
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: center;
    width: min(calc(100% - 40px), 360px);
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .be-home-journal .be-section-head {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .be-home-journal .be-home-feature__head .be-btn {
    justify-content: center;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .be-home-journal .be-wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .be-home .be-feedback-heading .be-section-head--center {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .be-home .be-feedback-heading .be-section-head__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .be-home-article-rail {
    margin-top: 26px;
    overflow: hidden;
  }

  .be-home-article-rail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(250, 247, 242, 0), var(--bg-parchment) 82%);
  }

  .be-home-article-rail::before {
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    padding: 6px 10px;
    border: 1px solid var(--border-hairline);
    border-radius: var(--r-pill);
    background: rgba(250, 247, 242, 0.86);
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    box-shadow: var(--shadow-card);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  }

  .be-home-article-rail.is-hint-hidden::before {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }

  .be-home-article-grid {
    display: flex;
    gap: 20px;
    margin-top: 0;
    padding-right: calc((100vw - min(74vw, 330px)) / 2 + 20px);
    padding-left: calc((100vw - min(74vw, 330px)) / 2 + 20px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: calc((100vw - min(74vw, 330px)) / 2 + 20px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .be-home-article-grid::-webkit-scrollbar {
    display: none;
  }

  .be-home-article-card {
    flex: 0 0 min(74vw, 330px);
    scroll-snap-align: center;
  }

  .be-home-cta {
    margin-top: -42px;
    padding: 108px 0 82px !important;
    clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  }

  .be-home-cta p {
    font-size: 16px;
  }

  .be-home-cta h2 {
    font-size: clamp(24px, 7vw, 32px);
    white-space: nowrap;
  }

  .be-home-cta__actions {
    display: grid;
    gap: 12px;
  }

  .be-home-cta__actions .be-btn {
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .be-about-brand__grid,
  .be-about-founder__grid,
  .be-founder-data,
  .be-about-cert-grid,
  .be-about-space__grid {
    grid-template-columns: 1fr;
  }

  .be-about-values__flow {
    grid-template-columns: 1fr;
  }

  .be-about-space__media-shell {
    display: none;
  }

  .be-about-space__mobile-stage {
    position: relative;
    display: block;
    margin: 28px 0 18px;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--bg-feature);
    box-shadow: var(--shadow-photo);
    aspect-ratio: 4 / 3;
  }

  .be-about-space__mobile-media {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.035);
    pointer-events: none;
    transition: opacity 520ms var(--ease), transform 720ms var(--ease);
  }

  .be-about-space__mobile-media.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .be-about-space__mobile-media img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: var(--be-img-pos, center);
  }

  .be-about-space__mobile-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(24, 21, 19, 0.66), rgba(24, 21, 19, 0.18) 58%, rgba(24, 21, 19, 0));
    pointer-events: none;
  }

  .be-about-space__mobile-overlay {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    display: grid;
    gap: 5px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68), 0 1px 4px rgba(0, 0, 0, 0.5);
  }

  .be-about-space__link {
    grid-template-columns: 1fr 22px;
    gap: 8px 12px;
    padding: 22px 0;
  }

  .be-about-space__part {
    grid-column: 1 / -1;
  }

  .be-space-showcase__main {
    aspect-ratio: 4 / 3;
  }

  .be-founder-copy-block,
  .be-founder-photo-block,
  .be-founder-details-block {
    grid-column: auto;
    grid-row: auto;
  }

  .be-founder-copy-block {
    order: 1;
    max-width: 100%;
  }

  .be-founder-photo-block {
    order: 2;
    aspect-ratio: 4 / 3;
  }

  .be-founder-details-block {
    order: 3;
  }
}

@media (max-width: 640px) {
  .be-about-brand,
  .be-about-founder,
  .be-about-values {
    padding: var(--section-y) 0;
  }

  .be-about-brand__grid,
  .be-about-founder__grid {
    gap: 34px;
  }

  .be-about-body {
    font-size: 15.5px;
    line-height: 1.85;
  }

  .be-about-values__flow {
    margin-top: 40px;
  }

  .be-about-value-card {
    padding: 28px 24px;
  }

  .be-about-space {
    margin-top: 56px;
    padding-top: 48px;
  }

  .be-about-space__link {
    grid-template-columns: 1fr 22px;
    gap: 8px 12px;
    padding: 22px 0;
  }

  .be-about-space__part {
    grid-column: 1 / -1;
  }

  .be-space-body p {
    font-size: 16px;
    line-height: 1.95;
  }

  .be-home-news__cards {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 768px) {
  .be-home-services {
    padding-top: calc(var(--section-y) + 9px);
    padding-bottom: calc(var(--section-y) + 9px);
  }

  .be-feedback-section {
    padding-bottom: calc(var(--section-y) + 89px);
  }

  .be-home-cta {
    padding-bottom: 110px;
  }
}

/* Preserve photo color as authored; quality is controlled by the actual uploaded asset. */
.be-home-service-card__media img,
.be-home-news-card img,
.be-article-preview-card img,
.be-case-card img,
.be-service-row__media img,
.be-about-space__image,
.be-founder-img,
.be-slideshow__image {
  filter: none;
}

/* Home philosophy copy should stay editorial and left-aligned. */
.be-home-intro__copy .be-home-kicker,
.be-home-intro__copy h2 {
  text-align: left;
}

/* Footer motto belongs under the brand lockup on every viewport. */
.be-foot-brand .be-motto-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 16px;
  text-align: left;
}

.be-foot-brand .be-motto-line {
  display: block;
  color: var(--text-on-dark-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
}

.be-foot-brand .be-motto-lead {
  margin-right: 0.35em;
}

.be-service-related .be-article-preview-card > img,
.be-service-related-mobile .be-article-preview-card > img {
  height: clamp(170px, 18vw, 220px) !important;
  object-fit: fill !important;
  object-position: center !important;
}

/* Reviews must remain visible even before the marquee script finishes measuring. */
.be-feedback-section {
  min-height: 420px;
}

.be-feedback-row {
  min-height: 214px;
}

.be-feedback-row:not([data-feedback-bound]) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.be-feedback-row:not([data-feedback-bound]) .be-feedback-track {
  transform: none !important;
}

.be-feedback-track {
  min-width: max-content;
}

/* FAQ: return to the earlier green question / warm answer rhythm with dividers. */
.be-faq-page-inner {
  max-width: 960px;
}

.be-faq-rows {
  gap: 0;
}

.be-faq-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.be-faq-row:first-child {
  border-top: 1px solid var(--border-soft);
}

.be-faq-row summary {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.be-faq-row__question {
  max-width: min(780px, calc(100% - 38px));
  border: 0;
  background: var(--accent);
  color: var(--text-on-dark);
  box-shadow: 0 12px 28px rgba(49, 109, 112, 0.2);
}

.be-faq-row[open] .be-faq-row__question,
.be-faq-row:hover .be-faq-row__question {
  background: var(--accent-hover);
  color: var(--text-on-dark);
}

.be-faq-row__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-left: auto;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, var(--border-soft));
  border-radius: var(--r-full);
  background: color-mix(in srgb, var(--surface-card) 88%, var(--accent-soft));
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  transform: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.be-faq-row[open] .be-faq-row__icon,
.be-faq-row:hover .be-faq-row__icon {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.be-faq-row[open] .be-faq-row__icon {
  font-size: 0;
  transform: rotate(90deg);
}

.be-faq-row[open] .be-faq-row__icon::before {
  content: "×";
  font-size: 18px;
  line-height: 1;
}

.be-faq-row__answer-inner {
  max-width: min(760px, 82%);
  border: 0;
  background: var(--accent-warm);
  color: var(--text-on-dark);
  box-shadow: 0 12px 28px rgba(168, 98, 63, 0.2);
}

.be-faq-row__answer a {
  color: inherit;
  text-decoration-color: rgba(243, 239, 232, 0.55);
}

@media (max-width: 960px) {
  .be-faq-row__answer {
    padding-inline: 0;
    justify-items: end;
  }

  .be-faq-row__answer-inner {
    width: fit-content;
    max-width: none;
    max-inline-size: 58%;
    margin-inline: auto 0;
    padding-inline: clamp(14px, 4vw, 18px);
    box-sizing: border-box;
    border-radius: 22px 22px 6px 22px;
  }

  .be-faq-row__answer p {
    text-align: left;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
}

/* Keep button text readable on hover; use glow, not same-color text. */
.be-btn--primary:hover,
.be-btn--primary:focus-visible,
.be-btn--primary:active {
  background: var(--accent-hover);
  color: #fff !important;
}

.be-home-hero-ticker__item:hover,
.be-home-hero-ticker__item:focus-visible,
.be-home-hero-ticker__item:active,
.be-home-hero-ticker__item:hover span,
.be-home-hero-ticker__item:focus-visible span,
.be-home-hero-ticker__item:active span,
.be-home-hero-ticker__item:hover strong,
.be-home-hero-ticker__item:focus-visible strong,
.be-home-hero-ticker__item:active strong {
  color: #fff !important;
}

@media (max-width: 767px) {
  .be-foot-brand {
    display: block;
  }

  .be-foot-brand .be-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: auto;
    max-width: 100%;
  }

  .be-foot-brand .be-brand__mark {
    display: block;
    width: 52px;
    height: 52px;
  }

  .be-foot-brand .be-brand__text {
    gap: 5px;
  }

  .be-foot-brand .be-brand__name {
    font-size: clamp(18px, 4.65vw, 21px);
    line-height: 1.12;
    white-space: nowrap;
  }

  .be-foot-brand .be-brand__latin {
    font-size: clamp(8.5px, 2.25vw, 10px);
    letter-spacing: 0.22em;
    line-height: 1;
    white-space: nowrap;
  }

  .be-foot-brand .be-motto-footer {
    align-items: flex-start;
    width: auto;
    max-width: none;
    margin-top: 16px;
    text-align: left;
  }

  .be-foot-brand .be-motto-line {
    display: block !important;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 1.8;
    white-space: normal;
  }

  .be-home-service-card:nth-child(3) .be-home-service-card__media img {
    --be-card-img-scale: 1 !important;
    object-position: 50% 36% !important;
  }

  .be-faq-page-inner {
    max-width: none;
  }

  .be-faq-row {
    padding: 16px 0;
  }

  .be-faq-row summary {
    align-items: center;
    gap: 14px;
  }

  .be-faq-row__question {
    max-width: calc(100% - 48px);
    font-size: 17px;
  }

  .be-faq-row__icon {
    width: 30px;
    height: 30px;
  }

  .be-faq-row__answer {
    padding-inline: 0;
    justify-items: end;
  }

  .be-faq-row__answer-inner {
    width: fit-content;
    max-width: none;
    max-inline-size: 58%;
    margin-inline: auto 0;
    padding-inline: clamp(14px, 4vw, 18px);
    box-sizing: border-box;
    border-radius: 22px 22px 6px 22px;
  }

  .be-faq-row__answer p {
    text-align: left;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .be-service-related-mobile .be-related-card__image,
  .be-service-related-mobile .be-article-preview-card .be-related-card__image {
    height: clamp(170px, 24vw, 230px) !important;
    min-height: 0 !important;
    object-fit: fill !important;
  }
}

/* Draw the shared FAQ toggle optically centered, independent of font metrics. */
.be-faq-row__icon {
  position: relative;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  transform-origin: center;
}

.be-faq-row__icon::before,
.be-faq-row__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.be-faq-row__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.be-faq-row[open] .be-faq-row__icon {
  transform: rotate(45deg);
}

.be-faq-row[open] .be-faq-row__icon::before {
  content: "";
  font-size: 0;
  line-height: 0;
}

.be-home-intro img.be-slideshow__image[src*="studio-06.JPG"],
.be-about-brand img.be-slideshow__image[src*="studio-06.JPG"] {
  object-position: 44% center !important;
}
