/* ==========================================================================
   DSDB Agency Onepage — Frontend Stylesheet
   Dark Premium Growth Studio — Minimal · Strategic · Technological · Confident

   Theme independence note: this stylesheet is scoped almost entirely under
   `.dsdb-site` on purpose, so it never leaks into (or fights with) the
   active theme's own styling — this plugin has been built and verified
   against GeneratePress Free as the recommended base theme, but contains
   no GeneratePress-specific selectors and works the same way under any
   theme. This file is enqueued after the active theme's own stylesheet
   (see DSDB_Assets::init()), so it always wins the cascade on the pages
   where it loads, without ever dequeuing or disabling theme assets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   00 Full Canvas host reset (theme-agnostic)

   Applies ONLY on the plugin's own "DSDB Onepage — Full Canvas" template,
   identified by the `dsdb-full-canvas` body class added in
   templates/full-canvas.php. That template never renders the active
   theme's header/footer/content wrappers at all (they are simply never
   called), so there is nothing to hide here — this block only neutralizes
   body-level defaults (margin/padding/background/width) that a theme's
   global stylesheet (e.g. GeneratePress) may set on <body> itself, so the
   DSDB page can render truly edge-to-edge underneath `.dsdb-site`.
   -------------------------------------------------------------------------- */

body.dsdb-full-canvas {
  margin: 0;
  padding: 0;
  width: auto;
  max-width: none;
  overflow-x: hidden;
  background: #071014;
}

/* --------------------------------------------------------------------------
   01 Reset / scope
   -------------------------------------------------------------------------- */

.dsdb-site,
.dsdb-site *,
.dsdb-site *::before,
.dsdb-site *::after {
  box-sizing: border-box;
}

.dsdb-site {
  margin: 0;
  padding: 0;
}

.dsdb-site img {
  max-width: 100%;
  height: auto;
  display: block;
}

.dsdb-site ul,
.dsdb-site ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dsdb-site a {
  text-decoration: none;
  color: inherit;
}

.dsdb-site button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.dsdb-site input,
.dsdb-site textarea,
.dsdb-site select {
  font: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   02 Tokens
   -------------------------------------------------------------------------- */

.dsdb-site {
  --dsdb-bg: #071014;
  --dsdb-bg-soft: #0a1519;
  --dsdb-surface: #0d1a1f;
  --dsdb-surface-2: #102127;

  --dsdb-text: #f4f7f8;
  --dsdb-text-soft: #c4cdd1;
  --dsdb-muted: #8fa0a7;

  --dsdb-accent: #48e4e7;
  --dsdb-accent-strong: #1bc7cc;
  --dsdb-accent-soft: rgba(72, 228, 231, 0.12);

  --dsdb-border: rgba(152, 225, 228, 0.15);
  --dsdb-border-strong: rgba(72, 228, 231, 0.34);

  --dsdb-danger: #ff7f7f;
  --dsdb-success: #77e7bd;

  --dsdb-container: 1280px;
  --dsdb-text-max: 760px;

  --dsdb-radius-sm: 10px;
  --dsdb-radius: 16px;
  --dsdb-radius-lg: 24px;

  --dsdb-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --dsdb-transition: 220ms cubic-bezier(.2,.7,.2,1);

  --dsdb-section-space: 112px;
}

/* --------------------------------------------------------------------------
   03 Typography
   -------------------------------------------------------------------------- */

.dsdb-site {
  /* Anchor the rem base explicitly. `rem` units are always relative to the
     root <html> element's font-size, which a theme (e.g. GeneratePress
     typography settings) may change globally. Setting it here means every
     rem-based size in this file keeps rendering exactly as designed
     regardless of the active theme's own font-size choices. */
  font-size: 16px;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--dsdb-bg);
  color: var(--dsdb-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

.dsdb-eyebrow {
  margin: 0 0 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dsdb-accent);
}

.dsdb-heading-lg {
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 3.7vw, 3.55rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dsdb-text);
}

