:root {
  --dt-slate-50: #f7f8fa;
  --dt-slate-100: #eceff3;
  --dt-slate-300: #cbd5e1;
  --dt-slate-600: #344256;
  --dt-slate-800: #182131;
  --dt-accent: #24539b;
  --dt-white: #ffffff;
  --dt-text: #141b2a;
  --dt-text-muted: #5a6476;
  --dt-radius: 14px;
  --dt-container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Comfortaa", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--dt-text);
  background: #f7f9fc;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -10% -8%;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(59, 130, 246, 0.12), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(148, 163, 184, 0.18), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(37, 99, 235, 0.08), transparent 26%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='rgba(36,83,155,0.13)' stroke-width='2'%3E%3Cpath d='M62 34c-15 0-24 13-24 31 0 22 12 38 20 60 4 12 7 30 17 30s12-18 19-18 9 18 19 18 13-18 17-30c8-22 20-38 20-60 0-18-9-31-24-31-12 0-20 7-32 7s-20-7-32-7z'/%3E%3Cpath d='M155 118c-8 0-13 8-13 19 0 14 8 23 13 37 2 7 4 18 10 18s8-11 12-11 6 11 12 11 8-11 10-18c5-14 13-23 13-37 0-11-5-19-13-19-6 0-10 4-16 4s-10-4-16-4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, auto, 420px 420px;
  background-position: 0 0, 0 0, 0 0, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.86)
  );
}

a {
  color: inherit;
  text-decoration: none;
}

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

.dt-container {
  width: min(100% - 2rem, var(--dt-container));
  margin-inline: auto;
}

.dt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 252, 253, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.dt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 0.85rem;
}

.dt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex: 0 1 auto;
  min-width: 0;
}

.dt-brand__logo {
  width: 42px;
  height: 58px;
  max-height: calc(74px - 10px);
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  padding-right: 2px;
}

.dt-brand__text {
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dt-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.dt-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #1f2937;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dt-nav {
  display: flex;
  align-items: center;
}

.dt-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dt-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dt-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  color: #4b5563;
  font-weight: 500;
  border: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.dt-nav a:hover,
.dt-nav a:focus {
  background: transparent;
  color: #475569;
}

.dt-menu .current-menu-item > a,
.dt-menu .current_page_item > a,
.dt-menu .current-menu-ancestor > a,
.dt-menu .current_page_parent > a {
  background: #f8fafc;
  color: #475569;
}

@media (max-width: 920px) {
  .dt-header__inner {
    justify-content: flex-start;
    position: relative;
    align-items: center;
    min-height: 62px;
  }

  .dt-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
  }

  .dt-brand {
    font-size: 1rem;
    max-width: calc(100% - 56px);
    min-height: 42px;
    align-items: center;
  }

  .dt-brand__logo {
    width: 30px;
    height: 36px;
    max-height: 36px;
    padding-right: 0;
	position: relative;
    top: 4px;
  }

  .dt-brand__text {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    line-height: 1;
	position: relative;
    top: 0px;
  }

  .dt-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    padding: 0.5rem;
    display: none;
  }

  .dt-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }

  .dt-nav a {
    display: block;
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .dt-header.is-mobile-menu-open .dt-nav {
    display: flex;
  }

  .dt-header.is-mobile-menu-open .dt-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .dt-header.is-mobile-menu-open .dt-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .dt-header.is-mobile-menu-open .dt-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.dt-hero {
  min-height: 68vh;
  display: grid;
  place-items: center;
  color: var(--dt-white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.dt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.15), transparent 42%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.66));
}

.dt-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}

.dt-hero__eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(241, 245, 249, 0.95);
}

.dt-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.dt-subtitle {
  margin: 0.9rem 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(248, 250, 252, 0.95);
}

.dt-hero__actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dt-page-hero {
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dt-page-hero--services {
  min-height: 0;
  aspect-ratio: 1920 / 815;
  background-color: transparent;
  align-items: end;
  overflow: hidden;
}

.dt-page-hero--services .dt-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dt-page-hero--services .dt-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.dt-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.36), rgba(15, 23, 42, 0.68));
}

.dt-page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 5.6rem;
  padding-bottom: 2.8rem;
}

.dt-page-hero__content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.dt-page-hero__content p {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  color: rgba(248, 250, 252, 0.94);
}

.dt-page-hero--home {
  min-height: 0;
  aspect-ratio: 1920 / 815;
  align-items: center;
  background-image: var(--dt-home-hero-desktop);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: transparent;
}

