html {
  background: #080908;
}

body {
  background:
    linear-gradient(135deg, #080908 0%, #0f1413 44%, #120b0b 100%),
    #080908;
}

/* Keep content readable when JavaScript is blocked or initialization fails. */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

@media (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}

.menu-item {
  list-style: none;
}

.menu-item a {
  color: inherit;
  transition: color 200ms ease;
}

.menu-item a:hover {
  color: #d1b885;
}

.dbs-page-ready body {
  opacity: 1;
  transition: opacity var(--page-transition-duration, 540ms) var(--motion-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.dbs-page-leave body {
  opacity: 0.18;
}

img {
  max-width: 100%;
}

:root {
  --dbs-bg: #070807;
  --dbs-panel: #101111;
  --dbs-cream: #f6efe3;
  --dbs-muted: #cfc7b8;
  --dbs-dim: #8d958f;
  --dbs-gold: #d7b36f;
  --dbs-red: #b8322f;
  --dbs-green: #5c7d69;
  --dbs-line: rgba(246, 239, 227, 0.16);
  --dbs-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: 108px;
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23noise)' opacity='.42'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.025) 0 1px, transparent 1px 88px),
    linear-gradient(135deg, rgba(92, 125, 105, 0.15), rgba(184, 50, 47, 0.08) 58%, rgba(8, 9, 8, 0.5));
  opacity: 0.36;
}

.dbs-site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  padding: 12px;
  pointer-events: none;
}

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

.dbs-site-header__bar {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  width: min(100%, 1680px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  pointer-events: auto;
  transition:
    background-color 260ms var(--dbs-ease),
    border-color 260ms var(--dbs-ease),
    box-shadow 260ms var(--dbs-ease),
    min-height 260ms var(--dbs-ease);
}

.dbs-site-header.is-scrolled .dbs-site-header__bar {
  min-height: 66px;
  border-color: rgba(246, 239, 227, 0.24);
  background: rgba(7, 8, 7, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.dbs-scroll-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.08);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform 80ms linear;
}

.dbs-scroll-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--dbs-red), var(--dbs-gold), var(--dbs-green));
}

.dbs-site-header__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.dbs-site-header__logo {
  width: 118px;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.dbs-site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--dbs-cream);
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

.dbs-site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
  margin: 0;
  padding: 0;
}

.dbs-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--dbs-bg);
  background: var(--dbs-cream);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms var(--dbs-ease);
}

.dbs-skip-link:focus {
  outline: 3px solid var(--dbs-gold);
  outline-offset: 3px;
  transform: translateY(0);
}

.dbs-site-nav .menu-item {
  list-style: none;
}

.dbs-site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: inherit;
}

.dbs-site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--dbs-gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 240ms var(--dbs-ease);
}

.dbs-site-nav a:hover::after,
.dbs-site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.dbs-service-menu {
  position: relative;
}

.dbs-service-menu__summary {
  position: relative;
  display: flex;
  min-height: 42px;
  cursor: pointer;
  list-style: none;
  gap: 0.55rem;
  align-items: center;
  color: inherit;
}

.dbs-service-menu__summary::-webkit-details-marker {
  display: none;
}

.dbs-service-menu__summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--dbs-gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 240ms var(--dbs-ease);
}

.dbs-service-menu__summary svg {
  width: 11px;
  color: rgba(246, 239, 227, 0.72);
  transition: transform 180ms var(--dbs-ease);
}

.dbs-service-menu__summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--dbs-gold);
  outline-offset: 4px;
}

.dbs-service-menu[open] .dbs-service-menu__summary svg {
  transform: rotate(180deg);
}

.dbs-service-menu.current-menu-ancestor .dbs-service-menu__summary::after,
.dbs-service-menu[open] .dbs-service-menu__summary::after,
.dbs-service-menu__summary:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.dbs-service-menu__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(25rem, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(135deg, rgba(209, 184, 133, 0.06), transparent 48%),
    rgba(10, 12, 11, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54);
  transform: translate(-50%, -8px);
  transition:
    opacity 180ms var(--dbs-ease),
    transform 180ms var(--dbs-ease),
    visibility 180ms;
  backdrop-filter: blur(20px);
}

.dbs-service-menu__panel::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.dbs-service-menu[open] .dbs-service-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dbs-site-nav .dbs-service-menu__panel a {
  display: grid;
  min-height: 0;
  gap: 0.38rem;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
  color: var(--dbs-cream);
  line-height: 1.2;
  transition: background-color 180ms var(--dbs-ease), color 180ms var(--dbs-ease);
}

.dbs-site-nav .dbs-service-menu__panel a:last-child {
  border-bottom: 0;
}

.dbs-site-nav .dbs-service-menu__panel a::after {
  display: none;
}

.dbs-site-nav .dbs-service-menu__panel a:hover,
.dbs-site-nav .dbs-service-menu__panel a:focus-visible,
.dbs-site-nav .dbs-service-menu__panel a[aria-current="page"] {
  color: var(--dbs-cream);
  background: rgba(246, 239, 227, 0.08);
  outline: 0;
}

.dbs-service-menu__panel span {
  font-size: 0.92rem;
  font-weight: 820;
}

.dbs-service-menu__panel small {
  color: rgba(246, 239, 227, 0.58);
  font-size: 0.73rem;
  font-weight: 620;
  line-height: 1.45;
}

.dbs-site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.dbs-header-cta,
.dbs-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transition:
    background-color 220ms var(--dbs-ease),
    border-color 220ms var(--dbs-ease),
    color 220ms var(--dbs-ease),
    transform 220ms var(--dbs-ease);
}

.dbs-header-cta {
  display: none;
  border: 1px solid var(--dbs-gold);
  color: var(--dbs-bg);
  background: var(--dbs-gold);
}

.dbs-header-cta:hover,
.dbs-button:hover {
  transform: translateY(-1px);
}

.dbs-button--light {
  border: 1px solid var(--dbs-cream);
  color: var(--dbs-bg);
  background: var(--dbs-cream);
}

.dbs-button--light:hover {
  border-color: var(--dbs-gold);
  background: var(--dbs-gold);
}

.dbs-button--outline {
  border: 1px solid rgba(246, 239, 227, 0.32);
  color: var(--dbs-cream);
  background: rgba(7, 8, 7, 0.34);
}

.dbs-button--outline:hover,
.dbs-header-cta:hover {
  border-color: var(--dbs-cream);
  color: var(--dbs-bg);
  background: var(--dbs-cream);
}

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

.dbs-mobile-menu__summary {
  display: flex;
  width: 50px;
  height: 50px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 8px;
  color: var(--dbs-cream);
  background: rgba(246, 239, 227, 0.06);
}

.dbs-mobile-menu__summary::-webkit-details-marker {
  display: none;
}

.dbs-mobile-menu__icon {
  display: flex;
  width: 20px;
  flex-direction: column;
  gap: 6px;
}

.dbs-mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 60px;
  display: none;
  min-width: 232px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background: rgba(12, 13, 13, 0.96);
  padding: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.dbs-mobile-menu[open] .dbs-mobile-menu__panel {
  display: block;
}

.dbs-mobile-services-menu {
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
}

.dbs-mobile-services-menu summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.82rem 1rem;
  border-radius: 4px;
  color: #e6dfd2;
  font-size: 0.875rem;
  font-weight: 780;
}

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

.dbs-mobile-services-menu summary span:last-child {
  color: var(--dbs-gold);
  font-size: 1rem;
  transition: transform 180ms var(--dbs-ease);
}

.dbs-mobile-services-menu[open] summary span:last-child {
  transform: rotate(45deg);
}

.dbs-mobile-services-menu > div {
  display: grid;
  gap: 0.2rem;
  padding: 0 0.45rem 0.65rem;
}

.dbs-mobile-menu__panel .dbs-mobile-services-menu a {
  display: block;
  padding: 0.7rem 0.85rem 0.7rem 1.35rem;
  border-left: 1px solid rgba(209, 184, 133, 0.34);
  border-radius: 0 4px 4px 0;
  color: rgba(230, 223, 210, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.dbs-mobile-menu__panel .dbs-mobile-services-menu a:hover,
.dbs-mobile-menu__panel .dbs-mobile-services-menu a[aria-current="page"] {
  color: var(--dbs-cream);
  background: rgba(246, 239, 227, 0.08);
}

.dbs-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dbs-bg);
  color: var(--dbs-cream);
}

.dbs-hero__media,
.dbs-hero__media img,
.dbs-hero__media video,
.dbs-hero__overlay,
.dbs-hero__grid {
  position: absolute;
  inset: 0;
}

.dbs-hero__media img,
.dbs-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dbs-hero__media video {
  z-index: 1;
}

.dbs-hero__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.94) 0%, rgba(7, 8, 7, 0.68) 44%, rgba(7, 8, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.95) 0%, rgba(7, 8, 7, var(--dbs-hero-overlay, 0.45)) 38%, rgba(7, 8, 7, 0.2) 100%);
}

.dbs-hero__grid {
  z-index: 3;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.dbs-hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(100%, 1680px);
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 134px 20px 32px;
}

.dbs-hero__meta-rail {
  display: none;
}

.dbs-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  color: var(--dbs-gold);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-kicker span {
  display: inline-flex;
  min-width: 34px;
  justify-content: center;
  border-right: 1px solid rgba(215, 179, 111, 0.45);
  padding-right: 12px;
  color: var(--dbs-cream);
}

.dbs-hero__layout {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.dbs-hero__copy {
  max-width: 920px;
}

.dbs-hero__title {
  max-width: 940px;
  color: var(--dbs-cream);
  font-size: 40px;
  font-weight: 880;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.dbs-hero__title-accent {
  color: var(--dbs-red);
}

.dbs-hero__mast .dbs-hero__title,
.dbs-hero__mast .dbs-hero__lede,
.dbs-hero__mast .dbs-hero__actions,
.dbs-hero__mast .dbs-hero__brief,
.dbs-hero__mast .dbs-flight-notes {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 720ms var(--dbs-ease),
    transform 720ms var(--dbs-ease);
}

.dbs-hero__mast .dbs-hero__title {
  clip-path: inset(0 0 18% 0);
  transition-delay: 90ms;
}

.dbs-hero__mast .dbs-hero__lede {
  transition-delay: 180ms;
}

.dbs-hero__mast .dbs-hero__actions {
  transition-delay: 260ms;
}

.dbs-hero__mast .dbs-hero__brief,
.dbs-hero__mast .dbs-flight-notes {
  transition-delay: 340ms;
}

.dbs-hero__mast.is-visible .dbs-hero__title,
.dbs-hero__mast.is-visible .dbs-hero__lede,
.dbs-hero__mast.is-visible .dbs-hero__actions,
.dbs-hero__mast.is-visible .dbs-hero__brief,
.dbs-hero__mast.is-visible .dbs-flight-notes {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dbs-hero__mast.is-visible .dbs-hero__title {
  clip-path: inset(0 0 0 0);
}

.dbs-hero__lede {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(246, 239, 227, 0.82);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.65;
}

.dbs-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 34px;
}

.dbs-hero__brief {
  max-width: 430px;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.1), rgba(246, 239, 227, 0.03)),
    rgba(7, 8, 7, 0.38);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.dbs-hero__brief-label {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(246, 239, 227, 0.12);
  color: var(--dbs-gold);
  font-size: 13px;
  font-weight: 840;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-hero__brief dl {
  display: grid;
}

.dbs-hero__brief div {
  display: grid;
  gap: 7px;
  padding: 18px 20px 20px;
}

.dbs-hero__brief div + div {
  border-top: 1px solid rgba(246, 239, 227, 0.1);
}

.dbs-hero__brief dt {
  color: var(--dbs-cream);
  font-size: 20px;
  font-weight: 840;
  line-height: 1.2;
}

.dbs-hero__brief dd {
  color: rgba(246, 239, 227, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.dbs-flight-notes {
  display: none;
  gap: 18px;
  max-width: 360px;
  align-self: end;
  color: var(--dbs-cream);
}

.dbs-flight-notes > p {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-flight-notes ul {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-flight-notes li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(246, 239, 227, 0.12);
  padding: 14px 0;
  color: rgba(246, 239, 227, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.dbs-flight-notes li span {
  color: var(--dbs-cream);
  font-weight: 820;
}

.dbs-hero__footer {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.dbs-capability-list {
  display: grid;
  gap: 10px;
}

.dbs-capability-list li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(246, 239, 227, 0.13);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.07);
  padding: 12px 16px;
  color: rgba(246, 239, 227, 0.9);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: blur(16px);
}

.dbs-capability-list span {
  color: var(--dbs-red);
  font-weight: 880;
}

.dbs-showreel-trigger {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 82px;
  border: 1px solid rgba(246, 239, 227, 0.2);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.42);
  color: var(--dbs-cream);
  padding: 10px 16px 10px 10px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    border-color 220ms var(--dbs-ease),
    background-color 220ms var(--dbs-ease),
    transform 220ms var(--dbs-ease);
}

.dbs-showreel-trigger:hover {
  border-color: rgba(246, 239, 227, 0.48);
  background: rgba(246, 239, 227, 0.08);
  transform: translateY(-1px);
}

.dbs-showreel-trigger__icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--dbs-bg);
  background: var(--dbs-cream);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-showreel-trigger strong,
.dbs-showreel-trigger small {
  display: block;
}

.dbs-showreel-trigger strong {
  font-size: 18px;
  line-height: 1.2;
}

.dbs-showreel-trigger small {
  margin-top: 4px;
  color: rgba(246, 239, 227, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.dbs-motion-strip {
  overflow: hidden;
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  border-bottom: 1px solid rgba(7, 8, 7, 0.16);
  color: var(--dbs-bg);
  background: var(--dbs-cream);
}

.dbs-motion-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  animation: dbs-motion-strip 34s linear infinite;
}

.dbs-motion-strip__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-motion-strip__track span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 28px;
  border-radius: 999px;
  background: var(--dbs-red);
}

.dbs-showreel-section {
  position: relative;
  overflow: hidden;
}

.dbs-showreel-section,
.dbs-services-section,
.dbs-about-section,
.dbs-clients-section,
.dbs-contact-section,
.dbs-method-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(12, 16, 15, 0.98) 0%, rgba(8, 9, 8, 0.96) 48%, rgba(18, 11, 11, 0.94) 100%),
    #080908;
}

.dbs-showreel-section::before,
.dbs-services-section::before,
.dbs-about-section::before,
.dbs-clients-section::before,
.dbs-contact-section::before,
.dbs-method-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.026) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(246, 239, 227, 0.05), transparent 34%, rgba(184, 50, 47, 0.06));
  opacity: 0.42;
  pointer-events: none;
}

.dbs-showreel-section h2,
.dbs-services-title,
.dbs-about-section h2,
.dbs-clients-section h2 {
  font-size: 34px;
  line-height: 1.08;
}

.dbs-showreel-card {
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.35);
}

.dbs-showreel-card h3 {
  max-width: 46rem;
  font-size: 30px;
  line-height: 1.12;
}

.dbs-showreel-card p {
  max-width: 36rem;
  color: rgba(246, 239, 227, 0.78);
}

.dbs-showreel-note {
  color: rgba(246, 239, 227, 0.78);
}

.dbs-section-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--dbs-dim);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-section-marker span:first-child {
  display: inline-flex;
  min-width: 34px;
  justify-content: center;
  border-right: 1px solid rgba(246, 239, 227, 0.16);
  padding-right: 14px;
  color: var(--dbs-gold);
}

.dbs-method-section {
  overflow: hidden;
  color: var(--dbs-cream);
}

.dbs-method__inner {
  position: relative;
}

.dbs-method__header {
  display: grid;
  gap: 24px;
  align-items: start;
}

.dbs-method__header h2 {
  max-width: 58rem;
  color: var(--dbs-cream);
  font-size: 34px;
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.dbs-method__body {
  display: grid;
  gap: 32px;
  margin-top: 42px;
}

.dbs-method__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #101111;
}

.dbs-method__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.dbs-method__media--portrait {
  width: min(100%, 34rem);
  min-height: 0;
  aspect-ratio: 1365 / 2048;
  justify-self: center;
  background: #090a09;
}

.dbs-method__media--portrait::before {
  content: none;
}

.dbs-method__media--portrait img {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.dbs-method__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.12), rgba(8, 9, 8, 0.82)),
    linear-gradient(90deg, rgba(8, 9, 8, 0.58), transparent 66%);
}

.dbs-method__media--portrait::after {
  z-index: 2;
}

.dbs-method__media figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 28rem;
  color: rgba(246, 239, 227, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.dbs-method__media--portrait figcaption {
  z-index: 3;
}

.dbs-method__media figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-method__steps {
  display: grid;
  border-top: 1px solid rgba(246, 239, 227, 0.14);
}

.dbs-method__steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(246, 239, 227, 0.14);
  padding: 24px 0;
}

.dbs-method__index {
  color: var(--dbs-red);
  font-size: 13px;
  font-weight: 880;
  line-height: 1.3;
}

.dbs-method__steps p {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 840;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dbs-method__steps h3 {
  margin-top: 8px;
  color: var(--dbs-cream);
  font-size: 24px;
  font-weight: 840;
  line-height: 1.15;
}

.dbs-method__steps span:not(.dbs-method__index) {
  display: block;
  max-width: 40rem;
  margin-top: 12px;
  color: rgba(246, 239, 227, 0.7);
  font-size: 16px;
  line-height: 1.62;
}

.project-card {
  border: 1px solid rgba(246, 239, 227, 0.08);
  border-radius: 8px;
  background: #111312;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(246, 239, 227, 0);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 260ms var(--dbs-ease);
}

.project-card:hover::after {
  border-color: rgba(215, 179, 111, 0.62);
}

.dbs-work-hero,
.dbs-case-hero {
  isolation: isolate;
}

.dbs-work-hero::after,
.dbs-case-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
  pointer-events: none;
}

.dbs-work-hero > .relative,
.dbs-case-hero > .relative {
  z-index: 2;
}

.dbs-work-hero h1,
.dbs-case-hero h1 {
  text-wrap: balance;
  letter-spacing: 0;
}

.dbs-work-hero p,
.dbs-case-hero p {
  letter-spacing: 0;
}

.dbs-work-hero .relative.mx-auto,
.dbs-case-hero .relative.mx-auto {
  border-left: 1px solid rgba(246, 239, 227, 0.14);
  padding-left: 20px;
}

.dbs-service-card {
  border: 1px solid rgba(246, 239, 227, 0.09);
  border-radius: 8px;
}

.dbs-service-card__eyebrow {
  color: var(--dbs-red);
}

.dbs-form-embed input,
.dbs-form-embed textarea,
.dbs-form-embed select,
.dbs-form-embed .ff-el-form-control,
.dbs-form-embed .wpforms-field input,
.dbs-form-embed .wpforms-field textarea,
.dbs-form-embed .wpforms-field select {
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.05), rgba(246, 239, 227, 0.02)),
    #0d0f0e;
}

@keyframes dbs-motion-strip {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 640px) {
  .dbs-site-header {
    padding: 14px 18px;
  }

  .dbs-site-header__bar {
    padding-inline: 24px 16px;
  }

  .dbs-site-header__logo {
    width: 148px;
  }

  .dbs-header-cta {
    display: inline-flex;
  }

  .dbs-hero__inner {
    padding: 146px 32px 36px;
  }

  .dbs-hero__title {
    font-size: 52px;
    line-height: 1.04;
  }

  .dbs-hero__lede {
    font-size: 19px;
  }

  .dbs-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dbs-capability-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dbs-showreel-section h2,
  .dbs-services-title,
  .dbs-about-section h2,
  .dbs-clients-section h2,
  .dbs-method__header h2 {
    font-size: 44px;
  }

}

@media (min-width: 1024px) {
  .dbs-site-header__bar {
    grid-template-columns: auto 1fr auto;
    min-height: 84px;
    padding-inline: 28px 14px;
  }

  .dbs-site-header.is-scrolled .dbs-site-header__bar {
    min-height: 72px;
  }

  .dbs-site-header__logo {
    width: 176px;
  }

  .dbs-site-nav {
    display: flex;
  }

  .dbs-mobile-menu {
    display: none;
  }

  .dbs-header-cta {
    min-height: 58px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .dbs-hero__inner {
    padding: 144px 56px 34px;
  }

  .dbs-hero__meta-rail {
    position: absolute;
    left: 18px;
    top: 50%;
    display: flex;
    gap: 22px;
    color: rgba(246, 239, 227, 0.5);
    font-size: 12px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
    white-space: nowrap;
    pointer-events: none;
  }

  .dbs-hero__meta-rail span + span {
    position: relative;
    padding-left: 22px;
  }

  .dbs-hero__meta-rail span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--dbs-red);
    transform: translateY(-50%);
  }

  .dbs-hero__layout {
    grid-template-columns: minmax(0, 0.92fr) 330px;
    align-items: end;
    gap: 40px;
  }

  .dbs-flight-notes {
    display: grid;
  }

  .dbs-hero__title {
    font-size: 64px;
    line-height: 1.04;
  }

  .dbs-hero__lede {
    max-width: 700px;
    font-size: 20px;
    line-height: 1.58;
  }

  .dbs-hero__footer {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 28px;
  }

  .dbs-showreel-section h2,
  .dbs-services-title,
  .dbs-about-section h2,
  .dbs-clients-section h2 {
    font-size: 54px;
    line-height: 1.08;
  }

  .dbs-showreel-card h3 {
    font-size: 42px;
    line-height: 1.12;
  }

  .dbs-method__header {
    grid-template-columns: minmax(0, 1fr);
  }

  .dbs-method__header h2 {
    font-size: 56px;
  }

  .dbs-method__body {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 54px;
    margin-top: 58px;
  }

  .dbs-method__media,
  .dbs-method__media img {
    min-height: 560px;
  }

  .dbs-method__media--portrait,
  .dbs-method__media--portrait img {
    min-height: 0;
  }

  .dbs-method__steps li {
    grid-template-columns: 64px 1fr;
    padding: 32px 0;
  }

  .dbs-method__steps h3 {
    font-size: 28px;
  }
}

@media (min-width: 1440px) {
  .dbs-hero__title {
    font-size: 70px;
  }

  .dbs-hero__inner {
    padding-inline: 70px;
  }
}

@media (max-width: 782px) {
  .admin-bar .dbs-site-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .dbs-site-header {
    padding: 10px;
  }

  .dbs-site-header__bar {
    min-height: 68px;
  }

  .dbs-site-header__logo {
    width: 104px;
  }

  .dbs-mobile-menu__summary {
    width: 46px;
    height: 46px;
  }

  .dbs-hero__inner {
    padding-top: 116px;
  }

  .dbs-hero__title {
    font-size: 34px;
  }

  .dbs-hero__brief,
  .dbs-flight-notes {
    display: none;
  }
}

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

  .dbs-hero__mast .dbs-hero__title,
  .dbs-hero__mast .dbs-hero__lede,
  .dbs-hero__mast .dbs-hero__actions,
  .dbs-hero__mast .dbs-hero__brief {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .dbs-header-cta:hover,
  .dbs-button:hover,
  .dbs-showreel-trigger:hover {
    transform: none;
  }
}

