:root {
  --dp-bg: #e9e1d6;
  --dp-bg-soft: #f5efe6;
  --dp-surface: rgba(255, 252, 247, 0.9);
  --dp-surface-strong: #fffaf4;
  --dp-panel: #10161b;
  --dp-panel-2: #171f25;
  --dp-panel-3: #242d34;
  --dp-text: #171c20;
  --dp-muted: #626765;
  --dp-line: rgba(17, 22, 27, 0.1);
  --dp-line-strong: rgba(17, 22, 27, 0.18);
  --dp-accent: #c86f38;
  --dp-accent-dark: #974f26;
  --dp-white: #fffaf4;
  --dp-radius-sm: 18px;
  --dp-radius: 30px;
  --dp-radius-lg: 42px;
  --dp-shell: min(1200px, calc(100% - 32px));
  --dp-reading: min(640px, 100%);
  --dp-shadow-sm: 0 16px 34px rgba(16, 22, 27, 0.08);
  --dp-shadow: 0 30px 70px rgba(16, 22, 27, 0.12);
  --dp-shadow-lg: 0 44px 110px rgba(16, 22, 27, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body.dp-preview {
  margin: 0;
  color: var(--dp-text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(200, 111, 56, 0.2), transparent 22%),
    radial-gradient(circle at top right, rgba(20, 28, 34, 0.08), transparent 20%),
    linear-gradient(180deg, #f7f1e8 0%, var(--dp-bg) 38%, #e2d8cb 100%);
}

body.dh-preview {
  background:
    radial-gradient(circle at top left, rgba(200, 111, 56, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(20, 28, 34, 0.08), transparent 18%),
    linear-gradient(180deg, #f6efe5 0%, #e7ddd1 42%, #ddd2c5 100%);
}

.dp-preview img {
  display: block;
  max-width: 100%;
  height: auto;
}

.dp-shell {
  width: var(--dp-shell);
  margin: 0 auto;
}

.dp-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 18px 0 0;
}

.dp-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(17, 22, 27, 0.08);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 58px rgba(16, 22, 27, 0.08);
}

.dp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-brand__mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  font-size: 0.88rem;
  box-shadow: inset 0 0 0 1px rgba(17, 22, 27, 0.08);
}

.dp-brand__text {
  display: grid;
  gap: 3px;
}

.dp-eyebrow {
  color: var(--dp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dp-brand__text small {
  color: var(--dp-muted);
  font-size: 0.9rem;
}

.dp-nav {
  display: flex;
  justify-content: center;
}

.dp-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dp-nav a,
.dp-link-inline {
  color: var(--dp-text);
  text-decoration: none;
  font-weight: 600;
}

.dp-nav a {
  font-size: 0.88rem;
  white-space: nowrap;
}

.dp-actions {
  display: flex;
  gap: 12px;
}

.dp-button,
.dp-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    text-shadow 0.22s ease;
}

.dp-button {
  background: var(--dp-accent);
  color: var(--dp-white);
  box-shadow: 0 20px 44px rgba(200, 111, 56, 0.28);
}

.dp-button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--dp-white);
  background: transparent;
}

.dp-card:hover,
.dp-case-card:hover,
.dp-mag-card:hover {
  transform: translateY(-3px);
}

.dp-button:hover,
.dp-button:active,
.dp-button:focus-visible {
  background: linear-gradient(135deg, var(--dp-accent), #da8951);
  border-color: rgba(218, 137, 81, 0.95);
  box-shadow:
    0 0 24px rgba(200, 111, 56, 0.5),
    0 20px 46px rgba(200, 111, 56, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  filter: brightness(1.05) saturate(1.04);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.22);
}

.dp-button-secondary:hover,
.dp-button-secondary:active,
.dp-button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
  filter: brightness(1.06);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.dp-main {
  padding: 28px 0 96px;
}

.dh-preview .dp-main {
  padding-top: 24px;
}

.dp-section {
  margin-top: 34px;
}

.dh-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(17, 22, 27, 0.08);
  border-radius: 36px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 24px 60px rgba(16, 22, 27, 0.07);
}

.dh-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 111, 56, 0.14), rgba(200, 111, 56, 0));
  pointer-events: none;
}

.dh-panel--soft {
  background: rgba(255, 251, 246, 0.74);
}

.dh-panel--warm {
  background:
    radial-gradient(circle at top left, rgba(200, 111, 56, 0.08), transparent 24%),
    rgba(250, 244, 236, 0.82);
}

.dh-panel > * {
  position: relative;
  z-index: 1;
}

