:root {
  --dt-ink: #1a1410;
  --dt-ink-soft: #2e2620;
  --dt-ink-muted: #5a4f47;
  --dt-paper: #faf8f5;
  --dt-paper-warm: #f2ede6;
  --dt-paper-mid: #e8e0d5;
  --dt-accent: #c84b2f;
  --dt-accent-dark: #9e3a22;
  --dt-accent-light: #f0d5ce;
  --dt-gold: #b8860b;
  --dt-white: #ffffff;

  --dt-shadow-sm: 0 1px 3px rgba(26,20,16,0.08), 0 1px 2px rgba(26,20,16,0.06);
  --dt-shadow-md: 0 4px 12px rgba(26,20,16,0.10), 0 2px 6px rgba(26,20,16,0.08);
  --dt-shadow-lg: 0 12px 32px rgba(26,20,16,0.14), 0 4px 12px rgba(26,20,16,0.10);
  --dt-shadow-xl: 0 24px 56px rgba(26,20,16,0.18), 0 8px 20px rgba(26,20,16,0.12);

  --dt-radius-sm: 4px;
  --dt-radius-md: 8px;
  --dt-radius-lg: 16px;
  --dt-radius-xl: 24px;
  --dt-radius-full: 9999px;

  --dt-space-xs: 0.5rem;
  --dt-space-sm: 1rem;
  --dt-space-md: 1.5rem;
  --dt-space-lg: 2.5rem;
  --dt-space-xl: 4rem;
  --dt-space-2xl: 6rem;
  --dt-space-3xl: 9rem;

  --dt-font: 'DM Sans', sans-serif;
  --dt-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--dt-font);
  background-color: var(--dt-paper);
  color: var(--dt-ink);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dt-transition), opacity var(--dt-transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.dt-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--dt-space-md);
}

.dt-label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dt-accent);
  background: var(--dt-accent-light);
  padding: 0.35em 0.85em;
  border-radius: var(--dt-radius-full);
  margin-bottom: var(--dt-space-sm);

  &.dt-label-tag--light {
    color: var(--dt-accent-light);
    background: rgba(200, 75, 47, 0.25);
  }
}

.dt-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dt-ink);
  margin-bottom: var(--dt-space-md);

  &.dt-section-title--light {
    color: var(--dt-paper);
  }
}

.dt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--dt-font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: var(--dt-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dt-transition);
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;

  &.dt-btn--primary {
    background: var(--dt-accent);
    color: var(--dt-white);
    border-color: var(--dt-accent);
    box-shadow: 0 4px 14px rgba(200, 75, 47, 0.3);

    &:hover {
      background: var(--dt-accent-dark);
      border-color: var(--dt-accent-dark);
      box-shadow: 0 6px 20px rgba(200, 75, 47, 0.4);
      transform: translateY(-1px);
    }
  }

  &.dt-btn--ghost {
    background: transparent;
    color: var(--dt-ink);
    border-color: var(--dt-ink);

    &:hover {
      background: var(--dt-ink);
      color: var(--dt-paper);
      transform: translateY(-1px);
    }
  }

  &.dt-btn--light {
    background: var(--dt-paper);
    color: var(--dt-ink);
    border-color: var(--dt-paper);

    &:hover {
      background: var(--dt-paper-warm);
      transform: translateY(-1px);
    }
  }

  &.dt-btn--full {
    width: 100%;
    justify-content: center;
  }
}

.dt-header {
  background: var(--dt-paper);
  border-bottom: 1px solid var(--dt-paper-mid);
  position: relative;
  z-index: 100;
}

.dt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem var(--dt-space-md);
  position: relative;

  & .dt-nav__left,
  & .dt-nav__right {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    flex: 1;

    & li a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dt-ink-muted);
      padding: 0.4em 0;
      position: relative;
      transition: color var(--dt-transition);

      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--dt-accent);
        transition: width var(--dt-transition);
      }

      &:hover,
      &.dt-nav__active {
        color: var(--dt-ink);

        &::after {
          width: 100%;
        }
      }
    }
  }

  & .dt-nav__right {
    justify-content: flex-end;
  }

  & .dt-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--dt-transition);

    &:hover {
      opacity: 0.8;
    }
  }

  & .dt-nav__cta {
    background: var(--dt-accent);
    color: var(--dt-white) !important;
    padding: 0.5em 1.4em !important;
    border-radius: var(--dt-radius-full);
    font-weight: 600 !important;
    transition: background var(--dt-transition), transform var(--dt-transition), box-shadow var(--dt-transition) !important;
    box-shadow: 0 2px 8px rgba(200, 75, 47, 0.25);

    &::after {
      display: none !important;
    }

    &:hover {
      background: var(--dt-accent-dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(200, 75, 47, 0.35);
    }
  }

  & .dt-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;

    & span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dt-ink);
      border-radius: 2px;
      transition: all var(--dt-transition);
    }
  }
}