.case-body p {
  margin-bottom: 1.2em;
}

.case-body ul,
.case-body ol {
  margin: 1.2em 0;
  padding-left: 1.2em;
  list-style: disc;
}

.case-body li + li {
  margin-top: 0.45em;
}

.dbs-services-section {
  padding-top: clamp(4rem, 6vw, 5.75rem);
  padding-bottom: clamp(4rem, 6vw, 5.75rem);
}

.dbs-services-title {
  max-width: 48rem;
  font-size: clamp(2.375rem, 4.6vw, 4rem);
  line-height: 1.08;
}

.dbs-services-intro {
  max-width: 32rem;
  color: #f4efe6;
}

.dbs-services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(3rem, 5vw, 3.25rem);
}

.dbs-service-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #090a0b;
  isolation: isolate;
}

.dbs-service-card__image {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.dbs-service-card__overlay {
  background: linear-gradient(180deg, rgba(2, 2, 2, 0) 38%, rgba(2, 2, 2, 0.56) 70%, rgba(2, 2, 2, 0.96) 100%);
}

.dbs-service-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 1.5rem;
}

.dbs-service-card__copy {
  min-height: 10.9rem;
}

.dbs-service-card__eyebrow {
  color: #cc2727;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.dbs-service-card__title {
  margin-top: 0.15rem;
  color: #f4efe6;
  font-size: clamp(1.375rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.18;
}

.dbs-service-card__text {
  margin-top: 0.45rem;
  max-width: 18.5rem;
  color: rgba(244, 239, 230, 0.86);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .dbs-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-service-card,
  .dbs-service-card__content {
    min-height: 560px;
  }
}

@media (min-width: 1024px) {
  .dbs-services-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.62fr);
    align-items: start;
    gap: 2rem;
  }

  .dbs-services-intro {
    justify-self: start;
  }

  .dbs-services-grid {
    grid-template-columns: repeat(4, minmax(0, 325px));
    justify-content: center;
    gap: clamp(2rem, 3.6vw, 3.625rem);
    padding-inline: clamp(0rem, 4vw, 4.375rem);
  }

  .dbs-service-card {
    min-height: 603px;
    max-width: 325px;
  }

  .dbs-service-card__content {
    min-height: 603px;
    padding: 1.625rem;
  }

  .dbs-service-card__copy {
    min-height: 12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-service-card__image {
    transition: none;
  }

  .dbs-service-card:hover .dbs-service-card__image {
    transform: none;
  }
}

.dbs-logo-marquee {
  position: relative;
}

.dbs-logo-marquee__viewport {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.dbs-logo-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  animation: dbs-logo-marquee 44s linear infinite;
  will-change: transform;
}

.dbs-logo-marquee:hover .dbs-logo-marquee__track {
  animation-play-state: paused;
}

.dbs-logo-marquee__item {
  display: flex;
  width: clamp(156px, 14vw, 248px);
  height: clamp(94px, 8vw, 132px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fffaf0 0%, #ece6d9 100%),
    #f4efe6;
  box-shadow:
    0 18px 34px -24px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: clamp(20px, 2.4vw, 34px);
  opacity: 0.96;
  transform: translateY(0);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dbs-logo-marquee__item:hover {
  border-color: rgba(209, 184, 133, 0.42);
  background:
    linear-gradient(180deg, #fffdf6 0%, #f0eadf 100%),
    rgba(9, 10, 11, 0.36);
  opacity: 1;
  transform: translateY(-2px);
}

.dbs-logo-marquee__item.needs-light {
  border-color: rgba(244, 239, 230, 0.84);
}

.dbs-logo-marquee__item.needs-light:hover {
  background: linear-gradient(180deg, #fffdf6 0%, #f0eadf 100%), #f4efe6;
}

.dbs-logo-marquee__item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.04);
}

.dbs-logo-marquee__item.is-square img {
  max-height: 74px;
}

.dbs-logo-marquee__item.is-tall img {
  max-height: 78px;
}

.dbs-logo-marquee__item.is-wide img {
  max-height: 58px;
}

.dbs-logo-marquee__item.is-dark-card img {
  max-height: 82px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #0e1011;
  box-sizing: border-box;
}

.dbs-logo-marquee__item.is-text-logo span {
  color: #111417;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.dbs-logo-marquee__item.is-script-logo span {
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes dbs-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(9px, 1.5vw, 22px)), 0, 0);
  }
}

@media (max-width: 640px) {
  .dbs-logo-marquee__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }

  .dbs-logo-marquee__track {
    animation-duration: 36s;
  }
}

.dbs-hero__copy {
  max-width: 840px;
}

.dbs-hero__title {
  max-width: 850px;
  font-size: clamp(2rem, 8.4vw, 2.65rem);
  line-height: 1.06;
}

.dbs-hero__lede {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.62;
}

.dbs-hero-dock {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 239, 227, 0.09), rgba(246, 239, 227, 0.025) 48%, rgba(184, 50, 47, 0.08)),
    rgba(7, 8, 7, 0.52);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  padding: 10px;
  backdrop-filter: blur(22px);
}

.dbs-hero__footer.dbs-hero-dock {
  margin-top: clamp(2rem, 5vh, 4rem);
}

.dbs-hero-dock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(215, 179, 111, 0.12) 42%, transparent 72%),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.045) 0 1px, transparent 1px 72px);
  opacity: 0.42;
  pointer-events: none;
  transform: translateX(-28%);
  animation: dbs-dock-scan 7s var(--dbs-ease) infinite;
}

.dbs-hero-dock__signal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.dbs-hero-dock__signal span:first-child {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 50, 47, 0.85), rgba(215, 179, 111, 0.85), rgba(92, 125, 105, 0.85));
  opacity: 0.5;
}

.dbs-hero-dock__signal span:last-child {
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dbs-gold);
  box-shadow: 0 0 22px rgba(215, 179, 111, 0.82);
  animation: dbs-dock-pulse 5.5s linear infinite;
}

.dbs-hero-dock .dbs-capability-list,
.dbs-hero-dock .dbs-showreel-trigger {
  position: relative;
  z-index: 1;
}

.dbs-capability-list {
  gap: 8px;
}

.dbs-capability-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  min-height: 78px;
  align-content: center;
  border-color: rgba(246, 239, 227, 0.12);
  background: rgba(8, 9, 8, 0.32);
  padding: 13px 14px;
  transition:
    border-color 260ms var(--dbs-ease),
    background-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease);
}

.dbs-capability-list li:hover {
  border-color: rgba(215, 179, 111, 0.38);
  background: rgba(246, 239, 227, 0.085);
  transform: translateY(-2px);
}

.dbs-capability-list li span {
  grid-row: span 2;
  width: 34px;
  color: var(--dbs-red);
  font-size: 13px;
  line-height: 1.2;
}

.dbs-capability-list li strong {
  color: var(--dbs-cream);
  font-size: 14px;
  font-weight: 840;
  line-height: 1.2;
}

.dbs-capability-list li small {
  color: rgba(246, 239, 227, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.dbs-showreel-trigger {
  min-height: 76px;
  border-color: rgba(215, 179, 111, 0.34);
  background:
    linear-gradient(135deg, rgba(246, 239, 227, 0.13), rgba(246, 239, 227, 0.045)),
    rgba(8, 9, 8, 0.52);
  box-shadow: inset 0 1px 0 rgba(246, 239, 227, 0.08);
}

.dbs-showreel-trigger__icon {
  position: relative;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: var(--dbs-cream);
  box-shadow: 0 0 0 7px rgba(246, 239, 227, 0.08);
}

.dbs-showreel-trigger__icon::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--dbs-bg);
}

.dbs-showreel-trigger__icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(184, 50, 47, 0.28);
  border-radius: inherit;
  animation: dbs-play-ring 2.8s var(--dbs-ease) infinite;
}

.dbs-showreel-trigger small {
  margin: 0 0 5px;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.dbs-showreel-trigger strong {
  color: var(--dbs-cream);
  font-size: 16px;
  line-height: 1.2;
}

.dbs-work-hero {
  min-height: clamp(430px, 58vh, 620px);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.dbs-work-section {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.dbs-work-hero h1 {
  max-width: 54rem;
  font-size: clamp(2.2rem, 6.6vw, 3.6rem);
  line-height: 1.08;
}

.dbs-work-hero p:last-child {
  max-width: 42rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.dbs-work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.18;
  pointer-events: none;
}

.dbs-work-toolbar,
.dbs-work-section > section {
  position: relative;
  z-index: 1;
}

.dbs-work-toolbar {
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
  padding-bottom: 18px;
}

.dbs-work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dbs-work-filter__button {
  min-height: 44px;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.03);
  color: rgba(246, 239, 227, 0.74);
  cursor: pointer;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  transition:
    background-color 240ms var(--dbs-ease),
    border-color 240ms var(--dbs-ease),
    color 240ms var(--dbs-ease),
    transform 240ms var(--dbs-ease);
}

.dbs-work-filter__button:hover {
  border-color: rgba(215, 179, 111, 0.5);
  color: var(--dbs-cream);
  transform: translateY(-1px);
}

.dbs-work-filter__button.is-active {
  border-color: var(--dbs-cream);
  background: var(--dbs-cream);
  color: var(--dbs-bg);
}

.dbs-work-heading {
  display: grid;
  gap: 12px;
  align-items: end;
}

.dbs-work-heading p {
  margin-bottom: 10px;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-work-heading h2 {
  color: var(--dbs-cream);
  font-size: clamp(2rem, 5.4vw, 3.15rem);
  font-weight: 880;
  line-height: 1.08;
}

.dbs-work-heading span {
  color: rgba(246, 239, 227, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.dbs-project-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.project-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: 8px;
  background: #111312;
  box-shadow: 0 22px 46px -30px rgba(0, 0, 0, 0.76);
  isolation: isolate;
}

.project-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: inherit;
}

.project-card__link::before,
.project-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.project-card__link::before {
  background: rgba(9, 10, 11, 0.12);
  transition: background-color 360ms var(--dbs-ease);
}

.project-card__link::after {
  background: linear-gradient(180deg, transparent 22%, rgba(9, 10, 11, 0.24) 52%, rgba(9, 10, 11, 0.88) 100%);
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 720ms var(--dbs-ease),
    filter 720ms var(--dbs-ease);
}

.project-card__tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(246, 239, 227, 0.2);
  border-radius: 999px;
  background: rgba(8, 9, 8, 0.46);
  color: var(--dbs-cream);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.project-card__content {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.project-card__content h3 {
  max-width: 28rem;
  color: var(--dbs-cream);
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 840;
  line-height: 1.08;
  text-wrap: balance;
}

.project-card__content p {
  max-width: 29rem;
  margin-top: 7px;
  color: rgba(246, 239, 227, 0.68);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.42;
}

.project-card__arrow {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.1);
  transition:
    border-color 260ms var(--dbs-ease),
    background-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease);
}

.project-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--dbs-cream);
  border-right: 2px solid var(--dbs-cream);
  transform: translate(-60%, -50%) rotate(45deg);
}

.project-card:hover .project-card__image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.project-card:hover .project-card__link::before {
  background: rgba(9, 10, 11, 0.22);
}

.project-card:hover .project-card__arrow {
  border-color: rgba(215, 179, 111, 0.68);
  background: rgba(215, 179, 111, 0.2);
  transform: translateX(2px);
}

.project-card.is-filtered-out {
  filter: blur(3px) saturate(0.72);
  transform: translateY(12px) scale(0.982);
}

.dbs-work-hero--branded::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(184, 50, 47, 0.1), transparent 20%),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.035) 0 1px, transparent 1px 112px);
  opacity: 0.7;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.dbs-work-hero__brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.14);
  background: rgba(7, 8, 7, 0.42);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  color: var(--dbs-cream);
  backdrop-filter: blur(18px);
}

.dbs-work-hero__brand span,
.dbs-work-hero__brand strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-work-hero__brand span {
  border-right: 1px solid rgba(246, 239, 227, 0.12);
  color: var(--dbs-gold);
}

.dbs-work-hero__brand strong {
  color: rgba(246, 239, 227, 0.72);
}

.dbs-work-hero__eyebrow {
  margin-top: 28px;
}

.dbs-work-paths {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6.5rem) 1.25rem;
  overflow: hidden;
  border-top: 1px solid rgba(246, 239, 227, 0.08);
  border-bottom: 1px solid rgba(246, 239, 227, 0.08);
  background:
    radial-gradient(circle at 84% 18%, rgba(92, 125, 105, 0.18), transparent 26rem),
    linear-gradient(145deg, #101312, #080a09 68%);
}

.dbs-work-paths__inner {
  width: min(100%, 100rem);
  margin: 0 auto;
}

.dbs-work-paths header {
  display: grid;
  max-width: 72rem;
  gap: 0.85rem;
}

.dbs-work-paths header p,
.dbs-work-path-card__eyebrow {
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-work-paths header h2 {
  max-width: 46rem;
  color: var(--dbs-cream);
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 900;
  line-height: 1.03;
  text-wrap: balance;
}

.dbs-work-paths header > span {
  max-width: 44rem;
  color: rgba(246, 239, 227, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.dbs-work-paths__grid {
  display: grid;
  margin-top: 2rem;
  gap: 0.75rem;
}

.dbs-work-paths__grid a {
  position: relative;
  display: grid;
  min-height: 13rem;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(246, 239, 227, 0.05), rgba(246, 239, 227, 0.025));
  color: var(--dbs-cream);
  padding: 1.5rem 3.75rem 1.5rem 1.5rem;
  transition:
    border-color 260ms var(--dbs-ease),
    background-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease);
}

.dbs-work-paths__grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(215, 179, 111, 0.08), transparent 46%);
}

.dbs-work-path-card__title {
  position: relative;
  display: block;
  min-block-size: 2.24em;
  margin-top: 0.9rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.dbs-work-path-card__description {
  position: relative;
  align-self: start;
  margin-top: 0.85rem;
  color: rgba(246, 239, 227, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.dbs-work-path-card__arrow {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  color: var(--dbs-gold);
  font-size: 1.35rem;
  transition: transform 260ms var(--dbs-ease);
}

.dbs-work-paths__grid a:hover,
.dbs-work-paths__grid a:focus-visible {
  border-color: rgba(215, 179, 111, 0.56);
  background: rgba(246, 239, 227, 0.07);
  transform: translateY(-3px);
}

.dbs-work-paths__grid a:hover .dbs-work-path-card__arrow,
.dbs-work-paths__grid a:focus-visible .dbs-work-path-card__arrow {
  transform: translateX(4px);
}

.dbs-work-index {
  background:
    radial-gradient(circle at 72% 12%, rgba(92, 125, 105, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 34%, rgba(184, 50, 47, 0.1), transparent 26rem),
    linear-gradient(145deg, #070807 0%, #101111 52%, #0b0d0c 100%);
}

.dbs-work-index::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.55), rgba(7, 8, 7, 0.94)),
    var(--dbs-work-texture, none) center 28% / cover no-repeat;
  filter: saturate(0.8) contrast(1.1);
  opacity: 0.22;
  mask-image: radial-gradient(circle at 72% 16%, #000, transparent 62%);
}

.dbs-work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dbs-work-toolbar__label {
  display: none;
  min-width: 150px;
  border-right: 1px solid rgba(246, 239, 227, 0.12);
  color: var(--dbs-cream);
  padding-right: 18px;
}

.dbs-work-toolbar__label span,
.dbs-work-toolbar__label strong {
  display: block;
  line-height: 1;
}

.dbs-work-toolbar__label span {
  color: var(--dbs-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dbs-work-toolbar__label strong {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 920;
}

.project-card__index {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: inline-flex;
  min-width: 38px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.16);
  background: rgba(7, 8, 7, 0.42);
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 920;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.03) 0 1px, transparent 1px 72px);
  opacity: 0;
  transition: opacity 360ms var(--dbs-ease);
}

.project-card:hover::before {
  opacity: 1;
}

.dbs-case-study {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(92, 125, 105, 0.18), transparent 32rem),
    linear-gradient(145deg, #070807 0%, #101111 48%, #100b0b 100%);
  isolation: isolate;
}

.dbs-case-study::before {
  content: "";
  position: absolute;
  inset: 680px 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.88), rgba(7, 8, 7, 0.62), rgba(7, 8, 7, 0.94)),
    var(--project-cover, none) center top / cover no-repeat;
  filter: blur(28px) saturate(0.86) contrast(1.1);
  opacity: 0.24;
  transform: scale(1.08);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 72%, transparent);
}

.dbs-case-study > section {
  position: relative;
  z-index: 1;
}

.dbs-case-hero--branded::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.11), transparent 28%),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.035) 0 1px, transparent 1px 112px);
  opacity: 0.65;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.dbs-case-hero__brandline {
  display: inline-grid;
  grid-template-columns: auto auto;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  background: rgba(7, 8, 7, 0.38);
  color: var(--dbs-cream);
  backdrop-filter: blur(18px);
}

.dbs-case-hero__brandline span,
.dbs-case-hero__brandline strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-case-hero__brandline span {
  border-right: 1px solid rgba(246, 239, 227, 0.12);
  color: var(--dbs-gold);
}

.dbs-case-hero__brandline strong {
  color: rgba(246, 239, 227, 0.72);
}

.dbs-case-body-section,
.dbs-next-projects-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(215, 179, 111, 0.08), transparent 28rem),
    rgba(7, 8, 7, 0.72);
}

.dbs-case-texture-section {
  background:
    radial-gradient(circle at 86% 0%, rgba(92, 125, 105, 0.18), transparent 30rem),
    rgba(7, 8, 7, 0.86);
}

.dbs-case-cta-section {
  position: relative;
  overflow: hidden;
}

.dbs-case-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 10, 11, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(9, 10, 11, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.45;
}

.dbs-case-cta-section > div {
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .dbs-hero__title {
    font-size: clamp(2.45rem, 5.4vw, 3.05rem);
  }

  .dbs-hero__lede {
    font-size: 17px;
  }

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

  .dbs-work-paths {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .dbs-work-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card__arrow {
    display: block;
  }
}

@media (min-width: 1024px) {
  .dbs-work-toolbar__label {
    display: block;
  }

  .dbs-work-paths header {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.48fr);
    align-items: end;
  }

  .dbs-work-paths header p,
  .dbs-work-paths header h2 {
    grid-column: 1;
  }

  .dbs-work-paths header > span {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .dbs-work-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3rem;
  }

  .dbs-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    max-width: 940px;
  }

  .dbs-hero__title {
    font-size: clamp(2.85rem, 4.1vw, 3.25rem);
  }

  .dbs-hero__lede {
    max-width: 620px;
    font-size: 18px;
  }

  .dbs-hero__footer {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    align-items: stretch;
    gap: 10px;
  }

  .dbs-hero__footer.dbs-hero-dock {
    margin-top: clamp(2.25rem, 5.4vh, 4.5rem);
  }

  .dbs-showreel-trigger {
    min-height: 100%;
  }

  .dbs-work-hero {
    min-height: clamp(500px, 58vh, 660px);
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .dbs-work-heading {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.32fr);
  }

  .dbs-work-heading span {
    justify-self: end;
    max-width: 18rem;
    text-align: right;
  }

  .dbs-project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 300px;
    gap: 32px;
    margin-top: 42px;
  }

  .project-card {
    min-height: 0;
  }

  .project-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .project-card--tall {
    grid-row: span 2;
  }

  .project-card--feature .project-card__content h3 {
    font-size: 2rem;
  }
}

@media (min-width: 1440px) {
  .dbs-hero__title {
    font-size: 54px;
  }

  .dbs-project-grid {
    grid-auto-rows: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-hero-dock::before,
  .dbs-hero-dock__signal span:last-child,
  .dbs-showreel-trigger__icon::after {
    animation: none;
  }

  .dbs-capability-list li:hover,
  .dbs-work-filter__button:hover,
  .project-card:hover .project-card__arrow {
    transform: none;
  }

  .project-card:hover .project-card__image {
    transform: none;
  }
}

@keyframes dbs-dock-scan {
  0% {
    transform: translateX(-34%);
    opacity: 0.12;
  }

  35%,
  70% {
    opacity: 0.44;
  }

  100% {
    transform: translateX(34%);
    opacity: 0.12;
  }
}

@keyframes dbs-dock-pulse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(78vw);
  }
}

@keyframes dbs-play-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.dbs-hero__footer.dbs-hero-dock {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 258px;
  width: min(100%, 1120px);
  min-height: 104px;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(1.75rem, 4vh, 3.25rem);
  padding: 0;
  border-color: rgba(246, 239, 227, 0.18);
  background:
    linear-gradient(90deg, rgba(246, 239, 227, 0.09), rgba(246, 239, 227, 0.035) 48%, rgba(184, 50, 47, 0.08)),
    rgba(7, 8, 7, 0.58);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.dbs-hero-dock::before {
  background:
    linear-gradient(90deg, rgba(215, 179, 111, 0.12), transparent 38%, rgba(184, 50, 47, 0.08)),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.035) 0 1px, transparent 1px 96px);
  opacity: 0.18;
  animation-duration: 12s;
}

.dbs-hero-dock__signal {
  display: none;
}

.dbs-hero-dock__intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(246, 239, 227, 0.12);
  padding: 20px 22px;
}

.dbs-hero-dock__intro span {
  color: var(--dbs-gold);
  font-size: 11px;
  font-weight: 840;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-hero-dock__intro strong {
  color: rgba(246, 239, 227, 0.9);
  font-size: 20px;
  font-weight: 880;
  line-height: 1;
}

.dbs-hero-dock .dbs-capability-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.dbs-hero-dock .dbs-capability-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 5px 12px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 20px 22px;
  box-shadow: none;
  backdrop-filter: none;
}

.dbs-hero-dock .dbs-capability-list li + li {
  border-left: 1px solid rgba(246, 239, 227, 0.1);
}

.dbs-hero-dock .dbs-capability-list li:hover {
  background: rgba(246, 239, 227, 0.045);
  transform: none;
}

.dbs-hero-dock .dbs-capability-list li span {
  grid-row: span 2;
  width: 28px;
  padding-top: 2px;
  color: var(--dbs-red);
  font-size: 12px;
  font-weight: 880;
  line-height: 1.2;
}

.dbs-hero-dock .dbs-capability-list li strong {
  color: var(--dbs-cream);
  font-size: 14px;
  font-weight: 840;
  line-height: 1.18;
}

.dbs-hero-dock .dbs-capability-list li small {
  max-width: 12rem;
  color: rgba(246, 239, 227, 0.62);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.35;
}

.dbs-hero-dock .dbs-showreel-trigger {
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 100%;
  border: 0;
  border-left: 1px solid rgba(215, 179, 111, 0.24);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.13), rgba(184, 50, 47, 0.08)),
    rgba(246, 239, 227, 0.035);
  padding: 18px 20px;
}

.dbs-hero-dock .dbs-showreel-trigger:hover {
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.22), rgba(184, 50, 47, 0.12)),
    rgba(246, 239, 227, 0.06);
  transform: none;
}