.dp-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--dp-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(140deg, #0f151a 0%, #151d23 58%, #222b32 100%);
  color: var(--dp-white);
  box-shadow: var(--dp-shadow-lg);
}

.dp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px;
}

.dp-hero__grid > * {
  min-width: 0;
}

.dp-hero__content {
  max-width: 700px;
}

.dp-kicker {
  margin: 0 0 16px;
  display: block;
  color: #9e5f38;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.32;
  text-transform: uppercase;
}

.dp-display,
.dp-title {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.dp-display {
  max-width: 9ch;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.dh-preview .dp-display {
  max-width: 8.8ch;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

.dp-lead {
  max-width: 35rem;
  margin: 22px 0 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 1.06rem;
  line-height: 1.65;
}

.dp-hero .dp-kicker,
.dp-cta .dp-kicker,
.dp-media-note .dp-kicker {
  color: rgba(255, 210, 186, 0.92);
}

.dh-preview .dp-lead {
  max-width: 41rem;
}

.dp-hero__points {
  display: none;
}

.dp-hero__points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 244, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
}

.dh-preview .dp-hero__points span {
  background: rgba(255, 255, 255, 0.1);
}

.dp-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.dp-hero__aside {
  position: relative;
  display: flex;
  align-self: stretch;
}

.dp-media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.dp-hero__aside .dp-media-card {
  width: 100%;
  height: 100%;
  padding: 14px;
}

.dp-media-card img,
.dp-media-card .dh-video-facade,
.dp-media-card .dh-video-card.is-loaded {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  min-height: clamp(380px, 42vw, 560px);
  border-radius: 26px;
}

.dp-media-card img {
  object-fit: cover;
  object-position: center;
}

.dp-media-card .dh-video-facade,
.dp-media-card .dh-video-card.is-loaded {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0a0d10;
  box-shadow: none;
}

.dp-media-card .dh-video-facade {
  position: relative;
}

.dp-media-card .dh-video-facade img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.dp-media-card .dh-video-facade::after {
  background:
    radial-gradient(circle at 20% 18%, rgba(200, 111, 56, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.04) 0%, rgba(10, 13, 16, 0.44) 100%);
}

.dp-media-card .dh-video-play {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.dp-media-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  border: 0;
  border-radius: inherit;
  background: #0a0d10;
}

.dp-media-card--landscape iframe,
.dp-media-card--landscape img,
.dp-media-card--landscape .dh-video-facade,
.dp-media-card--landscape .dh-video-card.is-loaded {
  aspect-ratio: 16 / 10;
  min-height: clamp(290px, 26vw, 390px);
}

.dp-media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(8, 12, 15, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
}

.dp-media-note p {
  margin: 0;
}

.dp-media-note p + p {
  margin-top: 8px;
  font-size: 1.02rem;
  font-weight: 700;
}

.dp-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dp-strip__item,
.dp-card,
.dp-case-card,
.dp-mag-card,
.dp-quote,
.dp-process,
.dp-faq,
.dp-cta {
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  background: var(--dp-surface);
  box-shadow: var(--dp-shadow-sm);
}

.dp-strip__item {
  padding: 20px 22px;
}

.dp-strip__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.dp-section__head {
  max-width: var(--dp-reading);
  margin-bottom: 22px;
}

.dp-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dp-section__head .dp-lead {
  margin-top: 14px;
  color: var(--dp-muted);
}

.dp-grid-4,
.dp-grid-3,
.dp-grid-2 {
  display: grid;
  gap: 18px;
}

.dp-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.dp-card {
  padding: 24px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.dp-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  height: clamp(220px, 26vw, 340px);
  margin: 0 0 18px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.dp-card p:last-child,
.dp-strip__item p:last-child,
.dp-mag-card p:last-child {
  margin-bottom: 0;
}

.dp-card h3,
.dp-case-card h3,
.dp-mag-card h3,
.dp-process h3,
.dp-faq h3,
.dp-cta h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.dh-preview .dp-card h3,
.dh-preview .dp-process h3,
.dh-preview .dp-faq h3,
.dh-preview .dp-mag-card h3 {
  text-wrap: balance;
}

.dp-card p,
.dp-case-card p,
.dp-mag-card p,
.dp-process p,
.dp-faq p,
.dp-cta p {
  color: var(--dp-muted);
}

.dp-case-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: var(--dp-white);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.dp-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dp-case-card:hover img {
  transform: scale(1.03);
}

.dp-case-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(7, 10, 12, 0.06) 0%, rgba(7, 10, 12, 0.72) 62%, rgba(7, 10, 12, 0.92) 100%);
}

.dp-case-card__overlay p,
.dp-case-card__overlay h3 {
  color: var(--dp-white);
}

.dp-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dp-case-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
}