.dt-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dt-ink);
  clip-path: circle(0px at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;

  &.dt-mobile-menu--open {
    clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
    pointer-events: all;
  }

  & .dt-mobile-menu__close {
    position: absolute;
    top: 1.2rem;
    right: var(--dt-space-md);
    background: none;
    border: none;
    color: var(--dt-paper);
    font-size: 1.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--dt-transition);

    &:hover {
      opacity: 0.7;
    }
  }

  & .dt-mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--dt-space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;

    & li a {
      font-size: clamp(1.6rem, 5vw, 2.2rem);
      font-weight: 700;
      color: var(--dt-paper);
      letter-spacing: -0.01em;
      transition: color var(--dt-transition);

      &:hover {
        color: var(--dt-accent);
      }
    }
  }

  &.dt-mobile-menu--open .dt-mobile-menu__links {
    opacity: 1;
    transform: translateY(0);
  }
}

.dt-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dt-ink);

  & .dt-hero__marquee {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0.08;
    pointer-events: none;
  }

  & .dt-hero__marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: dt-marquee 28s linear infinite;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    color: var(--dt-paper);
    letter-spacing: -0.02em;

    & span {
      flex-shrink: 0;
    }
  }

  & .dt-hero__card {
    position: relative;
    z-index: 2;
    background: rgba(250, 248, 245, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 248, 245, 0.15);
    border-radius: var(--dt-radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    max-width: 720px;
    width: 90%;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  & .dt-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dt-accent);
    background: rgba(200, 75, 47, 0.2);
    padding: 0.35em 0.85em;
    border-radius: var(--dt-radius-full);
    margin-bottom: var(--dt-space-sm);
    border: 1px solid rgba(200, 75, 47, 0.3);
  }

  & .dt-hero__title {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dt-paper);
    letter-spacing: -0.02em;
    margin-bottom: var(--dt-space-md);

    & em {
      font-style: normal;
      color: var(--dt-accent);
    }
  }

  & .dt-hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(250, 248, 245, 0.75);
    line-height: 1.7;
    margin-bottom: var(--dt-space-lg);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  & .dt-hero__actions {
    display: flex;
    gap: var(--dt-space-sm);
    justify-content: center;
    flex-wrap: wrap;
  }

  & .dt-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(250, 248, 245, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: dt-bounce 2.5s ease-in-out infinite;

    & i {
      font-size: 0.8rem;
    }
  }
}

@keyframes dt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes dt-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.dt-intro {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-2xl);
    align-items: center;
  }

  & .dt-intro__text {
    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-sm);
      font-size: 1.05rem;
      line-height: 1.75;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  & .dt-intro__image-block {
    position: relative;
    height: 460px;
  }

  & .dt-intro__img {
    border-radius: var(--dt-radius-lg);
    object-fit: cover;

    &.dt-intro__img--main {
      width: 80%;
      height: 360px;
      position: absolute;
      top: 0;
      right: 0;
      box-shadow: var(--dt-shadow-xl);
    }

    &.dt-intro__img--accent {
      width: 55%;
      height: 200px;
      position: absolute;
      bottom: 0;
      left: 0;
      box-shadow: var(--dt-shadow-lg);
      border: 4px solid var(--dt-paper);
    }
  }
}

.dt-features {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper-warm);

  & .dt-features__header {
    text-align: center;
    margin-bottom: var(--dt-space-2xl);
  }

  & .dt-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--dt-paper-mid);
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    background: var(--dt-paper);
    box-shadow: var(--dt-shadow-md);
  }

  & .dt-features__item {
    display: flex;
    gap: var(--dt-space-md);
    padding: var(--dt-space-lg);
    border-bottom: 1px solid var(--dt-paper-mid);
    border-right: 1px solid var(--dt-paper-mid);
    transition: background var(--dt-transition);

    &:nth-child(even) {
      border-right: none;
    }

    &:nth-last-child(-n+2) {
      border-bottom: none;
    }

    &:hover {
      background: var(--dt-paper-warm);
    }
  }

  & .dt-features__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--dt-accent-light);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-accent);
    font-size: 1.1rem;
  }

  & .dt-features__body {
    & h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--dt-ink);
    }

    & p {
      font-size: 0.9rem;
      color: var(--dt-ink-muted);
      line-height: 1.65;
    }
  }
}