.dbs-hero-dock .dbs-showreel-trigger__icon {
  width: 52px;
  height: 52px;
}

.dbs-hero-dock .dbs-showreel-trigger__icon::before {
  left: 21px;
  top: 16px;
}

.dbs-hero-dock .dbs-showreel-trigger small {
  color: var(--dbs-gold);
  font-size: 11px;
}

.dbs-hero-dock .dbs-showreel-trigger strong {
  font-size: 16px;
}

@media (max-width: 1023px) {
  .dbs-hero__footer.dbs-hero-dock {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
  }

  .dbs-hero-dock__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 239, 227, 0.1);
    padding: 16px 18px;
  }

  .dbs-hero-dock .dbs-capability-list {
    grid-template-columns: 1fr;
  }

  .dbs-hero-dock .dbs-capability-list li {
    min-height: 76px;
    padding: 16px 18px;
  }

  .dbs-hero-dock .dbs-capability-list li + li {
    border-left: 0;
    border-top: 1px solid rgba(246, 239, 227, 0.1);
  }

  .dbs-hero-dock .dbs-showreel-trigger {
    min-height: 82px;
    border-left: 0;
    border-top: 1px solid rgba(215, 179, 111, 0.22);
  }
}

/* Homepage hero: branded mission interface */
.dbs-hero--home {
  isolation: isolate;
  min-height: calc(100svh - 54px);
}

.dbs-hero--home .dbs-hero__media img,
.dbs-hero--home .dbs-hero__media video {
  filter: saturate(0.98) contrast(1.04) brightness(1.02);
  transform: scale(1.018);
}

.dbs-hero--home .dbs-hero__overlay {
  background:
    radial-gradient(circle at 72% 22%, rgba(215, 179, 111, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(7, 8, 7, 0.9) 0%, rgba(7, 8, 7, 0.58) 40%, rgba(7, 8, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.84) 0%, rgba(7, 8, 7, var(--dbs-hero-overlay, 0.38)) 44%, rgba(7, 8, 7, 0.12) 100%);
}

.dbs-hero--home .dbs-hero__grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 88%);
}

.dbs-hero--home .dbs-hero__inner {
  width: min(100%, 1760px);
  min-height: calc(100svh - 54px);
  justify-content: flex-start;
  gap: 0;
  padding: clamp(112px, 13vh, 146px) clamp(24px, 4.2vw, 72px) 64px;
}

.dbs-hero--home .dbs-hero__meta-rail {
  display: none;
}

.dbs-hero__brandline {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  max-width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  background: rgba(7, 8, 7, 0.38);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  color: var(--dbs-cream);
  backdrop-filter: blur(18px);
}

.dbs-hero__brandline strong,
.dbs-hero__brandline small {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid rgba(246, 239, 227, 0.12);
  padding: 0 14px;
  line-height: 1;
}

.dbs-hero__brandline strong {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.dbs-hero__brandline small {
  border-right: 0;
  color: rgba(246, 239, 227, 0.72);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
  white-space: nowrap;
}

.dbs-hero--home .dbs-hero__layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 32px;
  width: 100%;
  max-width: 920px;
  margin-top: 38px;
}

.dbs-hero--home .dbs-hero__copy {
  max-width: 900px;
}

.dbs-hero--home .dbs-hero__title {
  max-width: 940px;
  font-size: 38px;
  font-weight: 920;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.dbs-hero--home .dbs-hero__title-accent {
  color: #d23b36;
}

.dbs-hero--home .dbs-hero__lede {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(246, 239, 227, 0.8);
  font-size: 16px;
  font-weight: 580;
  line-height: 1.58;
}

.dbs-hero--home .dbs-hero__actions {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.dbs-hero__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  color: rgba(246, 239, 227, 0.68);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-hero__signature span {
  position: relative;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding-right: 18px;
}

.dbs-hero__signature span + span {
  padding-left: 18px;
}

.dbs-hero__signature span + span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 14px;
  background: rgba(215, 179, 111, 0.42);
}

.dbs-hero--home .dbs-hero__footer.dbs-hero-dock {
  grid-template-columns: 190px minmax(0, 1fr) 300px;
  width: 100%;
  min-height: 108px;
  border-color: rgba(246, 239, 227, 0.2);
  background:
    linear-gradient(90deg, rgba(246, 239, 227, 0.08), rgba(246, 239, 227, 0.026) 48%, rgba(92, 125, 105, 0.08)),
    rgba(7, 8, 7, 0.68);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.4);
}

.dbs-hero--home .dbs-hero-dock__intro {
  padding: 21px 24px;
}

.dbs-hero-dock__intro small {
  color: rgba(246, 239, 227, 0.58);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.dbs-hero--home .dbs-hero-dock__intro strong {
  font-size: 24px;
  text-transform: uppercase;
}

.dbs-hero--home .dbs-hero-dock .dbs-capability-list li {
  padding: 20px 24px;
}

.dbs-hero--home .dbs-hero-dock .dbs-capability-list li:hover {
  background:
    linear-gradient(180deg, rgba(215, 179, 111, 0.08), transparent),
    rgba(246, 239, 227, 0.04);
}

.dbs-hero--home .dbs-hero-dock .dbs-capability-list li strong {
  font-size: 15px;
}

.dbs-hero--home .dbs-hero-dock .dbs-showreel-trigger {
  grid-template-columns: 62px minmax(0, 1fr);
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.18), rgba(184, 50, 47, 0.08)),
    rgba(246, 239, 227, 0.05);
}

.dbs-hero--home .dbs-hero-dock .dbs-showreel-trigger strong {
  font-size: 18px;
}

.dbs-hero__mast .dbs-hero__brandline,
.dbs-hero__mast .dbs-hero__signature {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 720ms var(--dbs-ease),
    transform 720ms var(--dbs-ease);
}

.dbs-hero__mast .dbs-hero__brandline {
  transition-delay: 40ms;
}

.dbs-hero__mast .dbs-hero__signature {
  transition-delay: 320ms;
}

.dbs-hero__mast.is-visible .dbs-hero__brandline,
.dbs-hero__mast.is-visible .dbs-hero__signature {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .dbs-hero--home .dbs-hero__title {
    font-size: 44px;
  }

  .dbs-hero--home .dbs-hero__lede {
    font-size: 17px;
  }
}

@media (min-width: 1280px) {
  .dbs-hero--home .dbs-hero__title {
    font-size: 48px;
  }
}

@media (min-width: 1600px) {
  .dbs-hero--home .dbs-hero__title {
    font-size: 54px;
  }
}

@media (max-width: 1180px) {
  .dbs-hero--home .dbs-hero__layout {
    grid-template-columns: 1fr;
    max-width: 980px;
    gap: 28px;
  }

  .dbs-hero--home .dbs-hero__footer.dbs-hero-dock {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .dbs-hero--home .dbs-hero__footer.dbs-hero-dock {
    display: none;
  }
}

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

  .dbs-hero--home .dbs-hero__inner {
    gap: 0;
    min-height: calc(100svh - 58px);
    padding: 106px 18px 54px;
  }

  .dbs-hero__brandline {
    grid-template-columns: auto;
  }

  .dbs-hero__brandline small {
    display: none;
  }

  .dbs-hero--home .dbs-hero__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .dbs-hero--home .dbs-hero__lede {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.54;
  }

  .dbs-hero--home .dbs-hero__actions {
    flex-direction: column;
    margin-top: 30px;
  }

  .dbs-hero__signature {
    display: none;
  }

  .dbs-hero--home .dbs-hero__footer.dbs-hero-dock {
    display: none;
  }
}

/* Homepage: operator profile and continuous story background */
.dbs-operator__showreel:focus-visible {
  outline: 2px solid var(--dbs-cream);
  outline-offset: -4px;
}

.dbs-operator__showreel-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--dbs-bg);
  background: var(--dbs-cream);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.dbs-operator__showreel-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.dbs-operator__showreel small,
.dbs-operator__showreel strong {
  display: block;
}

.dbs-operator__showreel small {
  margin-bottom: 5px;
  color: var(--dbs-gold);
  font-size: 10px;
  font-weight: 880;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-operator__showreel strong {
  color: var(--dbs-cream);
  font-size: 15px;
  font-weight: 860;
  line-height: 1.15;
}

.dbs-operator-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 7rem;
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 14% 30%, rgba(92, 125, 105, 0.14), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(184, 50, 47, 0.1), transparent 25%),
    linear-gradient(115deg, #0c100f 0%, #080908 52%, #120b0b 100%);
}

.dbs-operator-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.025) 0 1px, transparent 1px 96px);
  opacity: 0.44;
}

.dbs-operator__inner {
  width: min(100%, 106rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.25rem, 3vw, 3.25rem);
}

.dbs-operator__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  scroll-margin-top: 7rem;
}

.dbs-operator__portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background: #101111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.dbs-operator__portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 4px;
  pointer-events: none;
}

.dbs-operator__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 700ms var(--dbs-ease), filter 700ms var(--dbs-ease);
}

.dbs-operator__portrait:hover img {
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.025);
}

.dbs-operator__portrait-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.08) 44%, rgba(7, 8, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 8, 7, 0.24), transparent 46%);
  pointer-events: none;
}

.dbs-operator__portrait figcaption {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 34px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 68px);
  border-left: 2px solid var(--dbs-gold);
  padding: 7px 0 7px 13px;
}

.dbs-operator__portrait figcaption span {
  color: var(--dbs-gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-operator__portrait figcaption strong {
  color: var(--dbs-cream);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.25;
}

.dbs-operator__showreel {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 190px;
  border: 1px solid rgba(246, 239, 227, 0.23);
  border-radius: 8px;
  color: var(--dbs-cream);
  background: rgba(7, 8, 7, 0.72);
  padding: 10px 14px 10px 10px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: border-color 220ms var(--dbs-ease), background-color 220ms var(--dbs-ease), transform 220ms var(--dbs-ease);
}

.dbs-operator__showreel:hover {
  border-color: rgba(215, 179, 111, 0.6);
  background: rgba(7, 8, 7, 0.9);
  transform: translateY(-2px);
}

.dbs-operator__showreel-icon {
  width: 46px;
  height: 46px;
}

.dbs-operator__copy {
  max-width: 48rem;
}

.dbs-operator__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 880;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-operator__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.dbs-operator__copy h2 {
  max-width: 46rem;
  color: var(--dbs-cream);
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.dbs-operator__lead {
  max-width: 42rem;
  margin-top: clamp(1.4rem, 2.5vw, 2.1rem);
  color: rgba(246, 239, 227, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 520;
  line-height: 1.7;
}

.dbs-operator__workflow {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(246, 239, 227, 0.18);
}

.dbs-operator__workflow > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  padding: 20px 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.13);
}

.dbs-operator__workflow dt {
  color: var(--dbs-cream);
  font-size: 14px;
  font-weight: 840;
  line-height: 1.5;
}

.dbs-operator__workflow dd {
  color: rgba(246, 239, 227, 0.64);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.58;
}

.dbs-operator__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dbs-home-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(92, 125, 105, 0.14), transparent 30%),
    radial-gradient(circle at 88% 66%, rgba(184, 50, 47, 0.1), transparent 30%),
    linear-gradient(115deg, #0c100f 0%, #080908 52%, #120b0b 100%);
}

.dbs-home-story::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.024) 0 1px, transparent 1px 96px);
  opacity: 0.42;
}

.dbs-home-story .dbs-operator-section,
.dbs-home-story .dbs-clients-section--early {
  background: transparent;
}

.dbs-home-story .dbs-operator-section::before,
.dbs-home-story .dbs-clients-section--early::before {
  content: none;
}

.dbs-clients-section--early {
  padding-top: clamp(3.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(3.75rem, 6vw, 6rem);
}

.dbs-clients-intro {
  border-top: 1px solid rgba(246, 239, 227, 0.16);
  padding-top: clamp(1.5rem, 2.5vw, 2.4rem);
}

.dbs-clients-intro__eyebrow {
  margin-bottom: clamp(1.5rem, 2.8vw, 2.5rem);
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-clients-intro__content {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: end;
}

.dbs-clients-section--early .dbs-clients-intro h2 {
  max-width: 47rem;
  color: var(--dbs-cream);
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dbs-clients-intro__content > p {
  max-width: 36rem;
  color: rgba(246, 239, 227, 0.66);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .dbs-operator__grid {
    grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1fr);
  }

  .dbs-operator__portrait {
    max-height: 680px;
  }

  .dbs-clients-intro__content {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.62fr);
  }

  .dbs-clients-intro__content > p {
    justify-self: end;
    padding-bottom: 0.35rem;
  }
}

@media (max-width: 1023px) {
  .dbs-operator__portrait {
    width: min(100%, 42rem);
  }
}

@media (max-width: 639px) {
  .dbs-operator__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .dbs-operator__portrait::before {
    inset: 10px;
  }

  .dbs-operator__portrait figcaption {
    top: 24px;
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .dbs-operator__showreel {
    right: 20px;
    bottom: 20px;
  }

  .dbs-operator__workflow > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .dbs-operator__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dbs-operator__actions .dbs-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-operator__portrait img,
  .dbs-operator__showreel {
    transition: none;
  }

  .dbs-operator__portrait:hover img,
  .dbs-operator__showreel:hover {
    transform: none;
  }
}

.dbs-project-film-section {
  position: relative;
  overflow: hidden;
}

.dbs-project-film-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(92, 125, 105, 0.12), transparent 48%, rgba(184, 50, 47, 0.07));
  background-size: 88px 88px, 88px 88px, auto;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.dbs-project-film-heading,
.dbs-project-shot-viewer {
  position: relative;
  z-index: 1;
}

.dbs-project-film-inner {
  max-width: min(100%, 88rem);
}

.dbs-project-film-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.dbs-project-film-heading > p {
  width: 100%;
  max-width: 54rem;
}

.dbs-project-shot-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.125rem, 2vw, 1.75rem);
  align-items: stretch;
}

.dbs-project-shot-stage {
  position: relative;
  min-height: 330px;
  height: clamp(330px, 37vw, 540px);
  max-height: 58vh;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.13);
  border-radius: 8px;
  background: #111312;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.dbs-project-shot-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.08), transparent 28%, transparent 74%, rgba(7, 8, 7, 0.12));
}

.dbs-project-shot-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition:
    opacity 320ms var(--dbs-ease),
    visibility 320ms var(--dbs-ease);
  will-change: opacity;
}

.dbs-project-shot-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.dbs-project-shot-panel__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.dbs-project-shot-stage__hud,
.dbs-project-shot-stage__full,
.dbs-project-shot-panel__caption {
  position: absolute;
  z-index: 4;
}

.dbs-project-shot-stage__hud {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 999px;
  background: rgba(7, 8, 7, 0.48);
  padding: 0 14px;
  color: rgba(246, 239, 227, 0.76);
  font-size: 11px;
  font-weight: 840;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.dbs-project-shot-stage__hud strong {
  color: var(--dbs-gold);
}

.dbs-project-shot-stage__full {
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(246, 239, 227, 0.22);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.9);
  padding: 0 16px;
  color: var(--dbs-bg);
  font-size: 12px;
  font-weight: 860;
  line-height: 1;
  transition:
    background-color 220ms var(--dbs-ease),
    border-color 220ms var(--dbs-ease),
    transform 220ms var(--dbs-ease);
}

.dbs-project-shot-stage__full:hover {
  border-color: var(--dbs-gold);
  background: var(--dbs-gold);
  transform: translateY(-1px);
}

.dbs-project-shot-panel__caption {
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  max-width: 34rem;
}

.dbs-project-shot-panel__caption span {
  grid-row: span 2;
  color: var(--dbs-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.dbs-project-shot-panel__caption strong {
  color: var(--dbs-cream);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.dbs-project-shot-panel__caption small {
  max-width: 27rem;
  color: rgba(246, 239, 227, 0.72);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.45;
}

.dbs-project-shot-menu {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(246, 239, 227, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.06), rgba(246, 239, 227, 0.025)),
    #0e1011;
  padding: 22px;
}

.dbs-project-shot-menu__eyebrow {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-shot-menu h3 {
  margin-top: 12px;
  color: var(--dbs-cream);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.dbs-project-shot-menu__items {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.dbs-project-shot-menu__full {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 1px solid rgba(246, 239, 227, 0.22);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.9);
  padding: 0 16px;
  color: var(--dbs-bg);
  font-size: 12px;
  font-weight: 860;
  line-height: 1;
  transition: background-color 220ms var(--dbs-ease), border-color 220ms var(--dbs-ease);
}

.dbs-project-shot-menu__full:hover,
.dbs-project-shot-menu__full:focus-visible {
  border-color: var(--dbs-gold);
  background: var(--dbs-gold);
  outline: none;
}

.dbs-project-shot-menu__item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  width: 100%;
  min-height: 82px;
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.025);
  padding: 15px;
  color: var(--dbs-cream);
  text-align: left;
  transition:
    background-color 220ms var(--dbs-ease),
    border-color 220ms var(--dbs-ease),
    transform 220ms var(--dbs-ease),
    box-shadow 220ms var(--dbs-ease);
}

.dbs-project-shot-menu__item:hover,
.dbs-project-shot-menu__item:focus-visible {
  border-color: rgba(215, 179, 111, 0.38);
  background: rgba(246, 239, 227, 0.055);
  transform: translateY(-1px);
  outline: none;
}

.dbs-project-shot-menu__item.is-active {
  border-color: rgba(215, 179, 111, 0.58);
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.13), rgba(184, 50, 47, 0.08)),
    rgba(246, 239, 227, 0.045);
  box-shadow: inset 3px 0 0 rgba(215, 179, 111, 0.72);
}

.dbs-project-shot-menu__number {
  color: var(--dbs-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.dbs-project-shot-menu__item strong {
  display: block;
  color: var(--dbs-cream);
  font-size: 15px;
  font-weight: 860;
  line-height: 1.2;
}

.dbs-project-shot-menu__item small {
  display: block;
  margin-top: 6px;
  color: rgba(246, 239, 227, 0.62);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.35;
}

.dbs-project-editorial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(88, 117, 96, 0.2), transparent 34rem),
    radial-gradient(circle at 90% 82%, rgba(139, 76, 47, 0.14), transparent 32rem),
    linear-gradient(145deg, #070908 0%, #0b0d0c 52%, #0d0908 100%);
  color: var(--dbs-cream);
}

.dbs-project-editorial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.035) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.dbs-project-editorial-inner {
  position: relative;
  z-index: 1;
  max-width: 92rem;
}

.dbs-project-editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.58fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: end;
}

.dbs-project-editorial-heading > div > p {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-editorial-heading h2 {
  max-width: 61rem;
  margin-top: 18px;
  color: var(--dbs-cream);
  font-size: clamp(2.55rem, 5.2vw, 5.15rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.99;
  text-wrap: balance;
}

.dbs-project-editorial-heading__lead {
  max-width: 34rem;
  border-left: 1px solid rgba(215, 179, 111, 0.44);
  padding-left: clamp(1.25rem, 2.4vw, 2rem);
  color: rgba(246, 239, 227, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.dbs-project-editorial-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  min-height: 690px;
  margin-top: clamp(3.25rem, 6vw, 5.25rem);
  overflow: hidden;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
  border-bottom: 1px solid rgba(246, 239, 227, 0.16);
  background: rgba(246, 239, 227, 0.018);
}

.dbs-project-editorial-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-right: 1px solid rgba(246, 239, 227, 0.14);
  isolation: isolate;
}

.dbs-project-editorial-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  filter: saturate(0.86) contrast(1.04) brightness(0.86);
  transform: scale(1.015);
  transition: transform 1000ms var(--dbs-ease), filter 600ms var(--dbs-ease);
}

.dbs-project-editorial-media:hover img {
  filter: saturate(0.94) contrast(1.03) brightness(0.9);
  transform: scale(1.035);
}

.dbs-project-editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.08) 26%, rgba(5, 7, 6, 0.84) 100%),
    linear-gradient(90deg, rgba(5, 7, 6, 0.42), transparent 58%);
  pointer-events: none;
}

.dbs-project-editorial-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.75rem, 4vw, 3.5rem);
  left: clamp(1.5rem, 4vw, 3.5rem);
}

.dbs-project-editorial-media figcaption span {
  display: block;
  color: var(--dbs-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-editorial-media figcaption strong {
  display: block;
  max-width: 36rem;
  margin-top: 15px;
  color: var(--dbs-cream);
  font-size: clamp(1.9rem, 3.6vw, 3.75rem);
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.dbs-project-editorial-story {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(2rem, 4.2vw, 4.5rem);
  background:
    linear-gradient(160deg, rgba(215, 179, 111, 0.07), transparent 38%),
    rgba(9, 10, 9, 0.72);
}

.dbs-project-editorial-role {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 28px;
}

.dbs-project-editorial-role span {
  color: rgba(215, 179, 111, 0.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-project-editorial-role strong {
  max-width: 16rem;
  color: var(--dbs-cream);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.28;
  text-align: right;
}

.dbs-project-editorial-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(246, 239, 227, 0.13);
}

.dbs-project-editorial-notes li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
}

.dbs-project-editorial-notes li > span {
  padding-top: 5px;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.dbs-project-editorial-notes h3 {
  color: var(--dbs-cream);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 880;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.dbs-project-editorial-notes p {
  margin-top: 10px;
  color: rgba(246, 239, 227, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

.dbs-project-editorial-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: auto;
  padding-top: 28px;
  color: rgba(246, 239, 227, 0.68);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dbs-project-editorial-signature span {
  display: inline-flex;
  align-items: center;
}

.dbs-project-editorial-signature span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 999px;
  background: var(--dbs-gold);
}

.dbs-project-editorial-author {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(246, 239, 227, 0.13);
  padding-top: 1.5rem;
}

.dbs-project-editorial-author__identity {
  display: grid;
  gap: 0.3rem;
  color: var(--dbs-cream);
}

.dbs-project-editorial-author__identity span {
  color: var(--dbs-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-project-editorial-author__identity strong {
  font-size: 1.08rem;
  font-weight: 880;
  line-height: 1.2;
}

.dbs-project-editorial-author__identity small {
  color: rgba(246, 239, 227, 0.6);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.45;
}

.dbs-project-editorial-author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dbs-project-editorial-author__links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 999px;
  padding: 0 0.78rem;
  color: rgba(246, 239, 227, 0.76);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  transition: border-color 220ms var(--dbs-ease), color 220ms var(--dbs-ease), background-color 220ms var(--dbs-ease);
}

.dbs-project-editorial-author__links a:hover,
.dbs-project-editorial-author__links a:focus-visible {
  border-color: rgba(215, 179, 111, 0.5);
  background: rgba(215, 179, 111, 0.08);
  color: var(--dbs-cream);
}

.dbs-project-briefing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 125, 105, 0.2), transparent 30rem),
    linear-gradient(135deg, #080908 0%, #101111 54%, #120b0b 100%);
  color: var(--dbs-cream);
}

.dbs-project-briefing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.dbs-project-briefing-inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 88rem);
}

.dbs-project-briefing-heading {
  display: grid;
  gap: 14px;
  max-width: 62rem;
}

.dbs-project-briefing-heading p {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-briefing-heading h2 {
  color: var(--dbs-cream);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.04;
}

.dbs-project-briefing-heading span {
  max-width: 42rem;
  color: rgba(246, 239, 227, 0.68);
  font-size: 18px;
  line-height: 1.62;
}

.dbs-project-briefing-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.dbs-project-briefing-visual {
  position: sticky;
  top: 112px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 8px;
  background: #101111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.dbs-project-briefing-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.015);
  transition: transform 900ms var(--dbs-ease);
}

.dbs-project-briefing-visual:hover img {
  transform: scale(1.045);
}

.dbs-project-briefing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.14), rgba(7, 8, 7, 0.5) 46%, rgba(7, 8, 7, 0.94)),
    linear-gradient(90deg, rgba(7, 8, 7, 0.56), transparent 70%);
  pointer-events: none;
}

.dbs-project-briefing-visual__content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 192px;
  left: 24px;
}