.dp-process,
.dp-faq,
.dp-quote,
.dp-cta {
  padding: 28px;
}

.dp-proof-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  background: var(--dp-surface);
  box-shadow: var(--dp-shadow-sm);
}

.dp-proof-panel ul,
.dp-proof-panel ol {
  margin: 0;
  padding-left: 20px;
}

.dp-proof-panel li + li {
  margin-top: 10px;
}

.dp-proof-media {
  display: block;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--dp-radius);
  border: 1px solid var(--dp-line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--dp-shadow-sm);
}

.dp-proof-media img,
.dp-proof-media iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 28vw, 430px);
  object-fit: cover;
  object-position: center;
  border: 0;
}

.dp-breadcrumb {
  display: none;
}

.dp-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.dp-breadcrumb span:last-child {
  color: var(--dp-text);
  font-weight: 600;
}

.dp-process ol,
.dp-faq ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.dp-process li,
.dp-faq li {
  margin-bottom: 12px;
}

.dp-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: center;
}

.dp-quote img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.dh-mag-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dh-mag-jumpnav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 22, 27, 0.08);
  background: rgba(255, 250, 244, 0.88);
  color: var(--dp-text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: var(--dp-shadow-sm);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.dh-mag-jumpnav a:hover,
.dh-mag-jumpnav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 111, 56, 0.26);
  box-shadow: 0 18px 32px rgba(16, 22, 27, 0.1);
}

.dh-mag-cluster__lead {
  max-width: 56rem;
  margin: 14px 0 0;
  color: var(--dp-muted);
}

.dh-mag-cluster__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
}

.dh-mag-cluster__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 72%, var(--dp-muted));
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dh-mag-cluster__chips span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dh-mag-accent, var(--dp-accent));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 12%, transparent);
}

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

.dh-mag-cluster {
  --dh-mag-accent: var(--dp-accent);
  --dh-mag-soft: rgba(200, 111, 56, 0.08);
}

.dh-mag-cluster--entry {
  --dh-mag-accent: #c86f38;
  --dh-mag-soft: rgba(200, 111, 56, 0.08);
}

.dh-mag-cluster--people {
  --dh-mag-accent: #be7246;
  --dh-mag-soft: rgba(190, 114, 70, 0.08);
}

.dh-mag-cluster--sales {
  --dh-mag-accent: #57778d;
  --dh-mag-soft: rgba(87, 119, 141, 0.08);
}

.dh-mag-cluster--strategy {
  --dh-mag-accent: #7a6653;
  --dh-mag-soft: rgba(122, 102, 83, 0.08);
}

.dh-mag-cluster--execution {
  --dh-mag-accent: #5d7d6d;
  --dh-mag-soft: rgba(93, 125, 109, 0.08);
}

.dh-mag-cluster .dh-mag-cluster__chips span {
  color: color-mix(in srgb, var(--dh-mag-accent) 72%, var(--dp-muted));
}

.dp-mag-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.96));
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.dh-mag-cluster .dp-mag-card {
  border-color: color-mix(in srgb, var(--dh-mag-accent) 10%, rgba(17, 22, 27, 0.08));
}

.dh-mag-cluster .dp-mag-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--dp-radius) var(--dp-radius) 0 0;
  background: linear-gradient(90deg, var(--dh-mag-accent), color-mix(in srgb, var(--dh-mag-accent) 56%, #ffffff));
}

.dh-mag-cluster .dp-mag-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 28%, color-mix(in srgb, var(--dh-mag-accent) 22%, transparent), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

.dp-mag-card:hover {
  border-color: color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 22%, rgba(17, 22, 27, 0.08));
}

.dp-mag-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 14%, rgba(17, 22, 27, 0.08));
  background: color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 7%, rgba(255, 250, 244, 0.98));
  color: var(--dh-mag-accent, var(--dp-accent));
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dp-mag-card small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dh-mag-accent, var(--dp-accent));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--dh-mag-accent, var(--dp-accent)) 14%, transparent);
}

.dp-mag-card h3 {
  position: relative;
  z-index: 1;
}

.dp-mag-card p,
.dp-mag-card .dp-link-inline {
  position: relative;
  z-index: 1;
}

.dp-mag-card p {
  max-width: 38rem;
}

.dp-mag-card .dp-link-inline {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 700;
}

.dp-mag-card .dp-link-inline::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.22s ease;
}

.dp-mag-card:hover .dp-link-inline::after {
  transform: translateX(3px);
}

.dp-mag-card--feature {
  grid-column: 1 / -1;
  padding: 30px;
  background:
    radial-gradient(circle at top right, var(--dh-mag-soft) 0%, transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 242, 235, 0.98));
}