.dt-page-hero--home::after {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.15), transparent 42%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.66));
}

.dt-page-hero__content--home {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transform: translateY(56px);
}

.dt-page-hero__content--home .dt-hero__eyebrow {
  text-align: center;
}

/* Keep all hero text blocks locked to the same center axis across widths. */
.dt-page-hero__content--home .dt-hero__eyebrow,
.dt-page-hero__content--home .dt-title,
.dt-page-hero__content--home .dt-subtitle {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dt-page-hero__content--home .dt-hero__eyebrow {
  max-width: none;
}

/* Override generic paragraph max-width behavior inside page hero to avoid lateral drift. */
.dt-page-hero__content--home .dt-subtitle {
  max-width: 62ch;
}

@media (min-width: 768px) {
  .dt-page-hero__content--home .dt-hero__eyebrow {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .dt-page-hero--services {
    min-height: 0;
    aspect-ratio: 1353 / 815;
  }

  .dt-page-hero--home {
    aspect-ratio: 1353 / 815;
    background-image: var(--dt-home-hero-mobile);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    align-items: end;
  }

  .dt-page-hero__content--home {
    transform: none;
    padding-top: 0.2rem;
    padding-bottom: 0.8rem;
  }

  .dt-page-hero__content--home .dt-hero__actions {
    display: none;
  }
}

.dt-page-hero-builder {
  position: relative;
}

.dt-section {
  padding: 5rem 0;
}

.dt-section--soft {
  background: linear-gradient(
    to top,
    rgba(247, 248, 250, 0.72),
    rgba(236, 239, 243, 0.82)
  );
  backdrop-filter: blur(2px);
}

.dt-grid {
  display: grid;
  gap: 1.15rem;
}

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

@media (min-width: 768px) {
  .dt-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dt-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dt-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--dt-radius);
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.13);
}

.dt-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.dt-card p {
  margin: 0;
  color: var(--dt-text-muted);
}

.dt-card p + p {
  margin-top: 0.75rem;
}

.dt-card__summary {
  margin: 0;
  color: var(--dt-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dt-card__full p {
  margin: 0.45rem 0 0;
  color: var(--dt-text-muted);
}

.dt-card__full p:first-child {
  margin-top: 0.25rem;
}

.dt-card__link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dt-accent);
}