.dbs-project-briefing-visual__content p {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-briefing-visual__content h3 {
  margin-top: 12px;
  color: var(--dbs-cream);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.dbs-project-briefing-visual__content span {
  display: block;
  margin-top: 14px;
  max-width: 26rem;
  color: rgba(246, 239, 227, 0.72);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.55;
}

.dbs-project-briefing-meta {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.dbs-project-briefing-meta div {
  min-height: 72px;
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.54);
  padding: 12px;
  backdrop-filter: blur(18px);
}

.dbs-project-briefing-meta dt {
  color: rgba(215, 179, 111, 0.86);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-project-briefing-meta dd {
  margin: 8px 0 0;
  color: var(--dbs-cream);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
}

.dbs-project-briefing-content {
  display: grid;
  gap: 18px;
}

.dbs-project-briefing-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
}

.dbs-project-briefing-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 239, 227, 0.08), rgba(246, 239, 227, 0.025)),
    #101111;
  padding: clamp(1.125rem, 2vw, 1.5rem);
  transition:
    border-color 260ms var(--dbs-ease),
    background-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease);
}

.dbs-project-briefing-card::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -30%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 179, 111, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.dbs-project-briefing-card:hover,
.dbs-project-briefing-step:hover {
  border-color: rgba(215, 179, 111, 0.38);
  transform: translateY(-2px);
}

.dbs-project-briefing-card--lead {
  grid-row: span 2;
  min-height: 458px;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.13), rgba(184, 50, 47, 0.08)),
    #101111;
}

.dbs-project-briefing-card span {
  color: var(--dbs-red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.dbs-project-briefing-card h3 {
  margin-top: 22px;
  color: var(--dbs-cream);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.dbs-project-briefing-card--lead h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.dbs-project-briefing-card p {
  margin-top: 16px;
  max-width: 40rem;
  color: rgba(246, 239, 227, 0.72);
  font-size: 16px;
  line-height: 1.66;
}

.dbs-project-briefing-card--lead p {
  font-size: 18px;
  line-height: 1.72;
}

.dbs-project-briefing-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dbs-project-briefing-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 164px;
  border: 1px solid rgba(246, 239, 227, 0.1);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.035);
  padding: 18px;
  transition:
    border-color 260ms var(--dbs-ease),
    background-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease);
}

.dbs-project-briefing-step span {
  color: var(--dbs-gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.dbs-project-briefing-step h3 {
  color: var(--dbs-cream);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.dbs-project-briefing-step p {
  margin-top: 10px;
  color: rgba(246, 239, 227, 0.66);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.52;
}

.dbs-project-briefing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  padding-top: 18px;
}

.dbs-project-briefing-tags span {
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.045);
  color: rgba(246, 239, 227, 0.78);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

@media (min-width: 1024px) {
  .dbs-project-shot-menu {
    position: sticky;
    top: 112px;
  }
}

@media (max-width: 1023px) {
  .dbs-project-film-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dbs-project-film-heading > p {
    max-width: 48rem;
  }

  .dbs-project-editorial-heading,
  .dbs-project-editorial-canvas {
    grid-template-columns: 1fr;
  }

  .dbs-project-editorial-heading {
    gap: 2rem;
  }

  .dbs-project-editorial-heading__lead {
    max-width: 46rem;
  }

  .dbs-project-editorial-canvas,
  .dbs-project-editorial-media {
    min-height: 0;
  }

  .dbs-project-editorial-media {
    min-height: 540px;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 239, 227, 0.14);
  }

  .dbs-project-briefing-board,
  .dbs-project-shot-viewer {
    grid-template-columns: 1fr;
  }

  .dbs-project-briefing-visual {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .dbs-project-briefing-cards,
  .dbs-project-briefing-flow {
    grid-template-columns: 1fr;
  }

  .dbs-project-briefing-card--lead {
    min-height: 320px;
  }

  .dbs-project-shot-stage {
    height: clamp(280px, 58vw, 480px);
    max-height: none;
  }

  .dbs-project-shot-menu {
    min-height: 0;
  }

  .dbs-project-shot-menu__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

}

@media (max-width: 640px) {
  .dbs-project-editorial-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    line-height: 1.01;
  }

  .dbs-project-editorial-heading__lead {
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .dbs-project-editorial-canvas {
    margin-top: 2.75rem;
  }

  .dbs-project-editorial-media {
    min-height: 420px;
  }

  .dbs-project-editorial-media figcaption strong {
    font-size: 2rem;
  }

  .dbs-project-editorial-story {
    padding: 1.75rem 1.25rem;
  }

  .dbs-project-editorial-role {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .dbs-project-editorial-role strong {
    text-align: left;
  }

  .dbs-project-editorial-notes li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 1.5rem 0;
  }

  .dbs-project-editorial-notes p {
    font-size: 14px;
    line-height: 1.58;
  }

  .dbs-project-editorial-signature {
    padding-top: 24px;
  }

  .dbs-project-briefing-heading h2 {
    font-size: 34px;
  }

  .dbs-project-briefing-heading span {
    font-size: 15px;
  }

  .dbs-project-briefing-visual {
    min-height: 430px;
  }

  .dbs-project-briefing-visual__content {
    right: 18px;
    bottom: 182px;
    left: 18px;
  }

  .dbs-project-briefing-visual__content span {
    display: none;
  }

  .dbs-project-briefing-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-project-briefing-meta div {
    min-height: 58px;
  }

  .dbs-project-briefing-card,
  .dbs-project-briefing-card--lead {
    min-height: 0;
  }

  .dbs-project-briefing-card p {
    font-size: 14px;
  }

  .dbs-project-briefing-card--lead p {
    font-size: 15px;
  }

  .dbs-project-briefing-step {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 15px;
  }

  .dbs-project-briefing-tags span {
    white-space: normal;
    line-height: 1.2;
  }

  .dbs-project-shot-stage {
    min-height: 260px;
    height: 68vw;
  }

  .dbs-project-shot-stage__hud {
    top: 12px;
    left: 12px;
  }

  .dbs-project-shot-stage__full {
    right: 12px;
    top: 12px;
    bottom: auto;
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .dbs-project-shot-panel__caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .dbs-project-shot-panel__caption strong {
    font-size: 21px;
  }

  .dbs-project-shot-panel__caption small {
    max-width: 15rem;
    font-size: 12px;
  }

  .dbs-project-shot-menu {
    padding: 16px;
  }

  .dbs-project-shot-menu__items {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .dbs-project-editorial-author__links a,
  .dbs-project-editorial-media img,
  .dbs-project-briefing-visual img,
  .dbs-project-briefing-card,
  .dbs-project-briefing-step,
  .dbs-project-shot-panel,
  .dbs-project-shot-stage__full,
  .dbs-project-shot-menu__item {
    transition: none;
  }

  .dbs-project-shot-stage__full:hover,
  .dbs-project-shot-menu__item:hover,
  .dbs-project-briefing-card:hover,
  .dbs-project-briefing-step:hover {
    transform: none;
  }

  .dbs-project-briefing-visual:hover img {
    transform: none;
  }

  .dbs-project-editorial-media:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-logo-marquee__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dbs-logo-marquee__track {
    animation: none;
  }

  .dbs-logo-marquee__item {
    transition: none;
  }
}

.dbs-form-embed {
  color: #f4efe6;
}

.dbs-form-embed form,
.dbs-form-embed .ff-el-group,
.dbs-form-embed .wpforms-field {
  margin: 0 0 1.25rem;
}

.dbs-form-embed input,
.dbs-form-embed textarea,
.dbs-form-embed select,
.dbs-form-embed .ff-el-form-control,
.dbs-form-embed .wpforms-field input,
.dbs-form-embed .wpforms-field textarea,
.dbs-form-embed .wpforms-field select {
  min-height: 60px;
  width: 100%;
  border: 1px solid rgba(244, 239, 230, 0.15);
  border-radius: 6px;
  background: #0e1011;
  color: #f4efe6;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.dbs-form-embed textarea,
.dbs-form-embed .wpforms-field textarea {
  min-height: 150px;
}

.dbs-form-embed input:focus,
.dbs-form-embed textarea:focus,
.dbs-form-embed select:focus {
  border-color: #d1b885;
}

.dbs-form-embed label,
.dbs-form-embed .ff-el-input--label label,
.dbs-form-embed .wpforms-field-label {
  color: #e6dfd2;
  font-weight: 700;
}

.dbs-form-embed button,
.dbs-form-embed input[type='submit'],
.dbs-form-embed .ff-btn-submit,
.dbs-form-embed .wpforms-submit {
  min-height: 62px;
  border: 0;
  border-radius: 6px;
  background: #f4efe6;
  color: #090a0b;
  padding: 0 2rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.dbs-form-embed button:hover,
.dbs-form-embed input[type='submit']:hover,
.dbs-form-embed .ff-btn-submit:hover,
.dbs-form-embed .wpforms-submit:hover {
  background: #d1b885;
  transform: translateY(-1px);
}

/* Contact page */
.dbs-contact-page {
  overflow: hidden;
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 78% 12%, rgba(92, 125, 105, 0.2), transparent 34rem),
    radial-gradient(circle at 12% 36%, rgba(184, 50, 47, 0.1), transparent 28rem),
    var(--dbs-bg);
}

.dbs-contact-hero {
  position: relative;
  isolation: isolate;
}

.dbs-contact-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.024) 0 1px, transparent 1px 96px);
  opacity: 0.4;
}

.dbs-contact-hero {
  min-height: 100vh;
  padding: clamp(8.5rem, 11vw, 10.5rem) clamp(1.25rem, 3vw, 3.25rem) clamp(4.5rem, 7vw, 7rem);
}

.dbs-contact-hero__inner {
  width: min(100%, 100rem);
  margin: 0 auto;
}

.dbs-contact-hero__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.dbs-contact-eyebrow {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 880;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-contact-direct {
  display: grid;
  gap: 0.55rem;
  max-width: none;
  margin-top: 1.75rem;
  border-top: 1px solid var(--dbs-line);
  padding-top: 1.5rem;
}

.dbs-contact-direct span,
.dbs-contact-direct small {
  color: var(--dbs-dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dbs-contact-direct a {
  width: fit-content;
  color: var(--dbs-cream);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 840;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
  transition: color 220ms var(--dbs-ease);
}

.dbs-contact-direct a:hover {
  color: var(--dbs-gold);
}

.dbs-contact-hero__portrait {
  position: relative;
  width: min(100%, 34rem);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--dbs-line);
  border-radius: 8px;
  background: var(--dbs-panel);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
}

.dbs-contact-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dbs-contact-hero__portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 8, 7, 0.88) 100%);
}

.dbs-contact-hero__portrait figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.dbs-contact-hero__portrait figcaption span,
.dbs-contact-hero__portrait figcaption strong {
  display: block;
}

.dbs-contact-hero__portrait figcaption span {
  margin-bottom: 0.35rem;
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.dbs-contact-hero__portrait figcaption strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.dbs-contact-form-card__heading h1 {
  margin-top: 1.1rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dbs-contact-form-card {
  border: 1px solid var(--dbs-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 239, 227, 0.055), transparent 48%),
    rgba(7, 8, 7, 0.76);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  padding: clamp(1.5rem, 4vw, 3.75rem);
}

.dbs-contact-form-card__heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.dbs-contact-form-card__heading h1 {
  max-width: 48rem;
  font-size: clamp(2.5rem, 4.4vw, 4.9rem);
}

.dbs-contact-form-card__heading > p:last-child {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: rgba(246, 239, 227, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.dbs-contact-form-card .dbs-form-embed input,
.dbs-contact-form-card .dbs-form-embed textarea,
.dbs-contact-form-card .dbs-form-embed select,
.dbs-contact-form-card .dbs-form-embed .ff-el-form-control {
  background: rgba(246, 239, 227, 0.035);
}

.dbs-contact-form-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--dbs-line);
  padding-top: 1.5rem;
}

.dbs-contact-form-card__tags span {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 999px;
  color: rgba(246, 239, 227, 0.7);
  padding: 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 760;
}

@media (min-width: 900px) {
  .dbs-contact-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.68fr);
  }

  .dbs-contact-hero__portrait {
    position: sticky;
    top: 7.5rem;
    justify-self: end;
  }
}

@media (max-width: 899px) {
  .dbs-contact-hero__portrait {
    justify-self: start;
  }
}

@media (max-width: 639px) {
  .dbs-contact-hero {
    padding-top: 7.5rem;
  }

  .dbs-contact-form-card__heading h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .dbs-contact-hero__portrait {
    width: 100%;
  }

  .dbs-contact-form-card {
    margin-inline: -0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-contact-direct a,
  .dbs-contact-form-card .dbs-form-embed button,
  .dbs-contact-form-card .dbs-form-embed input[type='submit'] {
    transition: none;
  }
}

.dbs-site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.dbs-mobile-menu__panel a[aria-current="page"] {
  background: rgba(246, 239, 227, 0.1);
  color: var(--dbs-cream);
}

.dbs-gear-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 8%, rgba(92, 125, 105, 0.16), transparent 34rem),
    radial-gradient(circle at 16% 18%, rgba(184, 50, 47, 0.08), transparent 30rem),
    var(--dbs-bg);
}

.dbs-gear-intro {
  position: relative;
  padding: 8.6rem 1.25rem 2.35rem;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.46), rgba(7, 8, 7, 0.9)),
    linear-gradient(135deg, rgba(246, 239, 227, 0.035), rgba(92, 125, 105, 0.055) 58%, rgba(184, 50, 47, 0.04));
}

.dbs-gear-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.04) 0 1px, transparent 1px 108px),
    linear-gradient(90deg, rgba(215, 179, 111, 0.1), transparent 26%, rgba(92, 125, 105, 0.08) 78%, transparent);
  opacity: 0.55;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.dbs-gear-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 94rem);
  margin: 0 auto;
  gap: 1.55rem;
}

.dbs-gear-intro__meta {
  display: inline-grid;
  width: fit-content;
  grid-template-columns: auto auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 239, 227, 0.18);
}

.dbs-gear-intro__meta span,
.dbs-gear-intro__meta strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px 0 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.dbs-gear-intro__meta span {
  margin-right: 12px;
  color: var(--dbs-gold);
}

.dbs-gear-intro__meta strong {
  color: rgba(246, 239, 227, 0.74);
}

.dbs-gear-eyebrow,
.dbs-gear-identity__eyebrow,
.dbs-gear-identity__index,
.dbs-gear-media-card__caption span {
  color: var(--dbs-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-gear-intro h1 {
  max-width: 46rem;
  margin-top: 0.8rem;
  color: var(--dbs-cream);
  font-size: clamp(2.15rem, 6.2vw, 4.7rem);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.dbs-gear-intro__copy > p:last-child {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(246, 239, 227, 0.72);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  font-weight: 520;
  line-height: 1.65;
}

.dbs-gear-intro__cue {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.05);
  color: rgba(246, 239, 227, 0.78);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 820;
  transition:
    border-color 220ms var(--dbs-ease),
    background-color 220ms var(--dbs-ease),
    color 220ms var(--dbs-ease);
}

.dbs-gear-intro__cue span {
  position: relative;
  width: 12px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.dbs-gear-intro__cue span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.dbs-gear-intro__cue:hover,
.dbs-gear-intro__cue:focus-visible {
  border-color: rgba(215, 179, 111, 0.55);
  background: rgba(215, 179, 111, 0.08);
  color: var(--dbs-cream);
}

.dbs-gear-bay {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.25rem 3.4rem;
  scroll-margin-top: 7rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(215, 179, 111, 0.06), transparent 27rem),
    linear-gradient(145deg, #070807 0%, #101111 48%, #0b0d0c 100%);
  isolation: isolate;
}

.dbs-gear-bay__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 239, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.028) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.14;
  mask-image: radial-gradient(circle at 50% 28%, #000, transparent 70%);
}

.dbs-gear-bay__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 100rem);
  margin: 0 auto;
}

.dbs-gear-explorer {
  position: relative;
  margin-top: 1rem;
  padding-top: 0.55rem;
}

.dbs-gear-atmosphere {
  position: absolute;
  z-index: -1;
  top: 1rem;
  right: -0.08em;
  color: rgba(246, 239, 227, 0.025);
  font-size: clamp(3.6rem, 12vw, 10.4rem);
  font-weight: 950;
  line-height: 0.78;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.dbs-gear-machine-list {
  display: grid;
  gap: 2rem;
}

.dbs-gear-explorer.is-enhanced .dbs-gear-machine-list {
  display: block;
}

.dbs-gear-machine {
  position: relative;
  padding: 0.65rem 0 1.4rem;
}

.dbs-gear-explorer.is-enhanced .dbs-gear-machine {
  display: none;
}

.dbs-gear-explorer.is-enhanced .dbs-gear-machine.is-active {
  display: block;
  animation: dbs-gear-panel-in 520ms var(--dbs-ease) both;
}

.dbs-gear-machine__layout {
  display: grid;
  grid-template-areas:
    "identity"
    "stage"
    "controls"
    "media"
    "specs";
  gap: 0.95rem;
}

.dbs-gear-identity,
.dbs-gear-stage,
.dbs-gear-controls,
.dbs-gear-specs,
.dbs-gear-media-set,
.dbs-gear-media-card {
  min-width: 0;
}

.dbs-gear-media-set {
  grid-area: media;
  display: grid;
  width: 100%;
  gap: 0.75rem;
  align-content: start;
}

.dbs-gear-media-card {
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 239, 227, 0.045), rgba(246, 239, 227, 0.018)),
    rgba(7, 8, 7, 0.48);
  box-shadow: 0 20px 42px -34px rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.dbs-gear-identity {
  grid-area: identity;
  display: grid;
  align-content: center;
  min-height: 0;
  max-width: 35rem;
  padding: 0;
}

.dbs-gear-identity__category {
  margin-top: 0.5rem;
  color: rgba(246, 239, 227, 0.54);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
}

.dbs-gear-identity h2 {
  max-width: 12ch;
  margin-top: 0.55rem;
  color: var(--dbs-cream);
  font-size: clamp(1.85rem, 6vw, 2.85rem);
  font-weight: 920;
  line-height: 1;
  text-wrap: balance;
}

.dbs-gear-identity__description,
.dbs-gear-identity__long {
  max-width: 31rem;
  margin-top: 0.8rem;
  color: rgba(246, 239, 227, 0.72);
  font-size: 0.92rem;
  line-height: 1.58;
}

.dbs-gear-stage {
  position: relative;
  grid-area: stage;
  display: grid;
  min-height: 190px;
  aspect-ratio: 16 / 7;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(215, 179, 111, 0.11), transparent 15rem),
    radial-gradient(circle at 62% 36%, rgba(92, 125, 105, 0.1), transparent 18rem);
  box-shadow: none;
  place-items: center;
}

.dbs-gear-stage__light {
  position: absolute;
  inset: 22% 16% 12%;
  background:
    radial-gradient(ellipse at center, rgba(246, 239, 227, 0.22), transparent 42%),
    linear-gradient(90deg, transparent, rgba(215, 179, 111, 0.12), transparent);
  filter: blur(10px);
  opacity: 0.5;
}

.dbs-gear-stage__frame {
  position: absolute;
  inset: clamp(0.65rem, 1.6vw, 1.5rem);
  border-top: 1px solid rgba(246, 239, 227, 0.09);
  border-bottom: 1px solid rgba(246, 239, 227, 0.06);
  opacity: 0.24;
  pointer-events: none;
}

.dbs-gear-stage__frame::before,
.dbs-gear-stage__frame::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 1px;
  background: rgba(215, 179, 111, 0.36);
}

.dbs-gear-stage__frame::before {
  top: -1px;
  left: 1rem;
}

.dbs-gear-stage__frame::after {
  right: 1rem;
  bottom: -1px;
}

.dbs-gear-stage__media {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(68%, 360px);
  height: auto;
  place-items: center;
}

.dbs-gear-stage__media img,
.dbs-gear-stage__media video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.45));
}

.dbs-gear-stage--blueprint {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(57, 145, 224, 0.2), transparent 44%),
    radial-gradient(ellipse at 50% 78%, rgba(7, 8, 7, 0.32), transparent 56%),
    linear-gradient(145deg, #050910 0%, #061424 48%, #05080d 100%);
  isolation: isolate;
}

.dbs-gear-stage--blueprint::before,
.dbs-gear-stage--blueprint::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
}

.dbs-gear-stage--blueprint::before {
  z-index: 0;
  background:
    linear-gradient(rgba(91, 165, 235, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 165, 235, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 74%);
}

.dbs-gear-stage--blueprint::after {
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 48%, rgba(7, 8, 7, 0.42) 74%, #070807 96%),
    linear-gradient(90deg, #070807 0%, transparent 18%, transparent 82%, #070807 100%),
    linear-gradient(180deg, #070807 0%, transparent 18%, transparent 82%, #070807 100%);
}

.dbs-gear-stage--blueprint .dbs-gear-stage__light {
  z-index: 0;
  inset: 16% 8% 10%;
  background:
    radial-gradient(ellipse at center, rgba(112, 190, 255, 0.34), transparent 52%),
    linear-gradient(90deg, transparent, rgba(83, 155, 224, 0.16), transparent);
  filter: blur(18px);
  opacity: 0.58;
}

.dbs-gear-stage--blueprint .dbs-gear-stage__frame {
  border: 0;
  opacity: 0;
}

.dbs-gear-stage--blueprint .dbs-gear-stage__frame::before,
.dbs-gear-stage--blueprint .dbs-gear-stage__frame::after {
  display: none;
}

.dbs-gear-stage--blueprint .dbs-gear-stage__media {
  z-index: 2;
  width: min(118%, 680px);
  height: 100%;
}

.dbs-gear-stage--blueprint .dbs-gear-stage__asset--blueprint {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0.9;
  filter:
    saturate(1.12)
    contrast(1.08)
    brightness(1.04)
    drop-shadow(0 0 24px rgba(88, 177, 255, 0.22));
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, transparent 88%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.72) 68%, transparent 88%);
}

.dbs-gear-stage--product {
  min-height: 340px;
  overflow: visible;
  background: transparent;
  isolation: isolate;
}

.dbs-gear-stage--product::before,
.dbs-gear-stage--product::after {
  display: none;
}

.dbs-gear-stage--product::before {
  content: none;
}

.dbs-gear-stage--product::after {
  content: none;
}

.dbs-gear-stage--product .dbs-gear-stage__light {
  display: none;
}

.dbs-gear-stage--product .dbs-gear-stage__frame {
  opacity: 0;
}

.dbs-gear-stage--product .dbs-gear-stage__frame::before,
.dbs-gear-stage--product .dbs-gear-stage__frame::after {
  display: none;
}

.dbs-gear-stage--product .dbs-gear-stage__media {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0 3.2rem;
}

.dbs-gear-stage--product .dbs-gear-stage__asset--product {
  width: auto;
  height: auto;
  max-width: min(90%, 560px);
  max-height: min(calc(100% - 4rem), 310px);
  object-fit: contain;
  transform:
    translate(var(--gear-asset-x, 0), var(--gear-asset-y, 0))
    scale(var(--gear-asset-scale, 1));
  transform-origin: 50% 50%;
  filter:
    saturate(1.04)
    contrast(1.04);
}

.dbs-gear-placeholder {
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1.45;
  align-content: center;
  justify-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 239, 227, 0.1), rgba(92, 125, 105, 0.08)),
    repeating-linear-gradient(90deg, rgba(246, 239, 227, 0.04) 0 1px, transparent 1px 28px);
  color: rgba(246, 239, 227, 0.62);
}