.dp-mag-card--feature h3 {
  max-width: 20ch;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.dp-mag-card--feature p {
  max-width: 44rem;
  font-size: 1.02rem;
}

.dp-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
  gap: 24px;
  align-items: start;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(145deg, #0f151a 0%, #171f24 100%);
  color: var(--dp-white);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--dp-shadow-lg);
}

.dp-cta p,
.dp-cta h3 {
  color: var(--dp-white);
}

.dp-cta__aside {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dh-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dh-panel .dp-grid-2,
.dh-panel .dp-grid-3,
.dh-panel .dp-grid-4,
.dh-panel .dh-stat-grid {
  margin-top: 8px;
}

.dh-stat {
  padding: 24px 24px 22px;
  border: 1px solid var(--dp-line);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: var(--dp-shadow-sm);
}

.dh-stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dp-text);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dh-stat p {
  margin: 0;
  color: var(--dp-muted);
}

.dh-video-grid,
.dh-photo-grid,
.dh-contact-cards {
  display: grid;
  gap: 18px;
}

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

.dh-video-card,
.dh-photo-shot,
.dh-inline-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: var(--dp-shadow-sm);
}

.dh-video-card {
  color: var(--dp-white);
}

.dh-video-facade {
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  appearance: none;
  font: inherit;
  text-align: left;
  background: #0a0d10;
}

.dh-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.76);
  transform: scale(1.02);
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.dh-video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(200, 111, 56, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.02) 0%, rgba(10, 13, 16, 0.82) 100%);
  pointer-events: none;
}

.dh-video-facade:hover img,
.dh-video-facade:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.84);
}

.dh-video-overlay {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.dh-video-overlay small,
.dh-photo-shot figcaption span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 222, 201, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.dh-video-overlay strong,
.dh-photo-shot figcaption strong {
  display: block;
  color: var(--dp-white);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.dh-video-play {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dp-accent);
  box-shadow: 0 16px 32px rgba(200, 111, 56, 0.32);
}

.dh-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--dp-white);
  transform: translate(-50%, -50%);
}

.dh-video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #0a0d10;
}

.dh-video-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.dh-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dh-photo-shot {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a2228, #0a0d10);
}

.dh-photo-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dh-photo-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 16, 0.86));
}

.dh-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.dh-card-link .dp-card {
  height: 100%;
}

.dh-card-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: 0 0 18px;
  border-radius: 18px;
  object-fit: cover;
}

.dh-note {
  color: var(--dp-accent);
  font-size: 0.95rem;
  font-weight: 700;
}

.dh-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.dh-contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.dh-contact-card {
  padding: 24px;
}

.dh-contact-card p,
.dh-contact-card li {
  color: var(--dp-muted);
}

.dh-contact-card ul {
  margin: 0;
  padding-left: 20px;
}

.dh-form-panel {
  padding: 28px;
}

.dh-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

.dh-field {
  display: grid;
  gap: 8px;
}

.dh-field label {
  font-weight: 700;
  color: var(--dp-text);
}

.dh-field input,
.dh-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(17, 22, 27, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--dp-text);
  font: inherit;
}

.dh-field textarea {
  min-height: 168px;
  padding: 14px 16px;
  resize: vertical;
}

.dh-inline-note {
  padding: 18px 20px;
  color: var(--dp-muted);
}

.dh-article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.dh-article-aside {
  position: sticky;
  top: 124px;
  padding: 24px;
  border: 1px solid var(--dp-line);
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--dp-shadow-sm);
}

.dh-article-aside p {
  color: var(--dp-muted);
}

.dh-article-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--dp-text);
  font-size: 1.05rem;
}

.dh-article-body > *:first-child {
  margin-top: 0;
}