.dt-services-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.dt-btn {
  display: inline-block;
  background: var(--dt-slate-800);
  color: var(--dt-white);
  padding: 0.68rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.dt-btn:hover,
.dt-btn:focus {
  background: #0f172a;
}

.dt-btn--blue {
  background: var(--dt-slate-800);
  border-color: rgba(255, 255, 255, 0.28);
}

.dt-btn--blue:hover,
.dt-btn--blue:focus {
  background: #0f172a;
}

.dt-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.dt-btn--ghost:hover,
.dt-btn--ghost:focus {
  background: rgba(255, 255, 255, 0.18);
}

.dt-section-head {
  max-width: 640px;
  margin-bottom: 1.3rem;
}

.dt-section-head p {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  color: var(--dt-slate-600);
  font-weight: 700;
}

.dt-section-head h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.dt-section-head span {
  margin-top: 0.6rem;
  display: block;
  color: var(--dt-text-muted);
}

.dt-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dt-section-head--center p {
  font-size: 0.92rem;
}

.dt-section-head--center h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.dt-section-head--center span {
  font-size: 1.05rem;
}

.dt-section--services .dt-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dt-section--services .dt-card h3 {
  margin: 0;
}

.dt-section--story {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.dt-section--story .dt-container > * {
  max-width: 760px;
  margin-inline: auto;
}

.dt-section--story h1,
.dt-section--story h2,
.dt-section--story h3 {
  letter-spacing: -0.02em;
}

.dt-footer {
  background: linear-gradient(180deg, #131d2d, #0f1724);
  color: #cbd5e1;
  padding: 2.7rem 0 1.15rem;
  margin-top: 3rem;
}

.dt-footer--elementor {
  padding: 0;
  background: transparent;
}

.dt-footer a {
  color: #e2e8f0;
}

.dt-footer a:hover,
.dt-footer a:focus {
  color: #ffffff;
}

.dt-footer__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .dt-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dt-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.dt-footer__title {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f8fafc;
}

.dt-footer__text {
  margin: 0 0 0.55rem;
}

.dt-footer__nav,
.dt-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.dt-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dt-footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dt-social-link {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.34);
  color: #e2e8f0;
  background: rgba(226, 232, 240, 0.08);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dt-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.dt-social-link:hover,
.dt-social-link:focus {
  color: #ffffff;
  border-color: rgba(226, 232, 240, 0.55);
  background: rgba(226, 232, 240, 0.2);
}

.dt-footer__bottom {
  margin-top: 1.7rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.dt-footer__bottom p {
  margin: 0;
}

.dt-empty {
  padding: 1rem;
  border: 1px dashed var(--dt-slate-300);
  border-radius: 10px;
  color: var(--dt-text-muted);
  background: var(--dt-slate-50);
}

.dt-contact-hero {
  padding: 4.6rem 0 2.5rem;
  background: radial-gradient(circle at 8% 10%, #e8eef9, transparent 32%),
    radial-gradient(circle at 90% 15%, #e8ebf1, transparent 30%),
    linear-gradient(180deg, #f7f8fa, #ffffff);
}

.dt-contact-eyebrow {
  margin: 0;
  color: var(--dt-slate-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.dt-contact-title {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
}

.dt-contact-lead {
  margin: 0.9rem 0 0;
  color: var(--dt-text-muted);
  max-width: 64ch;
}

.dt-contact-quick {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.dt-contact-quick a {
  display: inline-block;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--dt-slate-600);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 500;
}

.dt-contact-section {
  padding: 1rem 0 4.3rem;
}

.dt-contact-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .dt-contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.dt-contact-panel,
.dt-contact-form-wrap {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.06);
  padding: 1.35rem;
}

.dt-contact-cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.dt-contact-card {
  border: 1px solid var(--dt-slate-100);
  border-radius: 12px;
  padding: 0.9rem;
  background: var(--dt-slate-50);
}

.dt-contact-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.dt-contact-card p {
  margin: 0;
  color: var(--dt-text-muted);
}

.dt-map-embed {
  margin-top: 1.15rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--dt-slate-100);
}

.dt-map-embed iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
}

.dt-contact-form {
  display: grid;
  gap: 0.7rem;
}

.dt-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .dt-contact-row {
    grid-template-columns: 1fr 1fr;
  }
}

.dt-contact-form label {
  font-size: 0.92rem;
  font-weight: 600;
}

.dt-contact-form input,
.dt-contact-form textarea {
  width: 100%;
  border: 1px solid var(--dt-slate-300);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.dt-contact-form input:focus,
.dt-contact-form textarea:focus {
  outline: none;
  border-color: var(--dt-slate-600);
  box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.12);
}

.dt-form-notice {
  margin: 0.8rem 0;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
}

.dt-form-notice--success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.dt-form-notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.dt-section--about {
  padding-top: 4.2rem;
}

.dt-about-split {
  display: grid;
  gap: 1.3rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .dt-about-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

.dt-about-split__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.08);
  background: #fff;
  min-height: 380px;
  min-width: 0;
}

.dt-about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dt-about-split__content {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.06);
  padding: clamp(1rem, 2.2vw, 1.7rem);
  min-width: 0;
}

.dt-about-split__title {
  margin: 0 0 0.75rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.dt-about-split__text > :first-child {
  margin-top: 0;
}

.dt-about-split__text > :last-child {
  margin-bottom: 0;
}

.dt-about-gallery {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.dt-about-gallery-wrap {
  margin-top: 1.7rem;
}

.dt-about-gallery__item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dt-about-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.13);
  border-color: rgba(36, 83, 155, 0.35);
}

.dt-about-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dt-about-lightbox[hidden] {
  display: none;
}

.dt-about-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.dt-about-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(2px);
}

.dt-about-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.42);
  background: #0f172a;
}

.dt-about-lightbox__image {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.dt-about-lightbox__close {
  position: absolute;
  top: 0.6rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.7);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.dt-about-lightbox__close:hover {
  background: rgba(15, 23, 42, 0.88);
}

.dt-about-split__cta {
  margin: 1.15rem 0 0;
}

.dt-story-cta {
  margin: 1.3rem 0 0;
  text-align: center;
}

.dt-card--cta {
  background: linear-gradient(135deg, #182131, #0f172a);
  border-color: rgba(15, 23, 42, 0.5);
  color: #fff;
  text-align: center;
}

.dt-card--cta h2,
.dt-card--cta p {
  color: #fff;
}

.dt-card--cta p {
  margin-top: 0.55rem;
}