.dbs-gear-placeholder span {
  color: var(--dbs-gold);
  font-size: clamp(2rem, 7vw, 4.8rem);
  font-weight: 950;
  line-height: 0.9;
}

.dbs-gear-placeholder strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dbs-gear-media-card {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.dbs-gear-media-card--video {
  background: #090a0b;
}

.dbs-gear-media-card--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      110deg,
      #090a0b 18%,
      rgba(215, 179, 111, 0.09) 40%,
      rgba(246, 239, 227, 0.045) 50%,
      #090a0b 72%
    );
  background-size: 260% 100%;
  opacity: 1;
  transition: opacity 220ms ease;
  animation: dbs-gear-video-placeholder 1.35s linear infinite;
}

.dbs-gear-media-card--video.is-video-ready::before {
  opacity: 0;
  animation: none;
}

.dbs-gear-media-card--video.is-video-error::before {
  background: radial-gradient(circle at 50% 48%, rgba(215, 179, 111, 0.08), transparent 48%), #090a0b;
  animation: none;
}

@keyframes dbs-gear-video-placeholder {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-gear-media-card--video::before {
    animation: none;
    transition: none;
  }
}

.dbs-gear-media-card > img,
.dbs-gear-media-card > video,
.dbs-gear-media-card__link,
.dbs-gear-media-card__link img,
.dbs-gear-media-card__empty {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dbs-gear-media-card > img,
.dbs-gear-media-card > video,
.dbs-gear-media-card__link img {
  object-fit: cover;
}

.dbs-gear-media-card--video > video {
  z-index: 0;
  background: transparent;
}

.dbs-gear-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.05), rgba(7, 8, 7, 0.86));
}

.dbs-gear-media-card--visual-only::after {
  display: none;
}

.dbs-gear-media-card__empty {
  display: grid;
  background:
    radial-gradient(circle at 50% 34%, rgba(215, 179, 111, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(246, 239, 227, 0.055), rgba(7, 8, 7, 0.74));
  place-items: center;
}

.dbs-gear-media-card__empty span {
  color: rgba(246, 239, 227, 0.4);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dbs-gear-media-card__caption {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: end;
  gap: 0.25rem;
  padding: 0.75rem;
}

.dbs-gear-media-card__caption strong {
  color: var(--dbs-cream);
  font-size: 0.95rem;
  font-weight: 880;
  line-height: 1.12;
}

.dbs-gear-media-card__caption a {
  width: fit-content;
  color: rgba(246, 239, 227, 0.78);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: rgba(215, 179, 111, 0.42);
  text-underline-offset: 4px;
}

.dbs-gear-specs {
  grid-area: specs;
  border-top: 1px solid rgba(246, 239, 227, 0.11);
  padding: 0.85rem 0 0;
}

.dbs-gear-specs__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.dbs-gear-specs__heading h3 {
  color: var(--dbs-cream);
  font-size: 0.92rem;
  font-weight: 880;
  line-height: 1.1;
}

.dbs-gear-specs__heading span {
  color: rgba(246, 239, 227, 0.5);
  font-size: 12px;
  font-weight: 820;
}

.dbs-gear-specs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 0.45rem 0.8rem;
}

.dbs-gear-spec-row {
  display: grid;
  gap: 0.32rem;
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  padding: 0.55rem 0 0;
}

.dbs-gear-spec-row dt {
  color: rgba(215, 179, 111, 0.88);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.dbs-gear-spec-row dd {
  color: rgba(246, 239, 227, 0.78);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.35;
}

.dbs-gear-use-cases {
  display: none;
}

.dbs-gear-use-cases li {
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.045);
  color: rgba(246, 239, 227, 0.72);
  padding: 0.45rem 0.7rem;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.dbs-gear-controls {
  display: none;
  grid-area: controls;
  gap: 0.7rem;
}

.dbs-gear-explorer.is-enhanced .dbs-gear-controls {
  display: grid;
}

.dbs-gear-controls__buttons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dbs-gear-arrow {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.055);
  color: var(--dbs-cream);
  transition:
    background-color 220ms var(--dbs-ease),
    border-color 220ms var(--dbs-ease),
    transform 220ms var(--dbs-ease);
}

.dbs-gear-arrow span {
  width: 12px;
  height: 12px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, -2px);
}

.dbs-gear-arrow--next span {
  border: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, 2px);
}

.dbs-gear-arrow:hover,
.dbs-gear-arrow:focus-visible {
  border-color: rgba(215, 179, 111, 0.58);
  background: rgba(215, 179, 111, 0.12);
  transform: translateY(-1px);
}

.dbs-gear-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.dbs-gear-counter {
  display: inline-flex;
  min-height: 44px;
  min-width: 96px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.44);
  color: var(--dbs-cream);
  font-size: 13px;
  font-weight: 900;
}

.dbs-gear-counter em {
  color: rgba(246, 239, 227, 0.34);
  font-style: normal;
}

.dbs-gear-progress {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.1);
}

.dbs-gear-progress span {
  display: block;
  width: var(--gear-progress, 14.285%);
  height: 100%;
  background: linear-gradient(90deg, var(--dbs-red), var(--dbs-gold), var(--dbs-green));
  transition: width 420ms var(--dbs-ease);
}

.dbs-gear-dock {
  display: grid;
  grid-auto-columns: minmax(88px, 1fr);
  grid-auto-flow: column;
  gap: 0;
  margin-top: 0.75rem;
  overflow-x: auto;
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  padding-top: 0.55rem;
  padding-bottom: 0.2rem;
  scroll-snap-type: x proximity;
}

.dbs-gear-dock li {
  min-width: 0;
  scroll-snap-align: start;
}

.dbs-gear-thumb {
  display: grid;
  width: 100%;
  min-height: 42px;
  cursor: pointer;
  grid-template-rows: auto auto;
  gap: 0.3rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 239, 227, 0.68);
  padding: 0.3rem 0.65rem 0.45rem 0;
  text-align: left;
  transition:
    background-color 220ms var(--dbs-ease),
    border-color 220ms var(--dbs-ease),
    color 220ms var(--dbs-ease);
}

.dbs-gear-thumb__number {
  color: var(--dbs-gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.dbs-gear-thumb__visual {
  display: none;
  min-height: 64px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 40%, rgba(246, 239, 227, 0.12), transparent 60%),
    rgba(7, 8, 7, 0.42);
  place-items: center;
}

.dbs-gear-thumb__visual img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.dbs-gear-thumb__visual > span {
  width: 38px;
  height: 18px;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 999px;
}

.dbs-gear-thumb__label {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.dbs-gear-thumb:hover,
.dbs-gear-thumb:focus-visible,
.dbs-gear-thumb.is-active {
  background: transparent;
  color: var(--dbs-cream);
}

.dbs-gear-thumb.is-active {
  box-shadow: inset 0 2px 0 rgba(215, 179, 111, 0.72);
}

.dbs-gear-arrow:focus-visible,
.dbs-gear-thumb:focus-visible,
.dbs-gear-media-card__caption a:focus-visible,
.dbs-gear-cta a:focus-visible {
  outline: 2px solid var(--dbs-gold);
  outline-offset: 3px;
}

.dbs-gear-empty {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  border: 1px solid rgba(246, 239, 227, 0.12);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.48);
  padding: 2rem;
}

.dbs-gear-empty h2 {
  color: var(--dbs-cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.dbs-gear-empty p {
  color: rgba(246, 239, 227, 0.72);
  line-height: 1.7;
}

.dbs-gear-cta {
  padding: 4rem 1.25rem 5rem;
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.18), rgba(246, 239, 227, 0.9) 58%, rgba(92, 125, 105, 0.22)),
    #f4efe6;
  color: var(--dbs-bg);
}

.dbs-gear-cta__inner {
  display: grid;
  width: min(100%, 100rem);
  margin: 0 auto;
  gap: 1.75rem;
}

.dbs-gear-cta .dbs-gear-eyebrow {
  color: rgba(9, 10, 11, 0.6);
}

.dbs-gear-cta h2 {
  max-width: 54rem;
  color: var(--dbs-bg);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 920;
  line-height: 1.02;
  text-wrap: balance;
}

.dbs-gear-cta p:not(.dbs-gear-eyebrow) {
  max-width: 42rem;
  color: rgba(9, 10, 11, 0.68);
  font-size: 1.05rem;
  font-weight: 620;
  line-height: 1.7;
}

.dbs-gear-cta .dbs-button {
  margin-top: 1.4rem;
}

.dbs-gear-cta__links {
  display: grid;
  margin-top: 1.35rem;
  gap: 0.55rem;
}

.dbs-gear-cta__links a {
  width: fit-content;
  color: rgba(9, 10, 11, 0.74);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(9, 10, 11, 0.28);
  text-underline-offset: 0.22em;
}

.dbs-gear-cta__links a:hover,
.dbs-gear-cta__links a:focus-visible {
  color: var(--dbs-bg);
  text-decoration-color: var(--dbs-bg);
}

@media (prefers-reduced-motion: reduce) {
  .dbs-work-paths__grid a,
  .dbs-work-path-card__arrow {
    transition: none;
  }

  .dbs-work-paths__grid a:hover,
  .dbs-work-paths__grid a:focus-visible,
  .dbs-work-paths__grid a:hover .dbs-work-path-card__arrow,
  .dbs-work-paths__grid a:focus-visible .dbs-work-path-card__arrow {
    transform: none;
  }
}

@media (min-width: 1280px) {
  .dbs-work-paths__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dbs-work-paths__grid a {
    min-height: 14.5rem;
  }
}

@keyframes dbs-gear-panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dbs-gear-spec-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .dbs-gear-intro {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .dbs-gear-intro__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .dbs-gear-intro__meta {
    grid-column: 1 / -1;
  }

  .dbs-gear-bay {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .dbs-gear-machine__layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(230px, 0.58fr);
    grid-template-areas:
      "identity identity"
      "stage media"
      "controls media"
      "specs specs";
    align-items: center;
    gap: 1.05rem;
  }

  .dbs-gear-identity {
    grid-area: identity;
    min-height: 0;
  }

  .dbs-gear-stage {
    grid-area: stage;
  }

  .dbs-gear-media-set {
    grid-area: media;
    align-self: center;
    align-content: center;
  }

  .dbs-gear-specs {
    grid-area: specs;
  }

  .dbs-gear-explorer.is-enhanced .dbs-gear-controls {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .dbs-gear-cta {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .dbs-gear-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.48fr);
    align-items: end;
  }
}

@media (min-width: 1200px) {
  .dbs-gear-intro {
    padding-top: 9.5rem;
    padding-bottom: 2.8rem;
  }

  .dbs-gear-machine__layout {
    min-height: 570px;
    grid-template-columns: minmax(220px, 0.44fr) minmax(360px, 0.62fr) minmax(500px, 0.94fr);
    grid-template-areas:
      "identity stage media"
      "controls specs media";
    gap: 1.15rem 1.5rem;
    align-items: stretch;
  }

  .dbs-gear-identity {
    min-height: 0;
  }

  .dbs-gear-stage {
    min-height: 250px;
    align-self: end;
  }

  .dbs-gear-stage--product {
    min-height: 460px;
    align-self: start;
  }

  .dbs-gear-stage--product .dbs-gear-stage__media {
    padding: 0.6rem 0 3.6rem;
  }

  .dbs-gear-stage--product .dbs-gear-stage__asset--product {
    max-width: min(86%, 560px);
    max-height: min(calc(100% - 4.5rem), 315px);
    transform:
      translate(calc(var(--gear-asset-x, 0) - 46%), calc(var(--gear-asset-y, 0) + 26%))
      scale(var(--gear-asset-scale, 1));
  }

  .dbs-gear-stage__media {
    width: min(66%, 340px);
  }

  .dbs-gear-stage__media img,
  .dbs-gear-stage__media video {
    max-height: 185px;
  }

  .dbs-gear-media-set {
    width: min(100%, 520px);
    justify-self: end;
    align-self: center;
    gap: 0.85rem;
  }

  .dbs-gear-specs {
    align-self: start;
    padding-top: 0.85rem;
  }

  .dbs-gear-specs__list {
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 0.45rem 1rem;
  }

  .dbs-gear-spec-row {
    grid-template-columns: 1fr;
  }

  .dbs-gear-explorer.is-enhanced .dbs-gear-machine.is-active .dbs-gear-spec-row {
    animation: dbs-gear-spec-in 420ms var(--dbs-ease) both;
    animation-delay: var(--gear-spec-delay, 0ms);
  }

  .dbs-gear-dock {
    grid-auto-columns: minmax(0, 1fr);
    overflow: visible;
  }
}

@media (min-width: 1440px) {
  .dbs-gear-machine__layout {
    min-height: 600px;
    grid-template-columns: minmax(240px, 0.42fr) minmax(420px, 0.66fr) minmax(560px, 0.92fr);
  }

  .dbs-gear-stage {
    min-height: 270px;
  }

  .dbs-gear-stage--product {
    min-height: 500px;
  }

  .dbs-gear-stage--product .dbs-gear-stage__asset--product {
    max-width: min(86%, 590px);
    max-height: min(calc(100% - 4.7rem), 320px);
    transform:
      translate(calc(var(--gear-asset-x, 0) - 52%), calc(var(--gear-asset-y, 0) + 30%))
      scale(var(--gear-asset-scale, 1));
  }

  .dbs-gear-stage__media {
    width: min(64%, 370px);
  }

  .dbs-gear-stage__media img,
  .dbs-gear-stage__media video {
    max-height: 200px;
  }

  .dbs-gear-media-set {
    width: min(100%, 540px);
  }
}

@media (max-width: 767px) {
  .dbs-gear-intro {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .dbs-gear-intro__meta {
    grid-template-columns: 1fr;
  }

  .dbs-gear-intro__meta span {
    margin-right: 0;
  }

  .dbs-gear-atmosphere {
    top: 4rem;
    right: -2rem;
    font-size: 4.2rem;
    white-space: normal;
  }

  .dbs-gear-media-card {
    backdrop-filter: none;
  }

  .dbs-gear-stage {
    height: 170px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .dbs-gear-stage--product {
    height: clamp(230px, 68vw, 300px);
    min-height: 0;
  }

  .dbs-gear-stage--product .dbs-gear-stage__media {
    padding: 0.35rem 0 2.6rem;
  }

  .dbs-gear-stage--product .dbs-gear-stage__asset--product {
    max-width: min(90%, 520px);
    max-height: min(calc(100% - 3.2rem), 230px);
    transform:
      translate(var(--gear-asset-x, 0), var(--gear-asset-y, 0))
      scale(var(--gear-asset-scale, 1));
  }

  .dbs-gear-stage__frame {
    opacity: 0.26;
  }

  .dbs-gear-stage__media img,
  .dbs-gear-stage__media video {
    max-height: 120px;
  }

  .dbs-gear-media-set {
    gap: 0.65rem;
  }

  .dbs-gear-spec-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .dbs-gear-controls__buttons {
    justify-content: space-between;
  }

  .dbs-gear-counter {
    flex: 1;
  }
}

@media (max-width: 390px) {
  .dbs-gear-intro,
  .dbs-gear-bay,
  .dbs-gear-cta {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .dbs-gear-identity {
    padding: 0;
  }

  .dbs-gear-identity h2 {
    font-size: clamp(1.75rem, 10vw, 2.45rem);
  }

  .dbs-gear-thumb {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-gear-explorer.is-enhanced .dbs-gear-machine.is-active,
  .dbs-gear-explorer.is-enhanced .dbs-gear-machine.is-active .dbs-gear-spec-row {
    animation: none;
  }

  .dbs-gear-progress span {
    transition: none;
  }

  .dbs-gear-arrow:hover {
    transform: none;
  }
}

/* SEO service and geographic landing pages — v0.3.1 */
.dbs-seo-landing {
  color: var(--dbs-cream);
  background: var(--dbs-bg);
}

.dbs-seo-hero {
  position: relative;
  display: flex;
  min-height: min(720px, 88svh);
  overflow: hidden;
  isolation: isolate;
}

.dbs-seo-hero__media,
.dbs-seo-hero__veil {
  position: absolute;
  inset: 0;
}

.dbs-seo-hero__media {
  z-index: -3;
  background: #111513;
}

.dbs-seo-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-seo-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.dbs-seo-hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.95) 0%, rgba(5, 7, 6, 0.75) 46%, rgba(5, 7, 6, 0.22) 78%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.08) 48%, rgba(5, 7, 6, 0.48) 100%);
}

.dbs-seo-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.08) 1px, transparent 1px);
  background-size: 9.5rem 9.5rem;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.dbs-seo-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 1680px);
  min-height: inherit;
  margin: 0 auto;
  padding: 9.5rem clamp(1.25rem, 4vw, 4.5rem) 3rem;
}

.dbs-seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  width: fit-content;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-seo-breadcrumb a {
  color: var(--dbs-cream);
  text-decoration: none;
}

.dbs-seo-breadcrumb a:hover {
  color: var(--dbs-gold);
}

.dbs-seo-hero__copy {
  max-width: 54rem;
  margin-block: auto;
  padding-block: 3.25rem;
}

.dbs-seo-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--dbs-gold);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dbs-seo-hero h1 {
  max-width: 56rem;
  margin: 0;
  color: var(--dbs-cream);
  font-size: clamp(1.875rem, 3.4vw, 3.375rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dbs-seo-hero__lead {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: rgba(246, 239, 227, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.dbs-seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.dbs-seo-hero__scope {
  margin: 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(246, 239, 227, 0.2);
  color: rgba(246, 239, 227, 0.7);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-seo-editorial {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(92, 125, 105, 0.14), transparent 26rem),
    #f3ede3;
  color: #121513;
}

.dbs-seo-editorial__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4rem;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.dbs-seo-copy {
  min-width: 0;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.76;
}

.dbs-seo-copy > *:first-child {
  margin-top: 0;
}

.dbs-seo-copy h2 {
  max-width: 52rem;
  margin: clamp(3.25rem, 6vw, 5.5rem) 0 1.25rem;
  color: #0c0f0d;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dbs-seo-copy h2:first-child {
  margin-top: 0;
}

.dbs-seo-copy h3 {
  margin: 2.8rem 0 0.7rem;
  color: #151916;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
}

.dbs-seo-copy p {
  max-width: 52rem;
  margin: 0 0 1.35rem;
  color: #303632;
}

.dbs-seo-copy a {
  color: #664c1d;
  font-weight: 720;
  text-decoration-color: rgba(102, 76, 29, 0.45);
  text-underline-offset: 0.2em;
}

.dbs-seo-copy a:hover {
  color: #1e3b2d;
}

.dbs-seo-copy ul,
.dbs-seo-copy ol {
  display: grid;
  gap: 0.7rem;
  max-width: 52rem;
  margin: 1.8rem 0 2.2rem;
  padding-left: 1.25rem;
  color: #303632;
}

.dbs-seo-copy ul {
  list-style: disc;
}

.dbs-seo-copy ol {
  list-style: decimal;
}

.dbs-seo-copy li::marker {
  color: #9d742c;
  font-weight: 800;
}

.dbs-seo-copy blockquote {
  max-width: 54rem;
  margin: 3rem 0;
  padding: 1.7rem 1.8rem;
  border-left: 4px solid var(--dbs-gold);
  background: rgba(255, 255, 255, 0.52);
  color: #222924;
  font-size: 1.12em;
}

.dbs-seo-copy details {
  max-width: 54rem;
  margin: 0;
  border-top: 1px solid rgba(15, 24, 18, 0.18);
}

.dbs-seo-copy details:last-child {
  border-bottom: 1px solid rgba(15, 24, 18, 0.18);
}

.dbs-seo-copy summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  color: #121713;
  font-size: 1.05em;
  font-weight: 790;
  line-height: 1.45;
  cursor: pointer;
}

.dbs-seo-copy summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #77561d;
  font-size: 1.4rem;
  font-weight: 500;
}

.dbs-seo-copy details[open] summary::after {
  content: "−";
}

.dbs-seo-copy details > p {
  padding: 0 1.5rem 1.25rem 0;
  color: #424a44;
}

.dbs-seo-aside {
  align-self: start;
  padding: 1.5rem;
  border: 1px solid rgba(12, 20, 15, 0.12);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 30px 70px -55px rgba(10, 16, 12, 0.6);
}

.dbs-seo-aside > p {
  margin: 0 0 1.1rem;
  color: #78581e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dbs-seo-aside nav {
  display: grid;
}

.dbs-seo-aside nav a {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid rgba(12, 20, 15, 0.12);
  color: #202722;
  font-size: 0.94rem;
  font-weight: 730;
  text-decoration: none;
}

.dbs-seo-aside nav a[aria-current="page"] {
  color: #78581e;
}

.dbs-seo-aside__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.3rem;
  margin-top: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background: #111713;
  color: #f6efe3;
  font-weight: 780;
  text-decoration: none;
}

.dbs-seo-related {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background: #0b0d0c;
}

.dbs-seo-related__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.dbs-seo-related h2 {
  max-width: 50rem;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.dbs-seo-related__grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.dbs-seo-related__card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.12);
  background: #121513;
  color: var(--dbs-cream);
  text-decoration: none;
}

.dbs-seo-related__card figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: #1a1e1b;
}

.dbs-seo-related__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--dbs-ease);
}

.dbs-seo-related__card:hover img {
  transform: scale(1.025);
}

.dbs-seo-related__card > div {
  padding: 1.5rem;
}

.dbs-seo-related__card > div > span {
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-seo-related__card h3 {
  margin: 0.45rem 0 1.6rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 820;
  line-height: 1.12;
}

.dbs-seo-related__card p {
  margin: 0;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.dbs-seo-cta {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(215, 179, 111, 0.15), transparent 34%),
    #111513;
}

.dbs-seo-cta__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-left: clamp(0rem, 5vw, 5rem);
  border-left: 1px solid rgba(246, 239, 227, 0.18);
}