.dt-course-overview {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-course-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--dt-space-2xl);
    align-items: start;
  }

  & .dt-course-overview__visual {
    position: relative;
  }

  & .dt-course-overview__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--dt-radius-lg);
    box-shadow: var(--dt-shadow-xl);
  }

  & .dt-course-overview__badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--dt-ink);
    color: var(--dt-paper);
    border-radius: var(--dt-radius-lg);
    padding: 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    box-shadow: var(--dt-shadow-lg);

    & i {
      font-size: 1.4rem;
      color: var(--dt-accent);
    }

    & span {
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.3;
    }
  }

  & .dt-course-overview__content {
    padding-top: var(--dt-space-sm);

    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-md);
      line-height: 1.75;
    }
  }

  & .dt-course-overview__modules {
    display: flex;
    flex-direction: column;
    gap: var(--dt-space-md);
    margin-top: var(--dt-space-lg);
  }

  & .dt-course-overview__module {
    display: flex;
    gap: var(--dt-space-md);
    align-items: flex-start;

    & strong {
      display: block;
      font-weight: 700;
      margin-bottom: 0.25rem;
      font-size: 0.95rem;
    }

    & p {
      font-size: 0.875rem;
      color: var(--dt-ink-muted);
      margin-bottom: 0;
      line-height: 1.6;
    }
  }

  & .dt-module-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--dt-accent);
    color: var(--dt-white);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
  }
}

.dt-gallery {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-ink);

  & .dt-gallery__header {
    text-align: center;
    margin-bottom: var(--dt-space-2xl);

    & .dt-section-title {
      color: var(--dt-paper);
    }
  }

  & .dt-gallery__sub {
    color: rgba(250, 248, 245, 0.65);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }

  & .dt-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }

  & .dt-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--dt-radius-md);
    display: block;

    &.dt-gallery__item--wide {
      grid-column: span 2;
    }

    &.dt-gallery__item--tall {
      grid-row: span 2;
    }

    & img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    &.dt-gallery__item--wide img {
      height: 320px;
    }

    &.dt-gallery__item--tall img {
      height: 100%;
      min-height: 532px;
    }

    &:hover img {
      transform: scale(1.06);
    }

    &:hover .dt-gallery__overlay {
      opacity: 1;
    }
  }

  & .dt-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dt-transition);
    color: var(--dt-paper);
    font-size: 1.4rem;
  }
}

.dt-approach {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-ink-soft);

  & .dt-approach__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-2xl);
    align-items: center;
  }

  & .dt-approach__content {
    & p {
      color: rgba(250, 248, 245, 0.75);
      margin-bottom: var(--dt-space-md);
      line-height: 1.75;
    }
  }

  & .dt-approach__images {
    position: relative;
    height: 480px;
  }

  & .dt-approach__img {
    border-radius: var(--dt-radius-lg);
    object-fit: cover;
    position: absolute;

    &.dt-approach__img--1 {
      width: 70%;
      height: 320px;
      top: 0;
      right: 0;
      box-shadow: var(--dt-shadow-xl);
    }

    &.dt-approach__img--2 {
      width: 55%;
      height: 220px;
      bottom: 0;
      left: 0;
      box-shadow: var(--dt-shadow-lg);
      border: 3px solid rgba(250, 248, 245, 0.1);
    }
  }
}

.dt-faq {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper-warm);

  & .dt-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--dt-space-2xl);
    align-items: start;
  }

  & .dt-faq__sidebar {
    position: sticky;
    top: 2rem;

    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-lg);
      line-height: 1.7;
    }
  }

  & .dt-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--dt-paper-mid);
    border-radius: var(--dt-radius-lg);
    overflow: hidden;
    background: var(--dt-paper);
    box-shadow: var(--dt-shadow-sm);
  }

  & .dt-faq__item {
    border-bottom: 1px solid var(--dt-paper-mid);

    &:last-child {
      border-bottom: none;
    }
  }

  & .dt-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--dt-space-md) var(--dt-space-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    transition: background var(--dt-transition), color var(--dt-transition);
    gap: var(--dt-space-sm);

    &::-webkit-details-marker {
      display: none;
    }

    & i {
      flex-shrink: 0;
      font-size: 0.75rem;
      color: var(--dt-accent);
      transition: transform var(--dt-transition);
    }

    &:hover {
      background: var(--dt-paper-warm);
      color: var(--dt-accent);
    }
  }

  & details[open] .dt-faq__question {
    color: var(--dt-accent);
    background: var(--dt-accent-light);

    & i {
      transform: rotate(180deg);
    }
  }

  & .dt-faq__answer {
    padding: 0 var(--dt-space-lg) var(--dt-space-md);

    & p {
      font-size: 0.9rem;
      color: var(--dt-ink-muted);
      line-height: 1.7;
    }
  }
}

.dt-cta-band {
  padding: var(--dt-space-2xl) 0;
  background: var(--dt-accent);

  & .dt-cta-band__inner {
    text-align: center;

    & h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--dt-white);
      margin-bottom: var(--dt-space-sm);
      line-height: 1.2;
    }

    & p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      margin-bottom: var(--dt-space-lg);
    }

    & .dt-btn--primary {
      background: var(--dt-white);
      color: var(--dt-accent);
      border-color: var(--dt-white);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);

      &:hover {
        background: var(--dt-paper-warm);
        border-color: var(--dt-paper-warm);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      }
    }
  }
}