/* Used only on the Experience section's headline ("23+ jaar ervaring..."),
   which the art direction calls out as a specific brand statement that
   should read with slightly more weight than other section headlines. */
.dsdb-heading-lg--feature {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.dsdb-body-text {
  margin: 0 0 20px;
  max-width: var(--dsdb-text-max);
  color: var(--dsdb-text-soft);
  font-size: 1.125rem;
  line-height: 1.7;
}

.dsdb-body-text:last-child {
  margin-bottom: 0;
}

/* "Lead" paragraph: the first, intro-like paragraph directly under a
   section headline. Sits between the headline and regular body copy in
   the visual hierarchy — larger and lighter-weight than standard body
   text, but never as loud as a headline. */
.dsdb-body-text--lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--dsdb-text-soft);
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   04 Layout
   -------------------------------------------------------------------------- */

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

.dsdb-section {
  padding-block: var(--dsdb-section-space);
  position: relative;
}

.dsdb-section__intro {
  max-width: var(--dsdb-text-max);
  margin-bottom: 56px;
}

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

.dsdb-skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--dsdb-accent);
  color: #04191b;
  padding: 12px 18px;
  border-radius: var(--dsdb-radius-sm);
  font-weight: 600;
  transition: top var(--dsdb-transition);
}

.dsdb-skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   05 Header
   -------------------------------------------------------------------------- */

.dsdb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dsdb-transition), border-color var(--dsdb-transition), backdrop-filter var(--dsdb-transition);
}

.dsdb-header.is-scrolled {
  background: rgba(6, 14, 18, 0.88);
  border-bottom-color: var(--dsdb-border);
}

@supports (backdrop-filter: blur(1px)) {
  .dsdb-header.is-scrolled {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

.dsdb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.dsdb-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dsdb-logo__img {
  width: 158px;
  height: auto;
}

.dsdb-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.dsdb-nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.dsdb-nav__link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dsdb-text-soft);
  transition: color var(--dsdb-transition);
  position: relative;
}

.dsdb-nav__link:hover,
.dsdb-nav__link:focus-visible {
  color: var(--dsdb-text);
}

.dsdb-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--dsdb-radius-sm);
  color: var(--dsdb-text);
  position: relative;
}

.dsdb-nav-toggle__icon {
  display: flex;
}

.dsdb-nav-toggle__icon--close {
  display: none;
}

.dsdb-nav-toggle[aria-expanded="true"] .dsdb-nav-toggle__icon--open {
  display: none;
}

.dsdb-nav-toggle[aria-expanded="true"] .dsdb-nav-toggle__icon--close {
  display: flex;
}

/* --------------------------------------------------------------------------
   06 Hero
   -------------------------------------------------------------------------- */

.dsdb-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: -84px;
  padding-top: 84px;
}

/* Subtle cinematic fade at the very bottom of the hero into the page
   background, so the transition into the next section feels intentional
   rather than an abrupt cut. Restrained: no extra imagery, just a soft
   gradient in the existing dark palette. */
.dsdb-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--dsdb-bg));
}

.dsdb-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--dsdb-hero-image-desktop);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.dsdb-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 13, .96) 0%,
    rgba(4, 10, 13, .86) 38%,
    rgba(4, 10, 13, .35) 68%,
    rgba(4, 10, 13, .18) 100%
  );
}

.dsdb-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 96px;
}

.dsdb-hero__content {
  max-width: var(--dsdb-text-max);
}

.dsdb-hero__title {
  margin: 0 0 32px;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dsdb-text);
}

.dsdb-hero__accent {
  color: var(--dsdb-accent);
}

.dsdb-hero__intro {
  margin: 0 0 44px;
  max-width: 640px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--dsdb-text-soft);
}

.dsdb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.dsdb-hero__microcopy {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dsdb-muted);
}

/* --------------------------------------------------------------------------
   07 Common sections
   -------------------------------------------------------------------------- */

.dsdb-card-grid {
  display: grid;
  gap: 28px;
}