.dbs-seo-cta h2 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.dbs-seo-cta__inner > p:not(.dbs-seo-eyebrow) {
  max-width: 48rem;
  margin: 1.5rem 0 2rem;
  color: rgba(246, 239, 227, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

/* Rich Services, Luxembourg and About layouts. */
.dbs-rich-section__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.dbs-rich-heading {
  display: grid;
  gap: 1rem;
  max-width: 64rem;
}

.dbs-rich-heading .dbs-seo-eyebrow {
  margin-bottom: 0;
}

.dbs-rich-heading h2 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.dbs-rich-heading > p:not(.dbs-seo-eyebrow) {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.dbs-services-overview,
.dbs-service-regions,
.dbs-about-profile,
.dbs-about-value,
.dbs-rich-faq {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: #121513;
  background: #f3ede3;
}

.dbs-services-overview {
  background:
    radial-gradient(circle at 92% 4%, rgba(92, 125, 105, 0.15), transparent 27rem),
    #f3ede3;
}

.dbs-services-overview .dbs-seo-eyebrow,
.dbs-service-regions .dbs-seo-eyebrow,
.dbs-about-profile .dbs-seo-eyebrow,
.dbs-about-value .dbs-seo-eyebrow,
.dbs-rich-faq .dbs-seo-eyebrow {
  color: #78581e;
}

.dbs-services-overview .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-service-regions .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-about-method .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-about-profile__copy > p,
.dbs-rich-faq .dbs-rich-heading > p:not(.dbs-seo-eyebrow) {
  color: #3d4540;
}

.dbs-service-offer-grid {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.dbs-service-offer {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(13, 24, 17, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 72px -54px rgba(7, 12, 9, 0.66);
  transition:
    border-color 260ms var(--dbs-ease),
    transform 260ms var(--dbs-ease),
    box-shadow 260ms var(--dbs-ease);
}

.dbs-service-offer:hover {
  border-color: rgba(120, 88, 30, 0.38);
  box-shadow: 0 34px 76px -52px rgba(7, 12, 9, 0.7);
  transform: translateY(-3px);
}

.dbs-service-offer__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #111513;
}

.dbs-service-offer__media picture,
.dbs-service-offer__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-service-offer__media img {
  object-fit: cover;
  transition: transform 700ms var(--dbs-ease);
}

.dbs-service-offer:hover .dbs-service-offer__media img {
  transform: scale(1.025);
}

.dbs-service-offer__media > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.32);
  border-radius: 999px;
  color: var(--dbs-cream);
  background: rgba(8, 9, 8, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.dbs-service-offer__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.5rem, 2.35vw, 2.25rem);
}

.dbs-service-offer__eyebrow {
  margin: 0;
  color: #78581e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-service-offer__body h3 {
  margin: 0.85rem 0 0;
  color: #111713;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.dbs-service-offer__description {
  max-width: 42ch;
  margin: 1.15rem 0 0;
  color: #4a534d;
  font-size: clamp(0.96rem, 1.05vw, 1.02rem);
  font-weight: 470;
  letter-spacing: 0;
  line-height: 1.68;
  text-transform: none;
  text-wrap: pretty;
}

.dbs-service-offer__body ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.65rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(13, 24, 17, 0.12);
  color: #2f3732;
  font-size: 0.93rem;
  font-weight: 690;
  line-height: 1.45;
}

.dbs-service-offer__body li {
  position: relative;
  padding-left: 1rem;
}

.dbs-service-offer__body li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #9d742c;
}

.dbs-service-offer__body a {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  width: fit-content;
  margin-top: 0;
  color: #244c38;
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
}

.dbs-service-offer__footer {
  display: flex;
  align-items: flex-end;
}

.dbs-service-offer__footer:not(:empty) {
  min-height: 2rem;
  margin-top: 1.35rem;
}

.dbs-service-chooser,
.dbs-service-process,
.dbs-about-method {
  position: relative;
  overflow: clip;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 12% 14%, rgba(92, 125, 105, 0.18), transparent 30rem),
    linear-gradient(135deg, #090b0a, #111513 58%, #140d0c);
}

.dbs-service-chooser::before,
.dbs-service-process::before,
.dbs-about-method::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.dbs-service-chooser .dbs-rich-section__inner,
.dbs-service-process .dbs-rich-section__inner,
.dbs-about-method .dbs-rich-section__inner {
  position: relative;
  z-index: 1;
}

.dbs-service-chooser .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-service-process .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-about-method .dbs-rich-heading > p:not(.dbs-seo-eyebrow) {
  color: rgba(246, 239, 227, 0.7);
}

.dbs-service-chooser__layout {
  display: grid;
  gap: clamp(2.75rem, 7vw, 7rem);
}

.dbs-service-chooser__list {
  margin: 0;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-service-chooser__list > div {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-service-chooser__list dt {
  color: var(--dbs-cream);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 820;
  line-height: 1.3;
}

.dbs-service-chooser__list dd {
  margin: 0;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

.dbs-service-process {
  padding-top: 0;
}

.dbs-service-process__layout,
.dbs-about-method__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.dbs-service-process__media,
.dbs-about-method__media {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background: #0c0e0d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.dbs-service-process__media picture,
.dbs-service-process__media img,
.dbs-about-method__media picture,
.dbs-about-method__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-service-process__media img,
.dbs-about-method__media img {
  object-fit: cover;
}

.dbs-service-process__media::after,
.dbs-about-method__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 7, 6, 0.86));
  pointer-events: none;
}

.dbs-service-process__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  color: rgba(246, 239, 227, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

.dbs-rich-steps {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-rich-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-rich-steps li > span {
  color: var(--dbs-red);
  font-size: 0.78rem;
  font-weight: 880;
  line-height: 1.3;
}

.dbs-rich-steps__label {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dbs-rich-steps h3 {
  margin: 0.55rem 0 0;
  color: var(--dbs-cream);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 840;
  line-height: 1.18;
}

.dbs-rich-steps__text {
  max-width: 42rem;
  margin-top: 0.7rem;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.96rem;
  line-height: 1.62;
}

.dbs-service-regions {
  background:
    radial-gradient(circle at 8% 88%, rgba(184, 50, 47, 0.08), transparent 24rem),
    #ebe3d7;
}

.dbs-service-regions__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.dbs-service-region-card {
  position: relative;
  min-height: clamp(24rem, 48vw, 35rem);
  overflow: hidden;
  border: 1px solid rgba(13, 24, 17, 0.12);
  border-radius: 8px;
  color: var(--dbs-cream);
  background: #111513;
  text-decoration: none;
}

.dbs-service-region-card picture,
.dbs-service-region-card img,
.dbs-service-region-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dbs-service-region-card img {
  object-fit: cover;
  transition: transform 750ms var(--dbs-ease);
}

.dbs-service-region-card:hover img {
  transform: scale(1.03);
}

.dbs-service-region-card__shade {
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.08), rgba(7, 8, 7, 0.92)),
    linear-gradient(90deg, rgba(7, 8, 7, 0.55), transparent 72%);
}

.dbs-service-region-card > div {
  position: absolute;
  z-index: 1;
  right: clamp(1.4rem, 3vw, 2.5rem);
  bottom: clamp(1.4rem, 3vw, 2.5rem);
  left: clamp(1.4rem, 3vw, 2.5rem);
}

.dbs-service-region-card p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-service-region-card h3 {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 860;
  line-height: 1.08;
}

.dbs-service-region-card div > span {
  display: block;
  max-width: 34rem;
  margin-top: 0.85rem;
  color: rgba(246, 239, 227, 0.74);
  font-size: 0.96rem;
  line-height: 1.58;
}

.dbs-service-region-card strong {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
  font-size: 0.86rem;
  font-weight: 820;
}

.dbs-rich-faq {
  background: #f8f4ed;
}

.dbs-rich-faq__layout {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.dbs-rich-faq__items {
  border-top: 1px solid rgba(15, 24, 18, 0.18);
}

.dbs-rich-faq__items details {
  border-bottom: 1px solid rgba(15, 24, 18, 0.18);
}

.dbs-rich-faq__items summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  color: #121713;
  font-size: 1rem;
  font-weight: 790;
  line-height: 1.45;
  cursor: pointer;
}

.dbs-rich-faq__items summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #77561d;
  font-size: 1.4rem;
  font-weight: 500;
}

.dbs-rich-faq__items details[open] summary::after {
  content: "−";
}

.dbs-rich-faq__items p {
  max-width: 44rem;
  margin: 0;
  padding: 0 1.5rem 1.35rem 0;
  color: #424a44;
  font-size: 0.98rem;
  line-height: 1.68;
}

/* Luxembourg service landing. */
.dbs-seo-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.dbs-seo-hero__proofs li {
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 999px;
  color: rgba(246, 239, 227, 0.88);
  background: rgba(8, 10, 9, 0.42);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.dbs-lux-intro,
.dbs-lux-use-cases,
.dbs-rich-faq--luxembourg {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: #111713;
  background: #f3ede3;
}

.dbs-lux-intro {
  background:
    radial-gradient(circle at 6% 10%, rgba(184, 50, 47, 0.08), transparent 25rem),
    #f3ede3;
}

.dbs-lux-intro__layout {
  display: grid;
  gap: clamp(2.75rem, 7vw, 7rem);
  align-items: center;
}

.dbs-lux-intro__copy h2 {
  max-width: 42rem;
  margin: 0.9rem 0 0;
  color: #101612;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
  font-weight: 880;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.dbs-lux-intro__copy > p:not(.dbs-seo-eyebrow) {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: #3d4540;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.dbs-lux-intro__copy .dbs-lux-intro__lead {
  color: #202923;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  line-height: 1.62;
}

.dbs-lux-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.dbs-lux-intro__visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.75rem;
  align-items: end;
}

.dbs-lux-intro__visual figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(13, 24, 17, 0.14);
  border-radius: 8px;
  background: #111513;
  box-shadow: 0 28px 70px -48px rgba(7, 12, 9, 0.7);
}

.dbs-lux-intro__visual figure:first-child {
  aspect-ratio: 4 / 5;
}

.dbs-lux-intro__visual figure:last-child {
  aspect-ratio: 4 / 5;
  margin-bottom: clamp(1.5rem, 5vw, 4rem);
}

.dbs-lux-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dbs-lux-trust {
  display: grid;
  margin: clamp(3rem, 6vw, 5.5rem) 0 0;
  border-top: 1px solid rgba(13, 24, 17, 0.16);
  border-bottom: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-lux-trust > div {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(13, 24, 17, 0.12);
}

.dbs-lux-trust > div:last-child {
  border-bottom: 0;
}

.dbs-lux-trust dt {
  color: #78581e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-lux-trust dd {
  margin: 0.6rem 0 0;
  color: #18201b;
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.4;
}

.dbs-lux-services,
.dbs-lux-admin {
  position: relative;
  overflow: clip;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 50, 47, 0.14), transparent 28rem),
    linear-gradient(135deg, #090b0a, #111513 58%, #140d0c);
}

.dbs-lux-services::before,
.dbs-lux-admin::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 96%);
}

.dbs-lux-services > .dbs-rich-section__inner,
.dbs-lux-admin > .dbs-rich-section__inner {
  position: relative;
  z-index: 1;
}

.dbs-lux-services .dbs-rich-heading > p:not(.dbs-seo-eyebrow),
.dbs-lux-admin .dbs-rich-heading > p:not(.dbs-seo-eyebrow) {
  color: rgba(246, 239, 227, 0.7);
}

.dbs-lux-services__grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.dbs-lux-services__grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 8px;
  background: rgba(246, 239, 227, 0.035);
}

.dbs-lux-services__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.dbs-lux-services__meta span {
  color: var(--dbs-red);
  font-size: 0.76rem;
  font-weight: 880;
}

.dbs-lux-services__meta p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-lux-services__grid h3 {
  margin: 2.5rem 0 0;
  color: var(--dbs-cream);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 850;
  line-height: 1.13;
}

.dbs-lux-services__grid article > p {
  margin: 1rem 0 0;
  color: rgba(246, 239, 227, 0.7);
  font-size: 0.98rem;
  line-height: 1.65;
}

.dbs-lux-services__grid ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(246, 239, 227, 0.13);
  color: rgba(246, 239, 227, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.dbs-lux-services__grid li {
  position: relative;
  padding-left: 1rem;
}

.dbs-lux-services__grid li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--dbs-gold);
}

.dbs-lux-text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 2rem;
  color: var(--dbs-cream);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.dbs-lux-admin {
  padding-top: 0;
}

.dbs-lux-admin__layout {
  display: grid;
  gap: clamp(2.75rem, 7vw, 7rem);
  align-items: start;
}

.dbs-lux-admin__media {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  background: #0c0e0d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.dbs-lux-admin__media picture,
.dbs-lux-admin__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-lux-admin__media img {
  object-fit: cover;
}

.dbs-lux-admin__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 7, 6, 0.9));
}

.dbs-lux-admin__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  color: rgba(246, 239, 227, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.dbs-lux-admin__copy .dbs-rich-steps {
  margin-top: 2.25rem;
}

.dbs-lux-admin__source {
  margin: 1.5rem 0 0;
  color: rgba(246, 239, 227, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.dbs-lux-admin__source a {
  color: var(--dbs-gold);
}

.dbs-lux-use-cases {
  background:
    radial-gradient(circle at 94% 16%, rgba(92, 125, 105, 0.13), transparent 28rem),
    #ebe3d7;
}

.dbs-lux-use-cases__grid {
  display: grid;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-lux-use-cases__grid article {
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-lux-use-cases__grid article > span {
  color: var(--dbs-red);
  font-size: 0.72rem;
  font-weight: 880;
}

.dbs-lux-use-cases__grid h3 {
  margin: 1.2rem 0 0;
  color: #111713;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 840;
  line-height: 1.2;
}

.dbs-lux-use-cases__grid p {
  max-width: 31rem;
  margin: 0.8rem 0 0;
  color: #454d47;
  font-size: 0.95rem;
  line-height: 1.65;
}

.dbs-lux-reach {
  position: relative;
  min-height: clamp(36rem, 64vw, 50rem);
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: var(--dbs-cream);
  background: #0a0c0b;
}

.dbs-lux-reach__media,
.dbs-lux-reach__media img,
.dbs-lux-reach__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dbs-lux-reach__media img {
  object-fit: cover;
}

.dbs-lux-reach__shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96), rgba(5, 7, 6, 0.5) 62%, rgba(5, 7, 6, 0.28)),
    linear-gradient(0deg, rgba(5, 7, 6, 0.96), transparent 68%);
}

.dbs-lux-reach__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(27rem, 48vw, 38rem);
  flex-direction: column;
  justify-content: flex-end;
}

.dbs-lux-reach__content h2 {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 870;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.dbs-lux-reach__content p:not(.dbs-seo-eyebrow) {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(246, 239, 227, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

.dbs-lux-reach__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dbs-lux-reach__links a {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 4px;
  color: var(--dbs-cream);
  background: rgba(8, 10, 9, 0.38);
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.35;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.dbs-rich-faq--luxembourg {
  background: #f8f4ed;
}

.dbs-moselle-intro {
  background:
    radial-gradient(circle at 92% 12%, rgba(92, 125, 105, 0.16), transparent 27rem),
    linear-gradient(145deg, #f4eee5, #ebe5da);
}

.dbs-moselle-intro__visual figure:first-child img,
.dbs-moselle-admin__media img {
  object-position: 52% center;
}

.dbs-moselle-trust dt {
  color: #536f5d;
}

.dbs-moselle-territories {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 10% 0%, rgba(209, 184, 133, 0.13), transparent 26rem),
    #0c100e;
}

.dbs-moselle-territories::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}

.dbs-moselle-territories > .dbs-rich-section__inner {
  position: relative;
  z-index: 1;
}

.dbs-moselle-territories .dbs-rich-heading > p:not(.dbs-seo-eyebrow) {
  color: rgba(246, 239, 227, 0.7);
}

.dbs-moselle-territories__grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.dbs-moselle-territories__grid article {
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(246, 239, 227, 0.055), rgba(246, 239, 227, 0.018));
}

.dbs-moselle-territories__grid article > span {
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 880;
}

.dbs-moselle-territories__grid h3 {
  max-width: 18rem;
  margin: 3rem 0 0;
  color: var(--dbs-cream);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 850;
  line-height: 1.13;
}

.dbs-moselle-territories__grid p {
  margin: 1rem 0 0;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.dbs-moselle-services {
  background:
    radial-gradient(circle at 92% 8%, rgba(92, 125, 105, 0.18), transparent 30rem),
    linear-gradient(135deg, #111513, #0a0c0b 56%, #12100c);
}

.dbs-moselle-services__grid article {
  overflow: hidden;
  padding: 0;
}

.dbs-moselle-service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: #080a09;
}

.dbs-moselle-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--dbs-ease);
}

.dbs-moselle-services__grid article:hover .dbs-moselle-service-card__media img {
  transform: scale(1.035);
}

.dbs-moselle-services__grid .dbs-lux-services__meta {
  margin: 1.5rem 1.5rem 0;
}

.dbs-moselle-services__grid h3 {
  margin: 1.7rem 1.5rem 0;
}

.dbs-moselle-services__grid article > p {
  padding-inline: 1.5rem;
}

.dbs-moselle-services__grid ul {
  margin: auto 1.5rem 1.5rem;
}

.dbs-moselle-admin {
  background:
    radial-gradient(circle at 8% 88%, rgba(184, 50, 47, 0.12), transparent 28rem),
    linear-gradient(135deg, #0a0c0b, #101512);
}

.dbs-moselle-use-cases {
  background:
    radial-gradient(circle at 4% 10%, rgba(209, 184, 133, 0.13), transparent 28rem),
    #eee8de;
}

.dbs-moselle-reach .dbs-lux-reach__media img {
  filter: saturate(0.82) contrast(1.04);
}

.dbs-moselle-reach .dbs-lux-reach__shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.97), rgba(5, 8, 6, 0.62) 60%, rgba(5, 8, 6, 0.38)),
    linear-gradient(0deg, rgba(5, 8, 6, 0.98), transparent 70%);
}

.dbs-rich-faq--moselle {
  background:
    radial-gradient(circle at 96% 8%, rgba(92, 125, 105, 0.1), transparent 24rem),
    #f8f4ed;
}

.dbs-seo-explore {
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(246, 239, 227, 0.1);
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
  background: #0b0d0c;
}

.dbs-seo-explore__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.dbs-seo-explore__inner > p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dbs-seo-explore nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.dbs-seo-explore a {
  color: rgba(246, 239, 227, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.dbs-seo-explore a:hover,
.dbs-seo-explore a[aria-current="page"] {
  color: var(--dbs-cream);
}

.dbs-seo-explore__inner > a:last-child {
  color: var(--dbs-cream);
  font-weight: 820;
}

/* About profile hero: real on-set image, isolated from the title. */
.dbs-seo-hero--profile {
  min-height: min(760px, 88svh);
  background:
    radial-gradient(circle at 14% 20%, rgba(92, 125, 105, 0.18), transparent 27rem),
    #080a09;
}

.dbs-seo-hero--profile .dbs-seo-hero__media {
  z-index: -2;
  top: 6.75rem;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 2rem;
  left: auto;
  width: min(47%, 48rem);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.dbs-seo-hero--profile .dbs-seo-hero__media img {
  object-position: center;
  filter: grayscale(1) contrast(1.06);
}

.dbs-seo-hero--profile .dbs-seo-hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98) 0%, rgba(5, 7, 6, 0.94) 45%, rgba(5, 7, 6, 0.34) 70%, rgba(5, 7, 6, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.84), transparent 48%);
}

.dbs-seo-hero--profile .dbs-seo-hero__copy {
  max-width: 43rem;
}

.dbs-about-profile {
  background:
    radial-gradient(circle at 92% 14%, rgba(92, 125, 105, 0.14), transparent 26rem),
    #f3ede3;
}

.dbs-about-profile__layout {
  display: grid;
  gap: clamp(2.75rem, 7vw, 7rem);
  align-items: center;
}

.dbs-about-profile__portrait {
  position: relative;
  width: min(100%, 36rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #101411;
  box-shadow: 0 34px 80px -48px rgba(7, 12, 9, 0.7);
}

.dbs-about-profile__portrait picture,
.dbs-about-profile__portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-about-profile__portrait img {
  object-fit: cover;
}

.dbs-about-profile__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(7, 8, 7, 0.82));
  pointer-events: none;
}

.dbs-about-profile__portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(246, 239, 227, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

.dbs-about-profile__portrait figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--dbs-cream);
  font-size: 1.2rem;
  font-weight: 850;
}

.dbs-about-profile__copy h2 {
  max-width: 46rem;
  margin: 0;
  color: #111713;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.dbs-about-profile__copy > p:not(.dbs-seo-eyebrow) {
  max-width: 46rem;
  margin: 1.15rem 0 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.dbs-about-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  border-top: 1px solid rgba(13, 24, 17, 0.15);
}

.dbs-about-facts div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13, 24, 17, 0.15);
}

.dbs-about-facts dt {
  color: #78581e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-about-facts dd {
  margin: 0.45rem 0 0;
  color: #252c27;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.45;
}

.dbs-about-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.dbs-button--dark {
  border-color: #111713;
  color: var(--dbs-cream);
  background: #111713;
}

.dbs-button--outline-dark {
  border-color: rgba(17, 23, 19, 0.34);
  color: #111713;
  background: transparent;
}

.dbs-button--dark:hover {
  border-color: #78581e;
  color: var(--dbs-cream);
  background: #78581e;
}

.dbs-button--outline-dark:hover {
  border-color: #111713;
  color: var(--dbs-cream);
  background: #111713;
}

.dbs-about-value {
  background:
    radial-gradient(circle at 10% 14%, rgba(184, 50, 47, 0.08), transparent 26rem),
    #ebe3d7;
}