.dt-footer {
  background: var(--dt-ink);
  color: var(--dt-paper);
  padding: var(--dt-space-2xl) 0 0;

  & .dt-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--dt-space-xl);
    padding-bottom: var(--dt-space-xl);
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
  }

  & .dt-footer__brand {
    & img {
      margin-bottom: var(--dt-space-sm);
      filter: brightness(10);
      opacity: 0.9;
    }

    & p {
      font-size: 0.875rem;
      color: rgba(250, 248, 245, 0.55);
      line-height: 1.65;
    }
  }

  & .dt-footer__nav h4,
  & .dt-footer__legal h4,
  & .dt-footer__contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
    margin-bottom: var(--dt-space-md);
  }

  & .dt-footer__nav ul,
  & .dt-footer__legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    & li a {
      font-size: 0.875rem;
      color: rgba(250, 248, 245, 0.65);
      transition: color var(--dt-transition);

      &:hover {
        color: var(--dt-paper);
      }
    }
  }

  & .dt-footer__contact address {
    & p {
      font-size: 0.875rem;
      color: rgba(250, 248, 245, 0.65);
      margin-bottom: 0.6rem;
      display: flex;
      gap: 0.5rem;
      align-items: flex-start;
      line-height: 1.5;

      & i {
        margin-top: 0.15rem;
        color: var(--dt-accent);
        flex-shrink: 0;
      }

      & a {
        color: rgba(250, 248, 245, 0.65);
        transition: color var(--dt-transition);

        &:hover {
          color: var(--dt-paper);
        }
      }
    }
  }

  & .dt-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--dt-space-md) 0;

    & p {
      font-size: 0.8rem;
      color: rgba(250, 248, 245, 0.35);
    }
  }
}

.dt-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--dt-ink);
  color: var(--dt-paper);
  border: none;
  border-radius: var(--dt-radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--dt-shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dt-transition), transform var(--dt-transition), background var(--dt-transition);
  z-index: 90;
  pointer-events: none;

  &.dt-back-to-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  &:hover {
    background: var(--dt-accent);
  }
}

.dt-page-hero {
  padding: var(--dt-space-2xl) 0 var(--dt-space-xl);
  background: var(--dt-ink);

  & .dt-page-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dt-paper);
    line-height: 1.15;
    margin-bottom: var(--dt-space-md);
    letter-spacing: -0.02em;
  }

  & .dt-page-hero__sub {
    font-size: 1.05rem;
    color: rgba(250, 248, 245, 0.7);
    max-width: 580px;
    line-height: 1.7;
  }

  & .dt-label-tag {
    color: var(--dt-accent);
    background: rgba(200, 75, 47, 0.2);
    border: 1px solid rgba(200, 75, 47, 0.3);
  }
}

.dt-achievements-intro {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-achievements-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-2xl);
    align-items: center;
  }

  & .dt-achievements-intro__text {
    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-sm);
      line-height: 1.75;
    }
  }

  & .dt-achievements-intro__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--dt-radius-lg);
    box-shadow: var(--dt-shadow-xl);
  }
}

.dt-milestones {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper-warm);

  & .dt-milestones__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-lg);
    margin-top: var(--dt-space-xl);
  }

  & .dt-milestones__item {
    display: flex;
    gap: var(--dt-space-md);
    padding: var(--dt-space-lg);
    background: var(--dt-paper);
    border-radius: var(--dt-radius-lg);
    box-shadow: var(--dt-shadow-sm);
    transition: box-shadow var(--dt-transition), transform var(--dt-transition);

    &:hover {
      box-shadow: var(--dt-shadow-md);
      transform: translateY(-2px);
    }
  }

  & .dt-milestones__year {
    flex-shrink: 0;
    background: var(--dt-ink);
    color: var(--dt-paper);
    padding: 0.4em 0.8em;
    border-radius: var(--dt-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    height: fit-content;
  }

  & .dt-milestones__content {
    & h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    & p {
      font-size: 0.875rem;
      color: var(--dt-ink-muted);
      line-height: 1.65;
    }
  }
}