.dsdb-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.dsdb-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.dsdb-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--dsdb-surface-2), var(--dsdb-surface));
  border: 1px solid var(--dsdb-border);
  border-radius: var(--dsdb-radius);
  padding: 46px 36px;
  min-height: 272px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dsdb-transition), transform var(--dsdb-transition), box-shadow var(--dsdb-transition);
}

/* Subtle teal glow that only appears on hover/focus — no constant neon. */
.dsdb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at 24% -10%, var(--dsdb-accent-soft), transparent 65%);
  opacity: 0;
  transition: opacity var(--dsdb-transition);
  pointer-events: none;
}

.dsdb-card:hover,
.dsdb-card:focus-within {
  border-color: var(--dsdb-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.55);
}

.dsdb-card:hover::after,
.dsdb-card:focus-within::after {
  opacity: 1;
}

.dsdb-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
  border-radius: var(--dsdb-radius-sm);
  background: var(--dsdb-accent-soft);
  border: 1px solid var(--dsdb-border);
  color: var(--dsdb-accent);
}

.dsdb-card__icon .dsdb-icon {
  width: 28px;
  height: 28px;
}

.dsdb-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--dsdb-text);
}

.dsdb-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dsdb-text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.dsdb-icon {
  display: block;
}

/* --------------------------------------------------------------------------
   08 Vision
   -------------------------------------------------------------------------- */

/* Section background rhythm: flat base tone — the calm "anchor" directly
   after the hero, which already fades into this exact tone via
   .dsdb-hero::after, so the hand-off stays seamless. */
.dsdb-vision {
  background: var(--dsdb-bg);
}

.dsdb-vision__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.dsdb-vision__micro {
  border-left: 3px solid var(--dsdb-border-strong);
  padding-left: 32px;
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--dsdb-text);
}

.dsdb-vision__micro p {
  margin: 0 0 6px;
}

/* --------------------------------------------------------------------------
   09 Expertise
   -------------------------------------------------------------------------- */

/* Shares .dsdb-card-grid / .dsdb-card, see 07 */

/* Section background rhythm: a soft, full-bleed lift across the middle of
   the section that fades back to the flat base tone at the very top and
   bottom edges. Reads as a distinct "panel" against Vision/Werkwijze
   without ever creating a hard seam against either of them. */
.dsdb-expertise {
  background: linear-gradient(
    180deg,
    var(--dsdb-bg) 0%,
    var(--dsdb-bg-soft) 16%,
    var(--dsdb-bg-soft) 84%,
    var(--dsdb-bg) 100%
  );
}

/* --------------------------------------------------------------------------
   10 Process
   -------------------------------------------------------------------------- */

/* Section background rhythm: back to the flat base tone. Matches
   Expertise's own top/bottom gradient stops exactly, so no seam appears
   on either side of this section. */
.dsdb-process {
  background: var(--dsdb-bg);
}

/* Werkwijze is styled as one continuous process/framework rather than four
   separate standalone cards: a single connecting line runs behind all
   steps, with each step number rendered as a small node sitting on that
   line. No per-step card background/border — the steps read as stages of
   one flow instead of four disconnected boxes. */
.dsdb-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  padding-top: 4px;
  counter-reset: dsdb-step;
}

.dsdb-process__steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dsdb-border-strong) 4%, var(--dsdb-border-strong) 96%, transparent);
}

.dsdb-process__step {
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  border: none;
}

.dsdb-process__number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 0 26px;
  border-radius: 50%;
  background: var(--dsdb-bg);
  border: 1px solid var(--dsdb-border-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dsdb-accent);
}

.dsdb-process__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--dsdb-radius-sm);
  background: var(--dsdb-accent-soft);
  border: 1px solid var(--dsdb-border);
  color: var(--dsdb-accent);
  margin-bottom: 20px;
}

.dsdb-process__icon .dsdb-icon {
  width: 26px;
  height: 26px;
}