.dbs-about-value__grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.dbs-about-value__grid article {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(13, 24, 17, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.dbs-about-value__grid article > span {
  color: var(--dbs-red);
  font-size: 0.75rem;
  font-weight: 880;
}

.dbs-about-value__grid h3 {
  margin: 1.5rem 0 0;
  color: #111713;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 850;
  line-height: 1.15;
}

.dbs-about-value__grid p {
  margin: 1rem 0 0;
  color: #454d47;
  font-size: 0.98rem;
  line-height: 1.65;
}

.dbs-about-equipment-link {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(13, 24, 17, 0.16);
  border-radius: 8px;
  color: #111713;
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.dbs-about-equipment-link small,
.dbs-about-equipment-link strong {
  display: block;
}

.dbs-about-equipment-link small {
  color: #78581e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-about-equipment-link strong {
  margin-top: 0.4rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .dbs-seo-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dbs-service-regions__grid,
  .dbs-about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-about-facts div:nth-child(odd) {
    padding-right: 1.25rem;
    border-right: 1px solid rgba(13, 24, 17, 0.15);
  }

  .dbs-about-facts div:nth-child(even) {
    padding-left: 1.25rem;
  }

  .dbs-about-value__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dbs-lux-trust,
  .dbs-lux-use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-lux-trust > div {
    padding: 1.4rem 1.25rem;
    border-right: 1px solid rgba(13, 24, 17, 0.12);
  }

  .dbs-lux-trust > div:nth-child(even) {
    border-right: 0;
  }

  .dbs-lux-trust > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .dbs-lux-use-cases__grid article:nth-child(odd) {
    padding-right: 2rem;
    border-right: 1px solid rgba(13, 24, 17, 0.16);
  }

  .dbs-lux-use-cases__grid article:nth-child(even) {
    padding-left: 2rem;
  }

  .dbs-moselle-territories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dbs-seo-editorial__inner {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
    gap: clamp(4rem, 8vw, 8rem);
  }

  .dbs-seo-aside {
    position: sticky;
    top: 7.5rem;
  }

  .dbs-service-chooser__layout,
  .dbs-rich-faq__layout {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  }

  .dbs-service-process__layout,
  .dbs-about-method__layout,
  .dbs-about-profile__layout {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  }

  .dbs-service-process__media,
  .dbs-about-method__media,
  .dbs-about-profile__portrait {
    position: sticky;
    top: 7.5rem;
  }

  .dbs-lux-intro__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  }

  .dbs-lux-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dbs-lux-trust > div,
  .dbs-lux-trust > div:nth-child(even) {
    border-right: 1px solid rgba(13, 24, 17, 0.12);
    border-bottom: 0;
  }

  .dbs-lux-trust > div:last-child {
    border-right: 0;
  }

  .dbs-lux-admin__layout {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  }

  .dbs-lux-admin__media {
    position: sticky;
    top: 7.5rem;
  }

  .dbs-lux-use-cases__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dbs-lux-use-cases__grid article,
  .dbs-lux-use-cases__grid article:nth-child(odd),
  .dbs-lux-use-cases__grid article:nth-child(even) {
    padding-right: 2rem;
    padding-left: 2rem;
    border-right: 1px solid rgba(13, 24, 17, 0.16);
  }

  .dbs-lux-use-cases__grid article:nth-child(3n + 1) {
    padding-left: 0;
  }

  .dbs-lux-use-cases__grid article:nth-child(3n) {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 1100px) {
  .dbs-service-offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dbs-service-offer__body h3 {
    min-height: 3.3em;
  }

  .dbs-service-offer__body ul {
    margin-top: auto;
  }

  .dbs-service-offer__footer {
    min-height: 2rem;
    margin-top: 1.35rem;
  }

  .dbs-lux-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1600px) {
  .dbs-service-offer__body h3 {
    min-height: 2.2em;
  }
}

@media (max-width: 767px) {
  .dbs-seo-hero {
    min-height: 660px;
  }

  .dbs-seo-hero__inner {
    padding-top: 8rem;
    padding-bottom: 1.75rem;
  }

  .dbs-seo-hero__copy {
    padding-block: 2.5rem;
  }

  .dbs-seo-hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.9), rgba(5, 7, 6, 0.42)),
      linear-gradient(0deg, rgba(5, 7, 6, 0.98), rgba(5, 7, 6, 0.08) 62%, rgba(5, 7, 6, 0.58));
  }

  .dbs-seo-hero__actions .dbs-button {
    width: 100%;
  }

  .dbs-seo-editorial__inner {
    gap: 3rem;
  }

  .dbs-seo-copy h2 {
    margin-top: 4rem;
  }

  .dbs-seo-cta__inner {
    padding-left: 1rem;
  }

  .dbs-service-region-card {
    min-height: 28rem;
  }

  .dbs-about-profile__actions .dbs-button {
    width: 100%;
  }

  .dbs-lux-intro__actions .dbs-button,
  .dbs-lux-reach__links a {
    width: 100%;
  }

  .dbs-seo-hero__proofs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-seo-hero__proofs li {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    border-radius: 5px;
  }

  .dbs-seo-explore__inner,
  .dbs-seo-explore nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .dbs-seo-explore nav {
    gap: 0.75rem;
  }
}

@media (max-width: 959px) {
  .dbs-seo-hero--profile .dbs-seo-hero__veil {
    background: linear-gradient(135deg, rgba(5, 7, 6, 0.22), rgba(5, 7, 6, 0.78));
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-seo-related__card img {
    transition: none;
  }

  .dbs-seo-related__card:hover img {
    transform: none;
  }
}

/* Homepage semantic service and local-intent cluster. */
.dbs-home-seo {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    radial-gradient(circle at 8% 15%, rgba(92, 125, 105, 0.2), transparent 28rem),
    linear-gradient(145deg, #0a0c0b, #111513 58%, #0b0d0c);
  color: var(--dbs-cream);
}

.dbs-home-seo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.08) 1px, transparent 1px);
  background-size: 8rem 8rem;
  mask-image: linear-gradient(120deg, #000, transparent 75%);
}

.dbs-home-seo__inner {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
}

.dbs-home-seo__heading {
  display: grid;
  gap: 1.8rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.dbs-home-seo__heading > div {
  max-width: 63rem;
}

.dbs-home-seo__eyebrow {
  margin: 0 0 1rem;
  color: var(--dbs-gold);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dbs-home-seo__heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 6rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.dbs-home-seo__heading > p {
  max-width: 36rem;
  margin: 0;
  color: rgba(246, 239, 227, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.dbs-home-seo__grid {
  display: grid;
  gap: 0;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-home-seo-card {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
  min-height: 13rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.16);
  color: var(--dbs-cream);
  text-decoration: none;
  transition: background-color 260ms var(--dbs-ease), padding 260ms var(--dbs-ease);
}

.dbs-home-seo-card:hover {
  padding-inline: 1rem;
  background: rgba(246, 239, 227, 0.045);
}

.dbs-home-seo-card__index {
  padding-top: 0.18rem;
  color: rgba(246, 239, 227, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dbs-home-seo-card div > p {
  margin: 0 0 0.55rem;
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-home-seo-card h3 {
  max-width: 28rem;
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 810;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.dbs-home-seo-card div > span {
  display: block;
  max-width: 28rem;
  margin-top: 1rem;
  color: rgba(246, 239, 227, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
}

.dbs-home-seo-card__arrow {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 50%;
  color: var(--dbs-cream);
  transition: color 260ms var(--dbs-ease), background-color 260ms var(--dbs-ease), transform 260ms var(--dbs-ease);
}

.dbs-home-seo-card:hover .dbs-home-seo-card__arrow {
  color: #0b0d0c;
  background: var(--dbs-gold);
  transform: translateX(0.2rem);
}

@media (min-width: 900px) {
  .dbs-home-seo__heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.55fr);
    align-items: end;
  }

  .dbs-home-seo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(246, 239, 227, 0.16);
  }

  .dbs-home-seo-card {
    padding: 2rem;
    border-right: 1px solid rgba(246, 239, 227, 0.16);
  }

  .dbs-home-seo-card:hover {
    padding-inline: 2.5rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .dbs-home-seo-card {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .dbs-home-seo-card__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-home-seo-card,
  .dbs-home-seo-card__arrow {
    transition: none;
  }

  .dbs-home-seo-card:hover {
    padding-inline: 0;
  }

  .dbs-home-seo-card:hover .dbs-home-seo-card__arrow {
    transform: none;
  }
}

.dbs-form-privacy {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: rgba(230, 223, 210, 0.72);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Lightweight social signature: no third-party feed or script before click. */
.dbs-site-footer {
  position: relative;
  overflow: hidden;
}

.dbs-footer-instagram {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.dbs-instagram-callout {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.1rem, 2.5vw, 2.25rem);
  min-height: 9.5rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 10px;
  padding: clamp(1.35rem, 2.6vw, 2.4rem);
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 10% 50%, rgba(184, 50, 47, 0.2), transparent 23rem),
    radial-gradient(circle at 88% 30%, rgba(215, 179, 111, 0.13), transparent 22rem),
    linear-gradient(110deg, #101512, #090a0b 56%, #130d0d);
  text-decoration: none;
  transition: border-color 260ms var(--dbs-ease), transform 260ms var(--dbs-ease), background-color 260ms var(--dbs-ease);
}

.dbs-instagram-callout::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.06) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.dbs-instagram-callout:hover {
  border-color: rgba(215, 179, 111, 0.6);
  transform: translateY(-3px);
}

.dbs-instagram-callout:focus-visible {
  outline: 2px solid var(--dbs-gold);
  outline-offset: 4px;
}

.dbs-instagram-callout__icon {
  display: grid;
  width: clamp(3.75rem, 6vw, 5.3rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(246, 239, 227, 0.22);
  border-radius: 50%;
  color: var(--dbs-cream);
  background: rgba(7, 8, 7, 0.48);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
}

.dbs-instagram-callout__icon svg {
  width: 42%;
  height: 42%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.dbs-instagram-callout__copy,
.dbs-instagram-callout__handle {
  display: grid;
}

.dbs-instagram-callout__copy {
  gap: 0.7rem;
}

.dbs-instagram-callout__copy small,
.dbs-instagram-callout__handle small {
  color: var(--dbs-gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dbs-instagram-callout__copy strong {
  max-width: 48rem;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 880;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.dbs-instagram-callout__handle {
  min-width: 12rem;
  gap: 0.55rem;
  justify-items: end;
  text-align: right;
}

.dbs-instagram-callout__handle b {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 820;
  line-height: 1;
}

@media (max-width: 767px) {
  .dbs-instagram-callout {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
  }

  .dbs-instagram-callout__handle {
    grid-column: 1 / -1;
    min-width: 0;
    justify-items: start;
    border-top: 1px solid rgba(246, 239, 227, 0.13);
    padding-top: 1.15rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-instagram-callout {
    transition: none;
  }

  .dbs-instagram-callout:hover {
    transform: none;
  }
}

.dbs-form-privacy a {
  color: #e6dfd2;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(209, 184, 133, 0.62);
  text-underline-offset: 0.2em;
}

.dbs-contact-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 1.5rem;
}

.dbs-contact-service-links a {
  color: rgba(230, 223, 210, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(209, 184, 133, 0.45);
  text-underline-offset: 0.22em;
}

.dbs-contact-service-links a:hover {
  color: #d1b885;
}

.dbs-search-page {
  min-height: 70svh;
  padding: clamp(10rem, 16vw, 13rem) clamp(1.25rem, 4vw, 4.5rem) clamp(5rem, 10vw, 9rem);
  background: #0b0d0c;
  color: var(--dbs-cream);
}

.dbs-search-page__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.dbs-search-page h1 {
  max-width: 56rem;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

.dbs-search-page__results {
  display: grid;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-search-page__results article {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.16);
}

.dbs-search-page__results article > p {
  color: var(--dbs-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-search-page__results h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.dbs-search-page__results h2 a {
  color: inherit;
  text-decoration: none;
}

.dbs-search-page__empty {
  max-width: 44rem;
  margin: 2rem 0 0;
  color: rgba(246, 239, 227, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.dbs-search-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Keep page and section titles within the scale established by the home hero. */
.dbs-contact-form-card__heading h1,
.dbs-gear-intro h1,
.dbs-search-page h1 {
  font-size: clamp(2.15rem, 4vw, 3.375rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.dbs-operator__copy h2,
.dbs-clients-section--early .dbs-clients-intro h2,
.dbs-project-editorial-heading h2,
.dbs-gear-cta h2,
.dbs-home-seo__heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.dbs-service-offer:focus-within,
.dbs-service-region-card:focus-visible,
.dbs-about-equipment-link:focus-visible,
.dbs-seo-explore a:focus-visible,
.dbs-rich-faq summary:focus-visible {
  outline: 2px solid var(--dbs-gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .dbs-service-offer,
  .dbs-service-offer__media img,
  .dbs-service-region-card img,
  .dbs-about-equipment-link,
  .dbs-seo-related__card img {
    transition: none;
  }

  .dbs-service-offer:hover,
  .dbs-service-offer:hover .dbs-service-offer__media img,
  .dbs-service-region-card:hover img,
  .dbs-seo-related__card:hover img {
    transform: none;
  }
}

/* Keep longer project names readable inside the mobile case-study frame. */
@media (max-width: 520px) {
  .dbs-case-hero > .relative {
    box-sizing: border-box;
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    min-width: 0;
  }

  .dbs-case-hero > .relative > div,
  .dbs-case-hero > .relative p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .dbs-case-hero h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }
}

/* Premium local landing system — Luxembourg and Moselle, v0.4.0. */
.dbs-seo-hero--local {
  min-height: min(660px, 80svh);
}

.dbs-seo-hero--local .dbs-seo-hero__inner {
  padding-bottom: 2rem;
}

.dbs-seo-hero--local .dbs-seo-hero__copy {
  max-width: 49rem;
  padding-block: 2.4rem;
}

.dbs-local-inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.dbs-local-nav {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(13, 24, 17, 0.14);
  color: #162019;
  background: #f3ede3;
}

.dbs-local-nav__inner {
  display: flex;
  min-height: 4.75rem;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.dbs-local-nav__inner > p {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  color: #516057;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-local-nav__inner > p span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--dbs-red);
  box-shadow: 0 0 0 0.3rem rgba(184, 50, 47, 0.12);
}

.dbs-local-nav__inner > div {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.dbs-local-nav a {
  display: inline-flex;
  padding: 0.68rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #4e5b53;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.dbs-local-nav a:hover,
.dbs-local-nav a[aria-current="page"] {
  border-color: rgba(13, 24, 17, 0.15);
  color: #111713;
  background: rgba(255, 255, 255, 0.55);
}

.dbs-local-overview,
.dbs-local-offers,
.dbs-local-operations,
.dbs-local-proof,
.dbs-local-territory,
.dbs-local-faq {
  position: relative;
  overflow: clip;
  padding: clamp(3.75rem, 6vw, 5.75rem) clamp(1.25rem, 4vw, 4.5rem);
}

.dbs-local-overview {
  color: #131a16;
  background:
    radial-gradient(circle at 7% 8%, rgba(184, 50, 47, 0.08), transparent 25rem),
    #f3ede3;
}

.dbs-local-overview--moselle {
  background:
    radial-gradient(circle at 94% 10%, rgba(92, 125, 105, 0.16), transparent 27rem),
    linear-gradient(145deg, #f3ede3, #ebe4d9);
}

.dbs-local-overview__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.25rem);
  align-items: center;
}

.dbs-local-overview__copy h2,
.dbs-local-heading h2,
.dbs-local-operations__intro h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 3.35vw, 3rem);
  font-weight: 870;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.dbs-local-overview__copy > p:not(.dbs-seo-eyebrow) {
  max-width: 42rem;
  margin: 1.05rem 0 0;
  color: #465047;
  font-size: 0.98rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.dbs-local-overview__copy .dbs-local-lead {
  margin-top: 1.4rem;
  color: #202b24;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.dbs-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
}

.dbs-local-arrow-link,
.dbs-local-footer-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.dbs-local-arrow-link span,
.dbs-local-footer-link span,
.dbs-local-reach a span,
.dbs-local-project-card strong span {
  transition: transform 220ms var(--dbs-ease);
}

.dbs-local-arrow-link:hover span,
.dbs-local-footer-link:hover span,
.dbs-local-reach a:hover span,
.dbs-local-project-card:hover strong span {
  transform: translateX(0.25rem);
}

.dbs-local-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(9rem, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  min-height: clamp(29rem, 38vw, 36rem);
}

.dbs-local-collage figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(13, 24, 17, 0.13);
  border-radius: 10px;
  background: #111513;
  box-shadow: 0 28px 68px -48px rgba(4, 9, 6, 0.72);
}

.dbs-local-collage__item--1 {
  grid-row: 1 / 3;
}

.dbs-local-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dbs-local-collage--moselle .dbs-local-collage__item--1 img {
  object-position: 52% center;
}

.dbs-local-collage > p {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  min-width: min(15rem, 68%);
  gap: 0.3rem;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(246, 239, 227, 0.2);
  border-radius: 8px;
  color: var(--dbs-cream);
  background: rgba(7, 10, 8, 0.76);
  backdrop-filter: blur(14px);
}

.dbs-local-collage > p strong {
  font-size: 1rem;
}

.dbs-local-collage > p span {
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.72rem;
  font-weight: 680;
}

.dbs-local-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(2.75rem, 5vw, 4.25rem) 0 0;
  border-top: 1px solid rgba(13, 24, 17, 0.16);
  border-bottom: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-local-facts > div {
  padding: 1.2rem 0.7rem;
  border-right: 1px solid rgba(13, 24, 17, 0.12);
  border-bottom: 1px solid rgba(13, 24, 17, 0.12);
}

.dbs-local-facts > div:nth-child(even) {
  border-right: 0;
}

.dbs-local-facts > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.dbs-local-facts dt,
.dbs-local-reach p {
  color: #7b5c22;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-local-overview--moselle .dbs-local-facts dt {
  color: #4f705a;
}

.dbs-local-facts dd {
  margin: 0.55rem 0 0;
  color: #1b241e;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.4;
}

.dbs-local-heading > p:not(.dbs-seo-eyebrow),
.dbs-local-heading--split > p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(246, 239, 227, 0.67);
  font-size: 0.98rem;
  line-height: 1.7;
}

.dbs-local-heading--split {
  display: grid;
  gap: 1.25rem 3rem;
  align-items: end;
}

.dbs-local-heading--split > p {
  margin: 0;
}

.dbs-local-offers {
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 50, 47, 0.13), transparent 28rem),
    linear-gradient(135deg, #090c0a, #111513 57%, #120d0c);
}

.dbs-local-offers--moselle {
  background:
    radial-gradient(circle at 92% 8%, rgba(92, 125, 105, 0.19), transparent 30rem),
    linear-gradient(135deg, #111513, #080b09 58%, #12100c);
}

.dbs-local-offers::before,
.dbs-local-proof::before,
.dbs-local-territory::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 7rem 7rem;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.dbs-local-offers > .dbs-local-inner,
.dbs-local-proof > .dbs-local-inner,
.dbs-local-territory > .dbs-local-inner {
  position: relative;
  z-index: 1;
}

.dbs-local-offers__grid {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.dbs-local-offer-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 10px;
  background: rgba(246, 239, 227, 0.035);
}

.dbs-local-offer-card figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #060907;
}

.dbs-local-offer-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--dbs-ease);
}

.dbs-local-offer-card:hover figure img {
  transform: scale(1.035);
}

.dbs-local-offer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.35rem, 2.25vw, 1.8rem);
}

.dbs-local-offer-card__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.dbs-local-offer-card__meta span {
  color: var(--dbs-red);
  font-size: 0.7rem;
  font-weight: 880;
}

.dbs-local-offer-card__meta p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.dbs-local-offer-card h3 {
  margin: 1.3rem 0 0;
  color: var(--dbs-cream);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 850;
  line-height: 1.13;
  letter-spacing: -0.02em;
}

.dbs-local-offer-card__body > p {
  margin: 0.85rem 0 0;
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.91rem;
  line-height: 1.62;
}

.dbs-local-offer-card ul {
  display: grid;
  gap: 0.45rem;
  margin: auto 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(246, 239, 227, 0.13);
  color: rgba(246, 239, 227, 0.84);
  font-size: 0.82rem;
  font-weight: 680;
  list-style: none;
}

.dbs-local-offer-card__body > p + ul {
  margin-top: 1.2rem;
}

.dbs-local-offer-card li {
  position: relative;
  padding-left: 0.9rem;
}

.dbs-local-offer-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--dbs-gold);
}

.dbs-local-footer-link {
  margin-top: 1.65rem;
  color: var(--dbs-cream);
}

.dbs-local-operations {
  color: #172019;
  background:
    radial-gradient(circle at 5% 92%, rgba(92, 125, 105, 0.1), transparent 26rem),
    #e8e1d6;
}

.dbs-local-operations--moselle {
  background:
    radial-gradient(circle at 95% 12%, rgba(184, 50, 47, 0.07), transparent 24rem),
    #ece5da;
}

.dbs-local-operations__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.dbs-local-operations__intro > div > p:not(.dbs-seo-eyebrow) {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: #475149;
  font-size: 0.95rem;
  line-height: 1.68;
}

.dbs-local-operations__intro figure {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 2rem 0 0;
  border: 1px solid rgba(13, 24, 17, 0.14);
  border-radius: 10px;
  background: #101411;
}

.dbs-local-operations__intro picture,
.dbs-local-operations__intro figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.dbs-local-operations__intro figure img {
  object-fit: cover;
}

.dbs-local-operations__intro figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 6, 0.9));
}

.dbs-local-operations__intro figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.25rem;
  color: var(--dbs-cream);
}

.dbs-local-operations__intro figcaption strong {
  font-size: 0.92rem;
}

.dbs-local-operations__intro figcaption span {
  color: rgba(246, 239, 227, 0.68);
  font-size: 0.75rem;
}

.dbs-local-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dbs-local-steps li {
  min-width: 0;
  padding: clamp(1.3rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(13, 24, 17, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.42);
}

.dbs-local-steps li > span {
  color: var(--dbs-red);
  font-size: 0.68rem;
  font-weight: 880;
}

.dbs-local-steps li > p {
  margin: 1.4rem 0 0;
  color: #755a27;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbs-local-steps h3 {
  margin: 0.55rem 0 0;
  color: #172019;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 830;
  line-height: 1.22;
}

.dbs-local-steps li > div {
  margin-top: 0.7rem;
  color: #4b554e;
  font-size: 0.86rem;
  line-height: 1.6;
}

.dbs-local-source {
  margin: 1.2rem 0 0;
  color: #687169;
  font-size: 0.76rem;
  line-height: 1.55;
}

.dbs-local-source a {
  color: #5d471c;
  font-weight: 760;
  text-underline-offset: 0.18em;
}

.dbs-local-proof,
.dbs-local-territory {
  color: var(--dbs-cream);
  background:
    radial-gradient(circle at 90% 8%, rgba(209, 184, 133, 0.11), transparent 26rem),
    #0d100e;
}

.dbs-local-projects {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.dbs-local-project-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 10px;
  color: var(--dbs-cream);
  background: rgba(246, 239, 227, 0.03);
  text-decoration: none;
}

.dbs-local-project-card figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: #080a09;
}

.dbs-local-project-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--dbs-ease);
}

.dbs-local-project-card:hover figure img {
  transform: scale(1.035);
}

.dbs-local-project-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.dbs-local-project-card p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dbs-local-project-card h3 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 840;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.dbs-local-project-card > div > span {
  margin-top: 0.8rem;
  color: rgba(246, 239, 227, 0.66);
  font-size: 0.88rem;
  line-height: 1.58;
}

.dbs-local-project-card strong {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--dbs-cream);
  font-size: 0.78rem;
}

.dbs-local-reach {
  display: grid;
  gap: 1px;
  margin-top: 0.8rem;
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 9px;
  background: rgba(246, 239, 227, 0.15);
}

.dbs-local-reach > div,
.dbs-local-reach nav {
  padding: 1.25rem;
  background: #121613;
}

.dbs-local-reach p {
  margin: 0;
  color: var(--dbs-gold);
}

.dbs-local-reach strong {
  display: block;
  margin-top: 0.55rem;
  color: rgba(246, 239, 227, 0.88);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dbs-local-reach nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

.dbs-local-reach a {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  color: var(--dbs-cream);
  font-size: 0.79rem;
  font-weight: 780;
  text-decoration: none;
}

.dbs-local-territory {
  background:
    radial-gradient(circle at 7% 4%, rgba(92, 125, 105, 0.19), transparent 29rem),
    #0b0e0c;
}

.dbs-local-territory__board {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
}

.dbs-local-territory__map {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.15);
  border-radius: 10px;
  isolation: isolate;
  background:
    radial-gradient(circle at 73% 32%, rgba(209, 184, 133, 0.14), transparent 9rem),
    radial-gradient(circle at 38% 59%, rgba(92, 125, 105, 0.22), transparent 13rem),
    linear-gradient(145deg, #17201a, #090c0a 72%);
}

.dbs-local-territory__map::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(246, 239, 227, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.055) 1px, transparent 1px);
  background-size: 3.75rem 3.75rem;
  mask-image: linear-gradient(140deg, #000, rgba(0, 0, 0, 0.2) 80%);
}

.dbs-local-territory__signal {
  position: absolute;
  z-index: 1;
  inset: 1.5rem;
}

.dbs-local-territory__signal::before,
.dbs-local-territory__signal::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(209, 184, 133, 0.16);
  border-radius: 50%;
}

.dbs-local-territory__signal::before {
  top: 8%;
  right: 12%;
  width: 16rem;
  height: 16rem;
}

.dbs-local-territory__signal::after {
  top: 17%;
  right: 21%;
  width: 9rem;
  height: 9rem;
}

.dbs-local-territory__node {
  position: absolute;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(246, 239, 227, 0.62);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dbs-local-territory__node i {
  width: 0.48rem;
  height: 0.48rem;
  border: 2px solid #0d110e;
  border-radius: 50%;
  background: var(--dbs-gold);
  box-shadow: 0 0 0 0.35rem rgba(209, 184, 133, 0.13);
}

.dbs-local-territory__node::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0.2rem;
  width: clamp(5rem, 12vw, 9rem);
  border-top: 1px dashed rgba(209, 184, 133, 0.26);
  transform-origin: left center;
}

.dbs-local-territory__node--thionville {
  top: 18%;
  right: 11%;
}

.dbs-local-territory__node--thionville::after {
  transform: rotate(145deg);
}

.dbs-local-territory__node--metz {
  top: 45%;
  left: 42%;
}

.dbs-local-territory__node--metz::after {
  transform: rotate(-52deg);
}

.dbs-local-territory__node--grand-est {
  top: 31%;
  left: 12%;
}

.dbs-local-territory__node--grand-est::after {
  transform: rotate(24deg);
}

.dbs-local-territory__map-copy {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
}

.dbs-local-territory__map-copy > span {
  color: var(--dbs-gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dbs-local-territory__map-copy strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--dbs-cream);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.dbs-local-territory__map-copy p {
  margin: 0.75rem 0 0;
  color: rgba(246, 239, 227, 0.72);
  font-size: 0.88rem;
  font-weight: 720;
}

.dbs-local-territory__cards {
  display: grid;
  gap: 0.8rem;
}

.dbs-local-territory__cards article {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.4rem 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 9px;
  background: rgba(246, 239, 227, 0.035);
}

.dbs-local-territory__cards article > span {
  grid-row: 1 / 5;
  color: var(--dbs-red);
  font-size: 0.68rem;
  font-weight: 880;
}

.dbs-local-territory__cards article > p {
  margin: 0;
  color: var(--dbs-gold);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dbs-local-territory__cards h3 {
  margin: 0.35rem 0 0;
  color: var(--dbs-cream);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.2;
}

.dbs-local-territory__cards article > div {
  margin-top: 0.4rem;
  color: rgba(246, 239, 227, 0.65);
  font-size: 0.84rem;
  line-height: 1.55;
}

.dbs-local-use-cases {
  display: grid;
  gap: 1.5rem 3rem;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(246, 239, 227, 0.15);
}

.dbs-local-use-cases h3 {
  max-width: 31rem;
  margin: 0;
  color: var(--dbs-cream);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.dbs-local-use-cases__grid {
  display: grid;
  border-top: 1px solid rgba(246, 239, 227, 0.13);
}

.dbs-local-use-cases__grid article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(246, 239, 227, 0.13);
}

.dbs-local-use-cases__grid strong {
  color: rgba(246, 239, 227, 0.9);
  font-size: 0.88rem;
}

.dbs-local-use-cases__grid span {
  color: rgba(246, 239, 227, 0.55);
  font-size: 0.77rem;
}

.dbs-local-faq {
  color: #172019;
  background:
    radial-gradient(circle at 94% 8%, rgba(92, 125, 105, 0.1), transparent 24rem),
    #f7f2ea;
}

.dbs-local-faq__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.dbs-local-faq .dbs-local-heading > p:not(.dbs-seo-eyebrow) {
  color: #59635b;
}

.dbs-local-faq__items {
  border-top: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-local-faq__items details {
  border-bottom: 1px solid rgba(13, 24, 17, 0.16);
}

.dbs-local-faq__items summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.25rem;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 0;
  color: #172019;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 790;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.dbs-local-faq__items summary::-webkit-details-marker {
  display: none;
}

.dbs-local-faq__items summary > span:last-child {
  color: var(--dbs-red);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.dbs-local-faq__items details[open] summary > span:last-child {
  transform: rotate(45deg);
}

.dbs-local-faq__items details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--dbs-ease);
}

.dbs-local-faq__items details[open] > div {
  grid-template-rows: 1fr;
}

.dbs-local-faq__items details > div > p {
  max-width: 45rem;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 2rem 0 0;
  color: #4e5850;
  font-size: 0.91rem;
  line-height: 1.65;
}

.dbs-local-faq__items details[open] > div > p {
  padding-bottom: 1.25rem;
}

.dbs-local-nav a:focus-visible,
.dbs-local-arrow-link:focus-visible,
.dbs-local-footer-link:focus-visible,
.dbs-local-project-card:focus-visible,
.dbs-local-reach a:focus-visible,
.dbs-local-faq summary:focus-visible {
  outline: 2px solid var(--dbs-gold);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .dbs-local-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-local-facts > div {
    padding-inline: 1.25rem;
    border-right: 1px solid rgba(13, 24, 17, 0.12);
  }

  .dbs-local-facts > div:nth-child(even) {
    border-right: 0;
  }

  .dbs-local-facts > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .dbs-local-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-local-use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-local-use-cases__grid article:nth-child(odd) {
    padding-right: 1.25rem;
    border-right: 1px solid rgba(246, 239, 227, 0.13);
  }

  .dbs-local-use-cases__grid article:nth-child(even) {
    padding-left: 1.25rem;
  }
}

@media (min-width: 768px) {
  .dbs-local-offers__grid,
  .dbs-local-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-local-offers__grid > :first-child,
  .dbs-local-projects > :first-child {
    grid-column: 1 / -1;
  }

  .dbs-local-offers__grid > :first-child figure,
  .dbs-local-projects > :first-child figure {
    aspect-ratio: 16 / 7;
  }

  .dbs-local-reach {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbs-local-reach nav {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .dbs-local-overview__grid {
    grid-template-columns: minmax(23rem, 0.88fr) minmax(32rem, 1.12fr);
  }

  .dbs-local-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dbs-local-facts > div,
  .dbs-local-facts > div:nth-child(even) {
    border-right: 1px solid rgba(13, 24, 17, 0.12);
    border-bottom: 0;
  }

  .dbs-local-facts > div:last-child {
    border-right: 0;
  }

  .dbs-local-heading--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.55fr);
  }

  .dbs-local-operations__grid {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  }

  .dbs-local-territory__board {
    grid-template-columns: minmax(0, 1.12fr) minmax(23rem, 0.88fr);
  }

  .dbs-local-use-cases {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  }

  .dbs-local-faq__grid {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (min-width: 1180px) {
  .dbs-local-offers__grid,
  .dbs-local-projects {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .dbs-local-offers__grid > *,
  .dbs-local-projects > * {
    grid-column: span 3;
  }

  .dbs-local-offers__grid > :first-child,
  .dbs-local-projects > :first-child {
    grid-column: span 6;
  }

  .dbs-local-offers__grid > :first-child figure,
  .dbs-local-projects > :first-child figure {
    aspect-ratio: 16 / 9;
  }

  .dbs-local-offer-card:first-child h3,
  .dbs-local-project-card:first-child h3 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
  }

  .dbs-local-reach {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(17rem, 0.72fr);
  }

  .dbs-local-reach nav {
    grid-column: auto;
    flex-direction: column;
    gap: 0.65rem;
  }
}

@media (max-width: 767px) {
  .dbs-seo-hero--local {
    min-height: 620px;
  }

  .dbs-seo-hero--local .dbs-seo-hero__inner {
    padding-top: 7.5rem;
  }

  .dbs-seo-hero--local .dbs-seo-hero__copy {
    padding-block: 2rem;
  }

  .dbs-seo-hero--local .dbs-seo-hero__proofs {
    gap: 0.35rem;
    margin-top: 1.15rem;
  }

  .dbs-seo-hero--local .dbs-seo-hero__proofs li {
    padding: 0.48rem 0.6rem;
    font-size: 0.61rem;
  }

  .dbs-local-nav {
    overflow-x: auto;
    padding-inline: 1.25rem;
    scrollbar-width: none;
  }

  .dbs-local-nav::-webkit-scrollbar {
    display: none;
  }

  .dbs-local-nav__inner {
    width: max-content;
    min-height: 4.1rem;
  }

  .dbs-local-nav__inner > p {
    display: none;
  }

  .dbs-local-overview,
  .dbs-local-offers,
  .dbs-local-operations,
  .dbs-local-proof,
  .dbs-local-territory,
  .dbs-local-faq {
    padding-block: 3.5rem;
  }

  .dbs-local-collage {
    grid-template-columns: minmax(0, 1.2fr) minmax(7.5rem, 0.8fr);
    min-height: 25rem;
  }

  .dbs-local-collage > p {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 13rem;
    padding: 0.85rem;
  }

  .dbs-local-actions .dbs-button {
    width: 100%;
  }

  .dbs-local-territory__map {
    min-height: 25rem;
  }
}

@media (max-width: 420px) {
  .dbs-local-collage {
    min-height: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-local-offer-card figure img,
  .dbs-local-project-card figure img,
  .dbs-local-arrow-link span,
  .dbs-local-footer-link span,
  .dbs-local-reach a span,
  .dbs-local-project-card strong span,
  .dbs-local-faq__items details > div {
    transition: none;
  }

  .dbs-local-offer-card:hover figure img,
  .dbs-local-project-card:hover figure img,
  .dbs-local-arrow-link:hover span,
  .dbs-local-footer-link:hover span,
  .dbs-local-reach a:hover span,
  .dbs-local-project-card:hover strong span {
    transform: none;
  }
}


/* Local landing refinement — clearer copy, textured light surfaces and image-led layouts, v0.4.1. */
.dbs-local-nav {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.72), transparent 44%),
    linear-gradient(90deg, #eee5d8, #f7f1e8 55%, #e9dfd2);
}

.dbs-local-nav__inner > p,
.dbs-local-nav a {
  color: #334038;
}

.dbs-local-nav a:hover,
.dbs-local-nav a[aria-current="page"] {
  border-color: rgba(13, 24, 17, 0.22);
  color: #0b110d;
  background: rgba(255, 255, 255, 0.78);
}

.dbs-local-overview,
.dbs-local-operations,
.dbs-local-faq {
  isolation: isolate;
}

.dbs-local-overview {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.64), transparent 42%),
    radial-gradient(circle at 84% 11%, rgba(209, 184, 133, 0.23), transparent 27rem),
    radial-gradient(circle at 6% 92%, rgba(184, 50, 47, 0.09), transparent 24rem),
    linear-gradient(155deg, #e9dfd2 0%, #f8f2e9 48%, #e5dbce 100%);
}

.dbs-local-overview--moselle {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.68), transparent 40%),
    radial-gradient(circle at 88% 13%, rgba(92, 125, 105, 0.22), transparent 29rem),
    radial-gradient(circle at 5% 92%, rgba(209, 184, 133, 0.17), transparent 24rem),
    linear-gradient(150deg, #e8dfd2 0%, #f5efe6 50%, #e1d9ce 100%);
}

.dbs-local-operations {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.48), transparent 46%),
    radial-gradient(circle at 7% 88%, rgba(92, 125, 105, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(209, 184, 133, 0.15), transparent 23rem),
    linear-gradient(160deg, #e1d8ca, #f1eadf 52%, #ddd3c6);
}

.dbs-local-operations--moselle {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.53), transparent 46%),
    radial-gradient(circle at 92% 10%, rgba(184, 50, 47, 0.09), transparent 24rem),
    radial-gradient(circle at 6% 90%, rgba(92, 125, 105, 0.18), transparent 26rem),
    linear-gradient(155deg, #e5dccf, #f2ece2 54%, #dcd3c7);
}

.dbs-local-faq {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.68), transparent 43%),
    radial-gradient(circle at 91% 9%, rgba(92, 125, 105, 0.17), transparent 25rem),
    radial-gradient(circle at 7% 93%, rgba(209, 184, 133, 0.15), transparent 23rem),
    linear-gradient(150deg, #eee6da, #faf5ed 52%, #e5dcd0);
}

.dbs-local-overview::before,
.dbs-local-operations::before,
.dbs-local-faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='.82'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.dbs-local-overview > .dbs-local-inner,
.dbs-local-operations > .dbs-local-inner,
.dbs-local-faq > .dbs-local-inner {
  position: relative;
  z-index: 1;
}

.dbs-local-overview__grid {
  align-items: stretch;
}

.dbs-local-overview__copy {
  align-self: center;
}

.dbs-local-overview__copy h2,
.dbs-local-operations__intro h2,
.dbs-local-faq .dbs-local-heading h2 {
  color: #0b110d;
}

.dbs-local-overview__copy > p:not(.dbs-seo-eyebrow) {
  color: #29342c;
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  font-weight: 535;
  line-height: 1.72;
}

.dbs-local-overview__copy > p.dbs-local-lead {
  color: #111914;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 620;
  line-height: 1.6;
}

.dbs-local-overview .dbs-seo-eyebrow,
.dbs-local-operations .dbs-seo-eyebrow,
.dbs-local-faq .dbs-seo-eyebrow {
  color: #72501a;
}

.dbs-local-overview--moselle .dbs-seo-eyebrow,
.dbs-local-operations--moselle .dbs-seo-eyebrow {
  color: #315e46;
}

.dbs-local-person-link {
  color: #111914;
  font-weight: 820;
  text-decoration-color: rgba(184, 50, 47, 0.55);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.dbs-local-person-link:hover {
  color: #8f2826;
}

.dbs-local-person-link:focus-visible {
  outline: 2px solid var(--dbs-red);
  outline-offset: 3px;
}

.dbs-local-feature-image {
  position: relative;
  min-width: 0;
  height: clamp(29rem, 37vw, 35rem);
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(13, 24, 17, 0.24);
  border-radius: 9px;
  isolation: isolate;
  background: #101411;
  box-shadow: 0 34px 78px -48px rgba(5, 10, 7, 0.82);
}

.dbs-local-feature-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 1rem;
  border: 1px solid rgba(246, 239, 227, 0.32);
  border-radius: 4px;
  pointer-events: none;
}

.dbs-local-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 5, 0.16) 35%, rgba(4, 7, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 7, 5, 0.35), transparent 48%);
  pointer-events: none;
}

.dbs-local-feature-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.91) contrast(1.07);
  transition: filter 700ms var(--dbs-ease), transform 700ms var(--dbs-ease);
}