.dt-curriculum-detail {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-curriculum-detail__header {
    text-align: center;
    margin-bottom: var(--dt-space-2xl);
  }

  & .dt-curriculum-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--dt-space-md);
  }

  & .dt-curriculum-detail__card {
    padding: var(--dt-space-lg);
    background: var(--dt-paper-warm);
    border-radius: var(--dt-radius-lg);
    border: 1px solid var(--dt-paper-mid);
    transition: border-color var(--dt-transition), box-shadow var(--dt-transition);

    &:hover {
      border-color: var(--dt-accent-light);
      box-shadow: var(--dt-shadow-md);
    }
  }

  & .dt-curriculum-detail__icon {
    width: 48px;
    height: 48px;
    background: var(--dt-accent);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-white);
    font-size: 1.1rem;
    margin-bottom: var(--dt-space-sm);
  }

  & h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  & p {
    font-size: 0.875rem;
    color: var(--dt-ink-muted);
    line-height: 1.65;
    margin-bottom: var(--dt-space-sm);
  }

  & .dt-curriculum-detail__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;

    & li {
      font-size: 0.825rem;
      color: var(--dt-ink-muted);
      padding-left: 1.2em;
      position: relative;

      &::before {
        content: '·';
        position: absolute;
        left: 0;
        color: var(--dt-accent);
        font-weight: 700;
      }
    }
  }
}

.dt-approach-detail {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper-warm);

  & .dt-approach-detail__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--dt-space-2xl);
    align-items: center;
  }

  & .dt-approach-detail__img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--dt-radius-lg);
    box-shadow: var(--dt-shadow-xl);
  }

  & .dt-approach-detail__text {
    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-md);
      line-height: 1.75;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.dt-hours-main {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-hours-main__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--dt-space-2xl);
    align-items: start;
  }
}

.dt-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--dt-space-lg);
  background: var(--dt-paper);
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  box-shadow: var(--dt-shadow-md);

  & thead {
    background: var(--dt-ink);
    color: var(--dt-paper);

    & th {
      padding: 0.9rem 1.2rem;
      text-align: left;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
  }

  & tbody tr {
    border-bottom: 1px solid var(--dt-paper-mid);
    transition: background var(--dt-transition);

    &:last-child {
      border-bottom: none;
    }

    &:hover {
      background: var(--dt-paper-warm);
    }

    & td {
      padding: 0.9rem 1.2rem;
      font-size: 0.9rem;
      color: var(--dt-ink-muted);
    }
  }
}

.dt-hours-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25em 0.75em;
  border-radius: var(--dt-radius-full);

  &.dt-hours-badge--open {
    background: rgba(34, 139, 34, 0.12);
    color: #228B22;
  }

  &.dt-hours-badge--closed {
    background: rgba(180, 60, 40, 0.1);
    color: var(--dt-accent);
  }
}

.dt-hours-note {
  margin-top: var(--dt-space-md);
  font-size: 0.85rem;
  color: var(--dt-ink-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.6;

  & i {
    color: var(--dt-accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
  }
}

.dt-hours-info-card {
  padding: var(--dt-space-md);
  background: var(--dt-paper-warm);
  border-radius: var(--dt-radius-lg);
  border: 1px solid var(--dt-paper-mid);
  margin-bottom: var(--dt-space-sm);

  & .dt-hours-info-card__icon {
    width: 40px;
    height: 40px;
    background: var(--dt-accent-light);
    border-radius: var(--dt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-accent);
    margin-bottom: 0.75rem;
  }

  & h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  & p, & address p {
    font-size: 0.85rem;
    color: var(--dt-ink-muted);
    line-height: 1.6;

    & a {
      color: var(--dt-accent);

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.dt-online-note {
  padding: var(--dt-space-2xl) 0;
  background: var(--dt-paper-warm);

  & .dt-online-note__inner {
    display: flex;
    gap: var(--dt-space-lg);
    align-items: flex-start;
    background: var(--dt-paper);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-xl);
    box-shadow: var(--dt-shadow-md);
  }

  & .dt-online-note__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--dt-accent);
    border-radius: var(--dt-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-white);
    font-size: 1.5rem;
  }

  & .dt-online-note__text {
    & h2 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: var(--dt-space-sm);
    }

    & p {
      color: var(--dt-ink-muted);
      margin-bottom: var(--dt-space-sm);
      line-height: 1.7;
    }
  }
}

.dt-contact-section {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);

  & .dt-contact-section__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--dt-space-2xl);
    align-items: start;
  }
}

.dt-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--dt-space-md);
}

.dt-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  & label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dt-ink);
  }

  & input,
  & textarea {
    width: 100%;
    padding: 0.85em 1em;
    border: 1.5px solid var(--dt-paper-mid);
    border-radius: var(--dt-radius-md);
    font-family: var(--dt-font);
    font-size: 0.95rem;
    color: var(--dt-ink);
    background: var(--dt-paper);
    transition: border-color var(--dt-transition), box-shadow var(--dt-transition);
    min-height: 48px;

    &:focus {
      outline: none;
      border-color: var(--dt-accent);
      box-shadow: 0 0 0 3px rgba(200, 75, 47, 0.12);
    }

    &::placeholder {
      color: rgba(90, 79, 71, 0.4);
    }
  }

  & textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
  }

  &.dt-form-group--checkbox {
    flex-direction: row;
    align-items: center;
  }
}

