.brand-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    transform: scale(1.12);
}

.logo-disc {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  flex: none;
  overflow: hidden;
  border: 3px solid #ffd28a;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 7px 22px rgba(17, 8, 19, 0.34),
    inset 0 0 0 3px rgba(233, 120, 63, 0.1);
}

:root {
  --forest: #573b58;
  --lime: #ffd28a;
  --orange: #e9783f;
  --paper: #faf6f0;
}

.sidebar {
  background: linear-gradient(180deg, #38263d 0%, #50354d 58%, #3d293b 100%);
}

.brand {
  min-height: 104px;
  gap: 16px;
}

.brand small {
  color: #dac8da;
}

.nav-item {
  color: #d7c7d5;
}

.nav-item span {
  color: #b89db5;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.11);
}

.service-card {
  border-color: rgba(255, 225, 179, 0.25);
  background: rgba(35, 21, 37, 0.34);
}

.service-card p {
  color: #d4c3d1;
}

.intro {
  background:
    radial-gradient(circle at 82% 30%, rgba(233, 120, 63, 0.22), transparent 34%),
    linear-gradient(125deg, #4c3150 0%, #68445f 58%, #774b50 100%);
}

.intro::after {
  border-color: rgba(255, 210, 138, 0.3);
  box-shadow:
    0 0 0 45px rgba(255, 210, 138, 0.055),
    0 0 0 90px rgba(255, 210, 138, 0.025);
}

.intro > p {
  color: #eadfe8;
}

.kicker.light {
  color: #f3cfaa;
}

.intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(20px, 6vw, 90px);
  width: min(38vw, 430px);
  aspect-ratio: 3 / 2;
  background: url("./kybele-logo-transparent.png") center / contain no-repeat;
  opacity: 0.2;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 680px) {
  .brand-logo {
    width: 94px;
    height: 94px;
  }

  .logo-disc {
    width: 82px;
    height: 82px;
  }

  .intro::before {
    right: -20px;
    width: 240px;
  }
}