.dsdb-process__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.dsdb-process__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dsdb-text-soft);
  max-width: 260px;
}

/* Superseded by the continuous ::before line above; kept unstyled/hidden
   so the existing (aria-hidden, purely decorative) markup stays harmless. */
.dsdb-process__connector {
  display: none;
}

/* --------------------------------------------------------------------------
   11 LuxaLife
   -------------------------------------------------------------------------- */

/* Section background rhythm: LuxaLife stays the page's clear "spotlight"
   moment — a richer, lighter surface tone across the full body of the
   section (previously identical to Contact's background; now visually
   distinct from every neighbouring section). A short fade at the very
   top/bottom edges (well inside the section's own padding, never
   overlapping any content) keeps the transition in/out soft instead of a
   hard cut. */
.dsdb-luxalife {
  background: var(--dsdb-surface-2);
}

.dsdb-luxalife::before,
.dsdb-luxalife::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: none;
}

.dsdb-luxalife::before {
  top: 0;
  background: linear-gradient(180deg, var(--dsdb-bg), transparent);
}

.dsdb-luxalife::after {
  bottom: 0;
  background: linear-gradient(180deg, transparent, var(--dsdb-bg));
}

.dsdb-luxalife__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.dsdb-luxalife__image {
  width: 100%;
  border-radius: var(--dsdb-radius-lg);
  box-shadow: var(--dsdb-shadow);
}

.dsdb-luxalife__placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--dsdb-radius-lg);
  border: 1px solid var(--dsdb-border-strong);
  background:
    radial-gradient(560px circle at 20% 0%, var(--dsdb-accent-soft), transparent 55%),
    radial-gradient(420px circle at 100% 100%, rgba(72, 228, 231, 0.08), transparent 60%),
    linear-gradient(160deg, var(--dsdb-surface-2), var(--dsdb-bg-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  overflow: hidden;
}

/* Restrained "viewfinder" corner brackets — a technological, branded detail
   standing in for a real case photo, without implying an actual product
   image or fabricated visual. */
.dsdb-luxalife__placeholder::before,
.dsdb-luxalife__placeholder::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid var(--dsdb-border-strong);
  opacity: 0.8;
}

.dsdb-luxalife__placeholder::before {
  top: 26px;
  left: 26px;
  border-right: none;
  border-bottom: none;
}

.dsdb-luxalife__placeholder::after {
  bottom: 26px;
  right: 26px;
  border-left: none;
  border-top: none;
}

.dsdb-luxalife__placeholder-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dsdb-text);
}

.dsdb-luxalife__placeholder-sub {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dsdb-accent);
}

.dsdb-luxalife__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.dsdb-tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--dsdb-border);
  color: var(--dsdb-text-soft);
}

.dsdb-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dsdb-accent);
  transition: gap var(--dsdb-transition);
}

.dsdb-link-arrow:hover,
.dsdb-link-arrow:focus-visible {
  gap: 16px;
}

/* --------------------------------------------------------------------------
   12 Partnership
   -------------------------------------------------------------------------- */

/* Section background rhythm: flat base tone again — a calm "breath" after
   the LuxaLife spotlight. Matches the fade at LuxaLife's own bottom edge
   exactly, so no seam appears between the two sections. */
.dsdb-partnership {
  background: var(--dsdb-bg);
}

/* Shares .dsdb-card-grid--3 / .dsdb-card as a base, but the three principles
   are deliberately calmer than the Expertise cards: no boxed background,
   no lift/hover glow, no border — an open, editorial layout that reads as
   senior and quiet rather than another set of "product" cards. */
.dsdb-card--principle {
  background: none;
  border: none;
  padding: 0;
  min-height: 0;
}

.dsdb-card--principle::after {
  display: none;
}