.dt-form-required {
  color: var(--dt-accent);
}

.dt-form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--dt-ink-muted);

  & input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  & .dt-form-checkbox__custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--dt-paper-mid);
    border-radius: var(--dt-radius-sm);
    background: var(--dt-paper);
    transition: all var(--dt-transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & input:checked + .dt-form-checkbox__custom {
    background: var(--dt-accent);
    border-color: var(--dt-accent);

    &::after {
      content: '';
      width: 6px;
      height: 10px;
      border: 2px solid white;
      border-top: none;
      border-left: none;
      transform: rotate(45deg) translateY(-1px);
      display: block;
    }
  }

  & a {
    color: var(--dt-accent);
    text-decoration: underline;
  }
}

.dt-form-error {
  font-size: 0.85rem;
  color: var(--dt-accent);
  min-height: 1.2em;
}

.dt-contact-info {
  background: var(--dt-ink);
  border-radius: var(--dt-radius-xl);
  padding: var(--dt-space-lg);
  color: var(--dt-paper);
  margin-bottom: var(--dt-space-lg);

  & h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--dt-space-md);
    padding-bottom: var(--dt-space-sm);
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
  }

  & .dt-contact-info__item {
    display: flex;
    gap: var(--dt-space-sm);
    margin-bottom: var(--dt-space-md);
    align-items: flex-start;

    &:last-child {
      margin-bottom: 0;
    }

    & i {
      color: var(--dt-accent);
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    & strong {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(250, 248, 245, 0.45);
      margin-bottom: 0.25rem;
    }

    & address, & p, & a {
      font-size: 0.875rem;
      color: rgba(250, 248, 245, 0.75);
      line-height: 1.5;
    }

    & a {
      transition: color var(--dt-transition);

      &:hover {
        color: var(--dt-paper);
      }
    }
  }
}

.dt-contact-news {
  & h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--dt-space-md);
  }
}

.dt-news-item {
  padding: var(--dt-space-md) 0;
  border-bottom: 1px solid var(--dt-paper-mid);

  &:last-child {
    border-bottom: none;
  }

  & .dt-news-item__date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dt-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
  }

  & h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.4;
  }

  & p {
    font-size: 0.85rem;
    color: var(--dt-ink-muted);
    line-height: 1.6;
  }
}

.dt-map-section {
  padding: var(--dt-space-2xl) 0 var(--dt-space-3xl);
  background: var(--dt-paper-warm);

  & .dt-section-title {
    margin-bottom: var(--dt-space-lg);
  }
}

.dt-map-wrap {
  border-radius: var(--dt-radius-lg);
  overflow: hidden;
  box-shadow: var(--dt-shadow-lg);
  border: 1px solid var(--dt-paper-mid);
}

.dt-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--dt-space-3xl) var(--dt-space-md);
  background: var(--dt-paper);
}

.dt-thanks-wrap {
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.dt-envelope {
  margin: 0 auto var(--dt-space-xl);
  width: 100px;
  height: 80px;
  position: relative;
}

.dt-envelope__body {
  width: 100px;
  height: 80px;
  background: var(--dt-ink);
  border-radius: var(--dt-radius-sm);
  position: relative;
  overflow: hidden;
}

.dt-envelope__flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--dt-ink-soft);
  transform-origin: top center;
  animation: dt-flap-open 0.6s ease 0.3s forwards;
  z-index: 2;

  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 30px solid var(--dt-ink);
  }
}

.dt-envelope__letter {
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 60px;
  background: var(--dt-paper);
  border-radius: 2px;
  animation: dt-letter-rise 0.5s ease 0.8s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  gap: 5px;
}

.dt-envelope__letter-lines span {
  display: block;
  height: 2px;
  background: var(--dt-paper-mid);
  border-radius: 2px;

  &:nth-child(1) { width: 80%; }
  &:nth-child(2) { width: 60%; }
  &:nth-child(3) { width: 70%; }
}

@keyframes dt-flap-open {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes dt-letter-rise {
  0% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(-40px); opacity: 1; }
}

.dt-thanks-content {
  animation: dt-fade-up 0.6s ease 1.2s both;

  & h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--dt-space-md);
    color: var(--dt-ink);
  }

  & p {
    color: var(--dt-ink-muted);
    margin-bottom: var(--dt-space-sm);
    line-height: 1.7;
  }
}

.dt-thanks-actions {
  display: flex;
  gap: var(--dt-space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--dt-space-lg);
}

@keyframes dt-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.dt-legal-main {
  padding: var(--dt-space-3xl) 0;
  background: var(--dt-paper);
}

