@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

:root {
  --dt-header-height: 108px;
  --dt-bg: #ffffff;
  --dt-text: #161616;
  --dt-accent: #c81924;
  --dt-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  padding-top: var(--dt-header-height);
}



.dt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dt-bg);
  box-shadow: var(--dt-shadow);
  height: var(--dt-header-height);
}

.dt-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}

.dt-header__brand img {
  width: 220px;
  height: auto;
  display: block;
}

.dt-header__brand {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(22px);
  overflow: hidden;
  z-index: 2;
}

.dt-header__brand img {
  width: 132px;
}

.dt-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.dt-header__nav--left {
  justify-self: start;
}

.dt-header__nav--right {
  justify-self: end;
}

.dt-header__nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--dt-text);
}

.dt-header__nav a:hover {
  color: var(--dt-accent);
}

.dt-header__toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.dt-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--dt-text);
  margin: 0;
  transition: 0.25s ease;
}

.dt-header__drawer {
  position: fixed;
  top: var(--dt-header-height);
  right: -100%;
  width: min(320px, 82vw);
  height: calc(100vh - var(--dt-header-height));
  background: var(--dt-bg);
  box-shadow: -8px 0 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 18px 0;
  transition: right 0.28s ease;
  z-index: 9997;
}

.dt-header__drawer a {
  width: 100%;
  padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--dt-text);
}

.dt-header__drawer.is-open {
  right: 0;
}

body.dt-no-scroll {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .dt-header__brand {
    width: 132px;
    height: 132px;
    transform: translateY(18px);
  }

  .dt-header__brand img {
    width: 118px;
  }
}

@media (max-width: 980px) {
  :root {
    --dt-header-height: 84px;
  }

  .dt-header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }

  .dt-header__nav--left,
  .dt-header__nav--right {
    display: none;
  }

  .dt-header__brand img {
    width: 96px;
  }

  .dt-header__brand {
    width: 108px;
    height: 108px;
    transform: translateY(14px);
  }

  .dt-header__drawer a {
    font-size: 15px;
  }
}