.dh-article-body h2,
.dh-article-body h3,
.dh-article-body h4 {
  margin: 34px 0 12px;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.dh-article-body h2 {
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.dh-article-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.dh-article-body h4 {
  font-size: 1.12rem;
  color: var(--dp-accent);
  letter-spacing: 0;
}

.dh-article-body p,
.dh-article-body li {
  color: var(--dp-muted);
}

.dh-article-body p {
  margin: 0 0 18px;
}

.dh-article-body ul,
.dh-article-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.dh-article-body li + li {
  margin-top: 10px;
}

.dh-article-body a {
  color: var(--dp-accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.dh-article-body img,
.dh-article-body iframe {
  display: block;
  width: 100%;
  margin: 28px 0;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--dp-shadow-sm);
}

.dh-article-body img {
  max-height: 560px;
  object-fit: cover;
}

.dh-article-body iframe {
  aspect-ratio: 16 / 9;
  background: #0a0d10;
}

.dh-article-body blockquote {
  margin: 30px 0;
  padding: 24px;
  border-left: 4px solid var(--dp-accent);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.72);
}

.dh-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.is-reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
}

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

@media (hover: hover) {
  .dp-card:hover,
  .dp-mag-card:hover,
  .dp-strip__item:hover {
    border-color: rgba(200, 111, 56, 0.24);
    box-shadow: var(--dp-shadow);
  }
}

@media (max-width: 1100px) {
  .dp-header__bar,
  .dp-hero__grid,
  .dp-quote,
  .dp-cta {
    grid-template-columns: 1fr;
  }

  .dp-nav {
    display: none;
  }

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

  .dp-grid-3,
  .dp-grid-2,
  .dp-strip {
    grid-template-columns: 1fr;
  }

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

  .dh-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .dh-article-layout {
    grid-template-columns: 1fr;
  }

  .dh-article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --dp-shell: min(1200px, calc(100% - 20px));
  }

  .dp-main {
    padding-bottom: 72px;
  }

  .dp-header {
    padding-top: 10px;
  }

  .dp-header__bar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .dp-brand__text small {
    display: none;
  }

  .dp-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .dp-actions .dp-button {
    flex: 1 1 220px;
  }

  .dp-hero__grid,
  .dp-process,
  .dp-faq,
  .dp-quote,
  .dp-cta {
    padding: 24px;
  }

  .dp-hero__grid {
    gap: 20px;
    padding: 44px 26px 24px;
  }

  .dp-hero__content {
    min-width: 0;
    padding-inline: 2px;
  }

  .dh-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .dp-display {
    max-width: 8.4ch;
    font-size: clamp(1.88rem, 8.6vw, 2.62rem);
    line-height: 1.01;
    letter-spacing: -0.028em;
    hyphens: auto;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .dh-preview .dp-display {
    max-width: 100%;
  }

  .dp-lead {
    margin-top: 18px;
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .dp-button-row {
    width: 100%;
    margin-top: 18px;
  }

  .dp-button-row > * {
    flex: 1 1 100%;
    width: 100%;
  }

  .dp-media-card {
    padding: 12px;
    border-radius: 28px;
  }

  .dp-media-card img,
  .dp-media-card iframe,
  .dp-media-card .dh-video-facade,
  .dp-media-card .dh-video-card.is-loaded {
    border-radius: 20px;
    min-height: 248px;
  }

  .dp-media-card img {
    aspect-ratio: 4 / 3;
  }

  .dp-media-card--landscape iframe,
  .dp-media-card--landscape img,
  .dp-media-card--landscape .dh-video-facade,
  .dp-media-card--landscape .dh-video-card.is-loaded {
    min-height: 220px;
  }

  .dp-media-card .dh-video-play {
    top: 14px;
    left: 14px;
    transform: scale(0.9);
    transform-origin: top left;
  }

  .dh-mag-jumpnav {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .dh-mag-jumpnav::-webkit-scrollbar {
    display: none;
  }

  .dh-mag-jumpnav a {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .dh-mag-cluster__chips {
    gap: 8px 14px;
  }

  .dh-mag-cluster__chips span {
    gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .dp-mag-card,
  .dp-mag-card--feature {
    padding: 22px;
  }

  .dp-mag-card--feature h3 {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .dp-mag-card::after {
    width: 56px;
    height: 56px;
  }

  .dp-media-note {
    position: static;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .dp-card > img {
    height: 228px;
  }

  .dp-proof-media img,
  .dp-proof-media iframe {
    height: 260px;
  }

  .dp-grid-4,
  .dp-grid-3,
  .dp-grid-2,
  .dh-mag-grid,
  .dh-stat-grid,
  .dh-video-grid,
  .dh-photo-grid,
  .dh-contact-cards,
  .dh-form-grid {
    grid-template-columns: 1fr;
  }

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

  .dp-case-card {
    min-height: 360px;
  }
}

@media (max-width: 430px) {
  :root {
    --dp-shell: min(1200px, calc(100% - 16px));
  }

  .dp-hero__grid,
  .dp-process,
  .dp-faq,
  .dp-quote,
  .dp-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .dp-display {
    max-width: 8.1ch;
    font-size: clamp(1.82rem, 8.1vw, 2.42rem);
  }
}

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

  .is-reveal,
  .is-reveal.is-visible,
  .dp-button,
  .dp-button-secondary,
  .dp-card,
  .dp-case-card,
  .dp-mag-card {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }
}