.dt-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.dt-legal-header {
  margin-bottom: var(--dt-space-xl);
  padding-bottom: var(--dt-space-lg);
  border-bottom: 2px solid var(--dt-ink);

  & h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.15;
  }
}

.dt-legal-date {
  font-size: 0.85rem;
  color: var(--dt-ink-muted);
}

.dt-legal-intro {
  margin-bottom: var(--dt-space-xl);
  padding: var(--dt-space-md) var(--dt-space-lg);
  background: var(--dt-paper-warm);
  border-left: 4px solid var(--dt-accent);
  border-radius: 0 var(--dt-radius-md) var(--dt-radius-md) 0;

  & p {
    font-size: 0.95rem;
    color: var(--dt-ink-muted);
    line-height: 1.75;
  }
}

.dt-legal-section {
  margin-bottom: var(--dt-space-xl);

  & h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--dt-space-sm);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--dt-paper-mid);
  }

  & p {
    font-size: 0.9rem;
    color: var(--dt-ink-muted);
    line-height: 1.75;
    margin-bottom: var(--dt-space-sm);

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.dt-legal-bullet-group {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: var(--dt-space-sm) 0;

  & li {
    font-size: 0.9rem;
    color: var(--dt-ink-muted);
    padding-left: 1.4em;
    position: relative;
    line-height: 1.65;

    &::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--dt-accent);
      font-size: 0.75em;
      top: 0.2em;
    }
  }
}

.dt-legal-numbered {
  counter-reset: legal-counter;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--dt-space-xl);

  & > li {
    & h2 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: var(--dt-space-sm);
      padding-bottom: 0.4rem;
      border-bottom: 1px solid var(--dt-paper-mid);
    }

    & p {
      font-size: 0.9rem;
      color: var(--dt-ink-muted);
      line-height: 1.75;
      margin-bottom: var(--dt-space-sm);
    }
  }
}

.dt-legal-sub-list {
  margin: var(--dt-space-sm) 0 var(--dt-space-sm) var(--dt-space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  & li {
    font-size: 0.875rem;
    color: var(--dt-ink-muted);
    line-height: 1.65;
  }
}

.dt-legal-list-plain {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: var(--dt-space-sm) 0;

  & li {
    font-size: 0.875rem;
    color: var(--dt-ink-muted);
    padding-left: 1em;
    position: relative;
    line-height: 1.6;

    &::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--dt-accent);
      font-weight: 700;
    }
  }
}

.dt-legal-contact {
  background: var(--dt-paper-warm);
  border-radius: var(--dt-radius-md);
  padding: var(--dt-space-md);
  margin-top: var(--dt-space-sm);

  & p {
    font-size: 0.9rem;
    color: var(--dt-ink-muted);
    line-height: 1.75;
    margin-bottom: 0 !important;

    & a {
      color: var(--dt-accent);
      text-decoration: underline;
    }
  }
}

.dt-cookie-table-wrap {
  overflow-x: auto;
  margin: var(--dt-space-md) 0;
  border-radius: var(--dt-radius-md);
  box-shadow: var(--dt-shadow-sm);
}

.dt-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 540px;

  & thead {
    background: var(--dt-ink);
    color: var(--dt-paper);

    & th {
      padding: 0.75rem 1rem;
      text-align: left;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
    }
  }

  & tbody tr {
    border-bottom: 1px solid var(--dt-paper-mid);
    background: var(--dt-paper);

    &:nth-child(even) {
      background: var(--dt-paper-warm);
    }

    &:last-child {
      border-bottom: none;
    }

    & td {
      padding: 0.75rem 1rem;
      color: var(--dt-ink-muted);
      vertical-align: top;
    }
  }
}

.dt-cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(480px, calc(100vw - 2rem));

  & .dt-cookie-card {
    background: var(--dt-ink);
    color: var(--dt-paper);
    border-radius: var(--dt-radius-xl);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--dt-shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  & .dt-cookie-card__compact {
    display: flex;
    align-items: center;
    gap: var(--dt-space-md);
    flex-wrap: wrap;

    & p {
      flex: 1;
      font-size: 0.85rem;
      color: rgba(250, 248, 245, 0.8);
      line-height: 1.55;
      min-width: 200px;

      & a {
        color: var(--dt-accent);
        text-decoration: underline;
      }
    }

    & .dt-cookie-actions {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }
  }

  & .dt-cookie-card__expanded {
    display: none;

    & .dt-cookie-expanded-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--dt-space-md);

      & h3 {
        font-size: 1rem;
        font-weight: 700;
      }
    }

    & .dt-cookie-category {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(250, 248, 245, 0.1);
      gap: var(--dt-space-sm);

      &:last-of-type {
        border-bottom: none;
        margin-bottom: var(--dt-space-md);
      }
    }

    & .dt-cookie-category__info {
      & strong {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
      }

      & p {
        font-size: 0.8rem;
        color: rgba(250, 248, 245, 0.6);
        line-height: 1.5;
      }
    }

    & .dt-cookie-save-btn {
      width: 100%;
      text-align: center;
    }
  }

  &.dt-cookie-consent--expanded .dt-cookie-card__compact {
    display: none;
  }

  &.dt-cookie-consent--expanded .dt-cookie-card__expanded {
    display: block;
  }
}