.dbs-local-feature-image--luxembourg img {
  object-position: 52% center;
}

.dbs-local-feature-image--moselle img {
  object-position: 50% center;
}

.dbs-local-feature-image:hover img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.022);
}

.dbs-local-feature-image figcaption,
.dbs-local-offers__stage figcaption {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--dbs-gold);
  color: var(--dbs-cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.dbs-local-feature-image figcaption {
  top: 2.1rem;
  left: 2.1rem;
  max-width: calc(100% - 4.2rem);
}

.dbs-local-feature-image figcaption span,
.dbs-local-offers__stage figcaption span {
  color: #e4c78e;
  font-size: 0.66rem;
  font-weight: 880;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.dbs-local-feature-image figcaption strong,
.dbs-local-offers__stage figcaption strong {
  color: var(--dbs-cream);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 820;
  line-height: 1.3;
}

.dbs-local-facts {
  border-color: rgba(13, 24, 17, 0.24);
}

.dbs-local-facts > div {
  border-color: rgba(13, 24, 17, 0.17);
}

.dbs-local-facts dt,
.dbs-local-reach p {
  color: #6d4c17;
}

.dbs-local-overview--moselle .dbs-local-facts dt {
  color: #315e46;
}

.dbs-local-facts dd {
  color: #101713;
  font-size: 0.95rem;
  font-weight: 790;
}

.dbs-local-heading > p:not(.dbs-seo-eyebrow),
.dbs-local-heading--split > p {
  color: rgba(246, 239, 227, 0.83);
  font-weight: 520;
}

.dbs-local-offers {
  background:
    radial-gradient(circle at 90% 8%, rgba(184, 50, 47, 0.18), transparent 28rem),
    radial-gradient(circle at 8% 92%, rgba(209, 184, 133, 0.08), transparent 24rem),
    linear-gradient(135deg, #070a08, #101411 57%, #130c0b);
}

.dbs-local-offers--moselle {
  background:
    radial-gradient(circle at 90% 8%, rgba(92, 125, 105, 0.25), transparent 30rem),
    radial-gradient(circle at 8% 92%, rgba(209, 184, 133, 0.08), transparent 24rem),
    linear-gradient(135deg, #0e1410, #070a08 58%, #12100c);
}

.dbs-local-offers__stage {
  position: relative;
  height: clamp(24rem, 36vw, 32rem);
  min-height: 0;
  overflow: hidden;
  margin: clamp(2.25rem, 4vw, 3.5rem) 0 0;
  border: 1px solid rgba(246, 239, 227, 0.19);
  border-radius: 9px;
  isolation: isolate;
  background: #070a08;
}

.dbs-local-offers__stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 1rem;
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 4px;
  pointer-events: none;
}

.dbs-local-offers__stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 5, 0.08) 34%, rgba(4, 7, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 7, 5, 0.4), transparent 55%);
  pointer-events: none;
}

.dbs-local-offers__stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.06);
}

.dbs-local-offers--moselle .dbs-local-offers__stage img {
  object-position: 58% 48%;
}

.dbs-local-offers__stage figcaption {
  top: 2.1rem;
  left: 2.1rem;
  max-width: calc(100% - 4.2rem);
}

.dbs-local-offers__list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: -4.5rem clamp(1rem, 2.2vw, 2rem) 0;
}

.dbs-local-offers__list .dbs-local-offer-card {
  border-color: rgba(246, 239, 227, 0.2);
  border-radius: 8px;
  background: rgba(10, 14, 11, 0.96);
  box-shadow: 0 24px 46px -34px rgba(0, 0, 0, 0.95);
}

.dbs-local-offers__list .dbs-local-offer-card__body {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.dbs-local-offer-card__body > p {
  color: rgba(246, 239, 227, 0.82);
}

.dbs-local-offer-card ul {
  color: rgba(246, 239, 227, 0.91);
}

.dbs-local-operations__intro > div > p:not(.dbs-seo-eyebrow) {
  color: #2d3830;
  font-size: 1rem;
  font-weight: 535;
}

.dbs-local-operations__intro figure {
  border-color: rgba(13, 24, 17, 0.23);
  box-shadow: 0 28px 62px -46px rgba(5, 10, 7, 0.75);
}

.dbs-local-operations__intro figcaption span {
  color: rgba(246, 239, 227, 0.82);
}

.dbs-local-steps li {
  border-color: rgba(13, 24, 17, 0.19);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px -36px rgba(5, 10, 7, 0.7);
}

.dbs-local-steps li > p {
  color: #6d4c17;
}

.dbs-local-steps h3 {
  color: #101713;
}

.dbs-local-steps li > div {
  color: #334038;
  font-size: 0.89rem;
}

.dbs-local-source {
  color: #49554c;
}

.dbs-local-source a {
  color: #4f390e;
}

.dbs-local-project-card > div > span,
.dbs-local-territory__cards article > div {
  color: rgba(246, 239, 227, 0.79);
}

.dbs-local-territory__node,
.dbs-local-use-cases__grid span {
  color: rgba(246, 239, 227, 0.7);
}

.dbs-local-faq .dbs-local-heading > p:not(.dbs-seo-eyebrow),
.dbs-local-faq__items details > div > p {
  color: #303c33;
  font-weight: 525;
}

.dbs-local-faq__items summary {
  color: #0f1712;
  font-weight: 820;
}

@media (max-width: 900px) {
  .dbs-local-offers__list {
    grid-template-columns: 1fr;
    margin-inline: clamp(0.75rem, 3vw, 1.5rem);
  }

  .dbs-local-offer-card__body > p + ul {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .dbs-local-overview__grid {
    gap: 2rem;
  }

  .dbs-local-feature-image {
    height: clamp(25rem, 120vw, 31rem);
    min-height: 0;
  }

  .dbs-local-offers__stage {
    height: clamp(20rem, 88vw, 27rem);
    min-height: 0;
  }

  .dbs-local-offers__list {
    margin-top: -2.25rem;
  }
}

@media (max-width: 479px) {
  .dbs-local-feature-image {
    height: 23rem;
    min-height: 0;
  }

  .dbs-local-offers__stage {
    height: 23rem;
    min-height: 0;
  }

  .dbs-local-feature-image::before,
  .dbs-local-offers__stage::before {
    inset: 0.7rem;
  }

  .dbs-local-feature-image figcaption,
  .dbs-local-offers__stage figcaption {
    top: 1.65rem;
    left: 1.65rem;
    max-width: calc(100% - 3.3rem);
  }

  .dbs-local-offers__list {
    margin: 0.75rem 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbs-local-feature-image img {
    transition: none;
  }

  .dbs-local-feature-image:hover img {
    transform: none;
  }
}

/* Moselle territory artwork generated for the local landing, v0.4.2. */
.dbs-local-territory__map {
  background:
    linear-gradient(90deg, rgba(7, 11, 8, 0.76) 0%, rgba(7, 11, 8, 0.4) 43%, rgba(7, 11, 8, 0.12) 76%, rgba(7, 11, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 11, 8, 0.08) 28%, rgba(7, 11, 8, 0.76) 100%),
    url("../images/seo/moselle-map-art-v1.webp") center / cover no-repeat;
}

.dbs-local-territory__map::before {
  z-index: 0;
  opacity: 0.44;
  background:
    linear-gradient(rgba(246, 239, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(135deg, #000, rgba(0, 0, 0, 0.16) 78%);
}

.dbs-local-territory__signal,
.dbs-local-territory__map-copy {
  z-index: 2;
}