.dsdb-card--principle:hover,
.dsdb-card--principle:focus-within {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.dsdb-card--principle .dsdb-card__icon {
  background: transparent;
  border: 1px solid var(--dsdb-border-strong);
  color: var(--dsdb-accent);
}

.dsdb-card--principle .dsdb-card__title {
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   13 Experience
   -------------------------------------------------------------------------- */

/* Section background rhythm: a slightly more pronounced lift than
   Expertise's — this credibility "moment" earns a touch more presence —
   fading back to the flat base tone at both edges so it blends seamlessly
   with Partnership above and Contact below. */
.dsdb-experience {
  background: linear-gradient(
    180deg,
    var(--dsdb-bg) 0%,
    var(--dsdb-surface) 18%,
    var(--dsdb-surface) 82%,
    var(--dsdb-bg) 100%
  );
}

.dsdb-experience__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.dsdb-experience__photo {
  width: 100%;
  border-radius: var(--dsdb-radius-lg);
  box-shadow: var(--dsdb-shadow);
}

.dsdb-experience__panel {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--dsdb-radius-lg);
  border: 1px solid var(--dsdb-border-strong);
  background: linear-gradient(160deg, var(--dsdb-surface-2), var(--dsdb-bg-soft));
  box-shadow: var(--dsdb-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px;
  text-align: center;
  overflow: hidden;
}

.dsdb-experience__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--dsdb-accent-soft), transparent 70%);
  top: -70px;
  right: -70px;
  filter: blur(6px);
}

.dsdb-experience__quote {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  color: var(--dsdb-text);
  position: relative;
  z-index: 1;
}

.dsdb-experience__mark {
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--dsdb-accent);
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   14 Contact
   -------------------------------------------------------------------------- */

/* Section background rhythm: Contact is the page's closing "chapter" — a
   full surface tone (Experience ends flat at the base tone above it, so a
   short top fade here bridges the two without a hard seam) that hands
   off directly into the Footer's own, slightly darker tone below. */
.dsdb-contact {
  background: var(--dsdb-surface);
}

.dsdb-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, var(--dsdb-bg), transparent);
  pointer-events: none;
}

.dsdb-contact__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.dsdb-contact__intro {
  position: sticky;
  top: 110px;
}

/* --------------------------------------------------------------------------
   15 Footer
   -------------------------------------------------------------------------- */

/* Section background rhythm: the footer closes the page on the darkest,
   flattest tone (same as Vision, right after the hero) so the page reads
   as a deliberate light/dark breathing rhythm from top to bottom and
   ends on an unmistakably "closed" note. The existing thin border-top
   stays as the only hard edge on the whole page — a single 1px hairline,
   not a heavy divider — with a short fade above it easing out of
   Contact's lighter surface tone. */
.dsdb-footer {
  position: relative;
  padding-block: 92px 48px;
  border-top: 1px solid var(--dsdb-border);
  background: var(--dsdb-bg);
}

.dsdb-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, var(--dsdb-surface), transparent);
  pointer-events: none;
}

.dsdb-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dsdb-border);
}

.dsdb-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.dsdb-footer__nav a {
  color: var(--dsdb-text-soft);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--dsdb-transition);
}

.dsdb-footer__nav a:hover,
.dsdb-footer__nav a:focus-visible {
  color: var(--dsdb-text);
}

.dsdb-footer__socials {
  display: flex;
  gap: 16px;
}

.dsdb-footer__socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--dsdb-border);
  color: var(--dsdb-text-soft);
  transition: color var(--dsdb-transition), border-color var(--dsdb-transition);
}

.dsdb-footer__socials a:hover,
.dsdb-footer__socials a:focus-visible {
  color: var(--dsdb-accent);
  border-color: var(--dsdb-border-strong);
}

.dsdb-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  font-size: 0.9rem;
  color: var(--dsdb-muted);
}

.dsdb-footer__legal {
  display: flex;
  gap: 18px;
}

.dsdb-footer__legal a {
  color: var(--dsdb-muted);
  transition: color var(--dsdb-transition);
}

.dsdb-footer__legal a:hover,
.dsdb-footer__legal a:focus-visible {
  color: var(--dsdb-text);
}

/* --------------------------------------------------------------------------
   16 Forms
   -------------------------------------------------------------------------- */

