body {
  text-align: center;
}

.site-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.site-logo-heading {
  margin: 0;
  line-height: 0;
}

.img-skeleton--logo,
.img-skeleton--tagline {
  border-radius: 0;
  box-shadow: none;
}

.img-skeleton--logo {
  width: min(132px, 50vw);
  aspect-ratio: 790 / 544;
}

.img-skeleton--tagline {
  width: min(200px, 50vw);
  aspect-ratio: 800 / 262;
}

.site-logo,
.site-tagline {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

section {
  width: 85%;
  margin: 40px auto;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: up 1s ease;
  transition: 0.5s;
}

section:hover {
  transform: translateY(-10px);
}

h2 {
  font-size: 35px;
  color: #3e2723;
}

p {
  font-size: 18px;
  line-height: 2;
}

section .img-skeleton--section {
  width: 330px;
  max-width: 90%;
  min-height: 240px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

section .img-skeleton--section.loaded {
  min-height: 0;
}

section .img-skeleton--section img {
  width: 330px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: 0.5s;
}

section .img-skeleton--section:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #d7a86e;
}

.carpet {
  background: #fff3e0;
}
.furniture {
  background: #e8f5e9;
}
.wabra {
  background: #e3f2fd;
}
.triko {
  background: #fce4ec;
}

.description {
  text-align: center;
  padding: 15px;
  font-size: 18px;
  line-height: 2;
}

.team-section {
  width: 85%;
  margin: 40px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-info {
  color: #6d4c41;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.team-section > .member {
  margin: 0 auto 35px;
}

.member {
  width: 170px;
  max-width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 20px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.img-skeleton--avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.img-skeleton--avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d7a86e;
  box-shadow: none;
}

.member span {
  font-size: 15px;
  font-weight: bold;
  color: #3e2723;
}