.dt-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;

  & input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  & .dt-toggle__slider {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.2);
    border-radius: var(--dt-radius-full);
    cursor: pointer;
    transition: background var(--dt-transition);

    &::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      left: 3px;
      top: 3px;
      background: var(--dt-paper);
      border-radius: 50%;
      transition: transform var(--dt-transition);
    }
  }

  & input:checked + .dt-toggle__slider {
    background: var(--dt-accent);

    &::before {
      transform: translateX(20px);
    }
  }

  & input:disabled + .dt-toggle__slider {
    opacity: 0.6;
    cursor: not-allowed;
  }
}

.dt-cookie-btn {
  font-family: var(--dt-font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55em 1.2em;
  border-radius: var(--dt-radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dt-transition);
  min-height: 36px;
  white-space: nowrap;

  &.dt-cookie-btn--accept {
    background: var(--dt-accent);
    color: var(--dt-white);
    border-color: var(--dt-accent);

    &:hover {
      background: var(--dt-accent-dark);
      border-color: var(--dt-accent-dark);
    }
  }

  &.dt-cookie-btn--settings {
    background: transparent;
    color: rgba(250, 248, 245, 0.7);
    border-color: rgba(250, 248, 245, 0.25);

    &:hover {
      color: var(--dt-paper);
      border-color: rgba(250, 248, 245, 0.5);
    }
  }

  &.dt-cookie-btn--save {
    background: var(--dt-accent);
    color: var(--dt-white);
    border-color: var(--dt-accent);
    padding: 0.65em 1.8em;

    &:hover {
      background: var(--dt-accent-dark);
    }
  }
}

@media (max-width: 1024px) {
  .dt-intro__grid,
  .dt-course-overview__grid,
  .dt-approach__inner,
  .dt-faq__grid,
  .dt-achievements-intro__grid,
  .dt-approach-detail__inner {
    grid-template-columns: 1fr;
    gap: var(--dt-space-xl);
  }

  .dt-intro__image-block,
  .dt-approach__images {
    height: 340px;
  }

  .dt-course-overview__badge {
    right: 1rem;
    bottom: 1rem;
  }

  .dt-faq__sidebar {
    position: static;
  }

  .dt-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-lg);
  }

  .dt-hours-main__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .dt-nav__left,
  .dt-nav__right {
    display: none !important;
  }

  .dt-nav__burger {
    display: flex !important;
  }

  .dt-hero__card {
    padding: 2rem 1.5rem;
  }

  .dt-features__grid {
    grid-template-columns: 1fr;
  }

  .dt-features__item {
    border-right: none !important;

    &:nth-last-child(-n+2) {
      border-bottom: 1px solid var(--dt-paper-mid) !important;
    }

    &:last-child {
      border-bottom: none !important;
    }
  }

  .dt-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dt-gallery__item--wide {
    grid-column: span 2;
  }

  .dt-gallery__item--tall {
    grid-row: auto;

    & img {
      min-height: 260px !important;
    }
  }

  .dt-milestones__grid,
  .dt-curriculum-detail__grid {
    grid-template-columns: 1fr;
  }

  .dt-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--dt-space-lg);
  }

  .dt-footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .dt-online-note__inner {
    flex-direction: column;
    padding: var(--dt-space-lg);
  }

  .dt-intro__image-block {
    height: 280px;
  }

  .dt-intro__img--main {
    height: 240px !important;
  }

  .dt-intro__img--accent {
    height: 150px !important;
  }

  .dt-approach__images {
    height: 280px;
  }

  .dt-approach__img--1 {
    height: 220px !important;
  }

  .dt-approach__img--2 {
    height: 160px !important;
  }
}

@media (max-width: 480px) {
  :root {
    --dt-space-3xl: 5rem;
    --dt-space-2xl: 3.5rem;
  }

  .dt-gallery__grid {
    grid-template-columns: 1fr;
  }

  .dt-gallery__item--wide {
    grid-column: span 1;
  }

  .dt-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .dt-thanks-actions {
    flex-direction: column;
    align-items: center;
  }

  .dt-cta-band__inner .dt-btn {
    width: 100%;
    justify-content: center;
  }

  .dt-cookie-consent {
    bottom: 0.75rem;
  }

  .dt-cookie-card__compact {
    flex-direction: column;
    align-items: flex-start;
  }
}