.dsdb-form {
  max-width: 720px;
}

.dsdb-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dsdb-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dsdb-form__field {
  margin-bottom: 28px;
}

.dsdb-form__label {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dsdb-text);
}

.dsdb-form__input,
.dsdb-form__textarea,
.dsdb-form__select {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  background: rgba(244, 247, 248, 0.04);
  border: 1px solid var(--dsdb-border);
  border-radius: var(--dsdb-radius-sm);
  color: var(--dsdb-text);
  font-size: 1rem;
  transition: border-color var(--dsdb-transition), background-color var(--dsdb-transition), box-shadow var(--dsdb-transition);
}

.dsdb-form__input::placeholder,
.dsdb-form__textarea::placeholder {
  color: var(--dsdb-muted);
}

.dsdb-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.dsdb-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fa0a7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 48px;
}

.dsdb-form__input:focus,
.dsdb-form__textarea:focus,
.dsdb-form__select:focus {
  outline: none;
  border-color: var(--dsdb-accent);
  background: rgba(244, 247, 248, 0.06);
  box-shadow: 0 0 0 4px var(--dsdb-accent-soft);
}

.dsdb-form__input[aria-invalid="true"],
.dsdb-form__textarea[aria-invalid="true"],
.dsdb-form__select[aria-invalid="true"] {
  border-color: var(--dsdb-danger);
}

/* The <select> itself inherits the site's white text colour, which also
   bleeds into its native <option> popup list. That native popup is
   rendered by the OS/browser with its own (usually white) background —
   not something CSS can reliably restyle cross-browser — so without an
   explicit, opposite-contrast colour here the option text becomes white
   on white. This only affects the browser-native dropdown list; the
   closed select box itself keeps its normal dark/translucent styling. */
.dsdb-form__select option {
  color: #04191b;
  background: #ffffff;
}

.dsdb-form__error {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--dsdb-danger);
  min-height: 1em;
}

.dsdb-form__submit-row {
  margin-top: 12px;
}

.dsdb-form__submit-row .dsdb-btn {
  padding: 16px 44px;
  font-size: 1.05rem;
}

.dsdb-form__feedback {
  margin-top: 20px;
  font-size: 0.98rem;
  border-radius: var(--dsdb-radius-sm);
}

.dsdb-form__feedback:not(:empty) {
  padding: 15px 18px;
  border: 1px solid transparent;
}

.dsdb-form__feedback.is-success {
  color: var(--dsdb-success);
  background: rgba(119, 231, 189, 0.08);
  border-color: rgba(119, 231, 189, 0.3);
}

.dsdb-form__feedback.is-error {
  color: var(--dsdb-danger);
  background: rgba(255, 127, 127, 0.08);
  border-color: rgba(255, 127, 127, 0.3);
}

/* --------------------------------------------------------------------------
   17 Animations
   -------------------------------------------------------------------------- */

.dsdb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms cubic-bezier(.2,.7,.2,1), transform 640ms cubic-bezier(.2,.7,.2,1);
}

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

.dsdb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform var(--dsdb-transition), background-color var(--dsdb-transition), border-color var(--dsdb-transition), color var(--dsdb-transition), box-shadow var(--dsdb-transition);
  border: 1px solid transparent;
}

.dsdb-btn--primary {
  background: var(--dsdb-accent);
  color: #04191b;
  box-shadow: 0 16px 36px -14px rgba(72, 228, 231, 0.55);
}

.dsdb-btn--primary:hover,
.dsdb-btn--primary:focus-visible {
  background: var(--dsdb-accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -12px rgba(72, 228, 231, 0.65);
}

.dsdb-btn--secondary {
  background: rgba(244, 247, 248, 0.03);
  color: var(--dsdb-text);
  border-color: var(--dsdb-border-strong);
}

.dsdb-btn--secondary:hover,
.dsdb-btn--secondary:focus-visible {
  border-color: var(--dsdb-accent);
  color: var(--dsdb-accent);
  background: var(--dsdb-accent-soft);
}

.dsdb-site :focus-visible {
  outline: 2px solid var(--dsdb-accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   18 Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .dsdb-site {
    --dsdb-section-space: 110px;
  }

  .dsdb-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dsdb-process__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }

  /* The single-row connecting line only makes visual sense across one row
     of 4; once steps wrap to a 2x2 grid, hide it rather than have it run
     through the middle of the second row. */
  .dsdb-process__steps::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .dsdb-vision__inner,
  .dsdb-luxalife__inner,
  .dsdb-experience__inner,
  .dsdb-contact__inner {
    grid-template-columns: 1fr;
  }

  .dsdb-luxalife__visual {
    order: -1;
  }

  .dsdb-contact__intro {
    position: static;
  }

  .dsdb-card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dsdb-hero {
    min-height: 680px;
  }

  .dsdb-hero__media {
    background-position: 68% center;
  }

  .dsdb-hero__overlay {
    background: linear-gradient(
      100deg,
      rgba(4, 10, 13, .97) 10%,
      rgba(4, 10, 13, .82) 50%,
      rgba(4, 10, 13, .4) 100%
    );
  }
}

@media (max-width: 767px) {
  .dsdb-site {
    --dsdb-section-space: 64px;
  }

  /* Tighter mobile rhythm: less dead vertical space between eyebrow,
     heading, section intro and the content that follows, so the page
     scans faster on a phone. Scoped entirely to this media query, so
     desktop spacing (>=768px) is completely unaffected. */
  .dsdb-eyebrow {
    margin-bottom: 14px;
  }

  .dsdb-heading-lg {
    margin-bottom: 18px;
  }

  .dsdb-section__intro {
    margin-bottom: 32px;
  }

  .dsdb-card-grid {
    gap: 16px;
  }

  .dsdb-header {
    height: 72px;
  }

  .dsdb-nav {
    position: fixed;
    inset: 72px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 32px 20px;
    background: rgba(5, 12, 15, 0.98);
    border-top: 1px solid var(--dsdb-border);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--dsdb-transition), visibility var(--dsdb-transition);
    overflow-y: auto;
  }

  .dsdb-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .dsdb-nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }

  .dsdb-nav__link {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--dsdb-border);
  }

  .dsdb-nav__cta {
    margin-top: 20px;
    width: 100%;
  }

  .dsdb-nav-toggle {
    display: inline-flex;
  }

  .dsdb-hero {
    min-height: 0;
    padding-top: 72px;
    margin-top: -72px;
  }

  .dsdb-hero__inner {
    padding-block: 48px 40px;
  }

  /* Compact the hero's internal rhythm on mobile (eyebrow spacing is
     already handled by the shared .dsdb-eyebrow mobile rule above) so the
     headline/intro/CTAs read as one tight, confident block instead of a
     tall, loosely-spaced stack. Background image/crop/overlay are left
     untouched, as requested. */
  .dsdb-hero__title {
    margin-bottom: 18px;
  }

  .dsdb-hero__intro {
    margin-bottom: 28px;
  }

  .dsdb-hero__actions {
    gap: 14px;
    margin-bottom: 20px;
  }

  .dsdb-hero__microcopy {
    font-size: 0.85rem;
  }

  .dsdb-hero__media {
    background-image: var(--dsdb-hero-image-mobile);
    background-position: 72% center;
  }

  .dsdb-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 10, 13, .55) 0%,
      rgba(4, 10, 13, .9) 42%,
      rgba(4, 10, 13, .98) 100%
    );
  }

  .dsdb-hero__title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .dsdb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dsdb-hero__actions .dsdb-btn {
    width: 100%;
  }

  /* Stacked two-column sections (Vision, LuxaLife, Experience, Contact)
     already collapse to a single column at <=991px, but kept their
     desktop gap value, which reads as a large empty gap once stacked.
     Tighten it just for phones. */
  .dsdb-vision__inner {
    gap: 32px;
  }

  .dsdb-vision__micro {
    padding-left: 20px;
    font-size: 1.2rem;
  }

  .dsdb-luxalife__inner {
    gap: 28px;
  }

  .dsdb-experience__inner {
    gap: 28px;
  }

  .dsdb-contact__inner {
    gap: 32px;
  }

  .dsdb-form__row {
    grid-template-columns: 1fr;
  }

  .dsdb-form__field {
    margin-bottom: 18px;
  }

  .dsdb-form__label {
    margin-bottom: 8px;
  }

  .dsdb-form__textarea {
    min-height: 100px;
  }

  .dsdb-form__submit-row {
    margin-top: 4px;
  }

  .dsdb-form__submit-row .dsdb-btn {
    width: 100%;
  }

  .dsdb-card-grid--4,
  .dsdb-card-grid--3 {
    grid-template-columns: 1fr;
  }

  /* Expertise + Partnership cards: more compact card shell, larger,
     clearer icon, less distance between icon/title/text so all four
     (or three) items are scannable within seconds. Excludes
     .dsdb-card--principle's own padding/background (see section 12),
     it only ever contributes size/spacing values that section already
     inherits. */
  .dsdb-card:not(.dsdb-card--principle) {
    padding: 28px 24px;
    min-height: 0;
  }

  .dsdb-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .dsdb-card__icon .dsdb-icon {
    width: 30px;
    height: 30px;
  }

  .dsdb-card__title {
    margin-bottom: 8px;
  }

  /* Vertical timeline: a single line runs down the left edge, with each
     numbered node sitting on it and the step content offset to the right. */
  .dsdb-process__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
  }

  /* Larger node (44px incl. circle, up from 38px) needs the line
     recentred on the new node middle (44 / 2 = 22px) and a touch more
     weight so the 1->2->3->4 flow reads clearly on a phone. */
  .dsdb-process__steps::before {
    display: block;
    top: 6px;
    bottom: 6px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--dsdb-border-strong) 4%, var(--dsdb-border-strong) 96%, transparent);
  }

  .dsdb-process__step {
    padding-left: 58px;
  }

  .dsdb-process__number {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .dsdb-process__icon {
    margin-bottom: 14px;
  }

  .dsdb-process__icon .dsdb-icon {
    width: 28px;
    height: 28px;
  }

  .dsdb-process__title {
    margin-bottom: 8px;
  }

  .dsdb-process__text {
    max-width: none;
  }

  .dsdb-footer {
    padding-block: 56px 32px;
  }

  .dsdb-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
  }

  .dsdb-footer__nav ul {
    gap: 16px;
  }

  .dsdb-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
  }

  /* Section background rhythm — mobile reinforcement: on a phone, users
     scroll fast and the subtle background gradients/fades from section 07b
     onward are easier to miss than on a slow desktop scroll. A single,
     thin (1px) hairline in the same subtle border colour already used
     across the site (header, footer, cards) makes each section read as
     its own "chapter" a little more explicitly, without introducing any
     new heavy divider style. */
  .dsdb-expertise,
  .dsdb-process,
  .dsdb-luxalife,
  .dsdb-partnership,
  .dsdb-experience,
  .dsdb-contact {
    border-top: 1px solid var(--dsdb-border);
  }
}

@media (max-width: 479px) {
  .dsdb-hero__title {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .dsdb-eyebrow {
    font-size: 0.78rem;
  }

  .dsdb-heading-lg {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  /* :not(.dsdb-card--principle) keeps the calmer, unboxed Partnership
     principles (see section 12) from regaining card padding/min-height
     here — this rule is only meant to shrink the boxed Expertise cards. */
  .dsdb-card:not(.dsdb-card--principle) {
    padding: 24px 20px;
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   19 Reduced motion / accessibility
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .dsdb-site * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .dsdb-reveal {
    opacity: 1;
    transform: none;
  }
}

.dsdb-site {
  overflow-x: hidden;
}
